Assorted spelling fixes.
[wine/multimedia.git] / dlls / ntdll / nt.c
blobd415db4fe3e04bb0248d1bfca44cf7300c18e272
1 /*
2 * NT basis DLL
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)
7 * Copyright 1996-1998 Marcus Meissner
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.
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.
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
24 #include "config.h"
25 #include "wine/port.h"
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
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>
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"
61 #ifdef __APPLE__
62 #include <mach/mach_init.h>
63 #include <mach/mach_host.h>
64 #include <mach/vm_map.h>
65 #endif
67 WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
70 * Token
73 /******************************************************************************
74 * NtDuplicateToken [NTDLL.@]
75 * ZwDuplicateToken [NTDLL.@]
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)
85 NTSTATUS status;
87 TRACE("(%p,0x%08x,%s,0x%08x,0x%08x,%p)\n",
88 ExistingToken, DesiredAccess, debugstr_ObjectAttributes(ObjectAttributes),
89 ImpersonationLevel, TokenType, NewToken);
91 if (ObjectAttributes && ObjectAttributes->SecurityQualityOfService)
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;
101 SERVER_START_REQ( duplicate_token )
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 );
111 SERVER_END_REQ;
113 return status;
116 /******************************************************************************
117 * NtOpenProcessToken [NTDLL.@]
118 * ZwOpenProcessToken [NTDLL.@]
120 NTSTATUS WINAPI NtOpenProcessToken(
121 HANDLE ProcessHandle,
122 DWORD DesiredAccess,
123 HANDLE *TokenHandle)
125 return NtOpenProcessTokenEx( ProcessHandle, DesiredAccess, 0, TokenHandle );
128 /******************************************************************************
129 * NtOpenProcessTokenEx [NTDLL.@]
130 * ZwOpenProcessTokenEx [NTDLL.@]
132 NTSTATUS WINAPI NtOpenProcessTokenEx( HANDLE process, DWORD access, DWORD attributes,
133 HANDLE *handle )
135 NTSTATUS ret;
137 TRACE("(%p,0x%08x,0x%08x,%p)\n", process, access, attributes, handle);
139 SERVER_START_REQ( open_token )
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 );
148 SERVER_END_REQ;
149 return ret;
152 /******************************************************************************
153 * NtOpenThreadToken [NTDLL.@]
154 * ZwOpenThreadToken [NTDLL.@]
156 NTSTATUS WINAPI NtOpenThreadToken(
157 HANDLE ThreadHandle,
158 DWORD DesiredAccess,
159 BOOLEAN OpenAsSelf,
160 HANDLE *TokenHandle)
162 return NtOpenThreadTokenEx( ThreadHandle, DesiredAccess, OpenAsSelf, 0, TokenHandle );
165 /******************************************************************************
166 * NtOpenThreadTokenEx [NTDLL.@]
167 * ZwOpenThreadTokenEx [NTDLL.@]
169 NTSTATUS WINAPI NtOpenThreadTokenEx( HANDLE thread, DWORD access, BOOLEAN as_self, DWORD attributes,
170 HANDLE *handle )
172 NTSTATUS ret;
174 TRACE("(%p,0x%08x,%u,0x%08x,%p)\n", thread, access, as_self, attributes, handle );
176 SERVER_START_REQ( open_token )
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 );
186 SERVER_END_REQ;
188 return ret;
191 /******************************************************************************
192 * NtAdjustPrivilegesToken [NTDLL.@]
193 * ZwAdjustPrivilegesToken [NTDLL.@]
195 * FIXME: parameters unsafe
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)
205 NTSTATUS ret;
207 TRACE("(%p,0x%08x,%p,0x%08x,%p,%p)\n",
208 TokenHandle, DisableAllPrivileges, NewState, BufferLength, PreviousState, ReturnLength);
210 SERVER_START_REQ( adjust_token_privileges )
212 req->handle = wine_server_obj_handle( TokenHandle );
213 req->disable_all = DisableAllPrivileges;
214 req->get_modified_state = (PreviousState != NULL);
215 if (!DisableAllPrivileges)
217 wine_server_add_data( req, NewState->Privileges,
218 NewState->PrivilegeCount * sizeof(NewState->Privileges[0]) );
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)
226 *ReturnLength = reply->len + FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges );
227 PreviousState->PrivilegeCount = reply->len / sizeof(LUID_AND_ATTRIBUTES);
230 SERVER_END_REQ;
232 return ret;
235 /******************************************************************************
236 * NtQueryInformationToken [NTDLL.@]
237 * ZwQueryInformationToken [NTDLL.@]
239 * NOTES
240 * Buffer for TokenUser:
241 * 0x00 TOKEN_USER the PSID field points to the SID
242 * 0x08 SID
245 NTSTATUS WINAPI NtQueryInformationToken(
246 HANDLE token,
247 TOKEN_INFORMATION_CLASS tokeninfoclass,
248 PVOID tokeninfo,
249 ULONG tokeninfolength,
250 PULONG retlen )
252 static const ULONG info_len [] =
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 sizeof(DWORD), /* TokenSessionId */
267 0, /* TokenGroupsAndPrivileges */
268 0, /* TokenSessionReference */
269 0, /* TokenSandBoxInert */
270 0, /* TokenAuditPolicy */
271 0, /* TokenOrigin */
272 sizeof(TOKEN_ELEVATION_TYPE), /* TokenElevationType */
273 0, /* TokenLinkedToken */
274 sizeof(TOKEN_ELEVATION), /* TokenElevation */
275 0, /* TokenHasRestrictions */
276 0, /* TokenAccessInformation */
277 0, /* TokenVirtualizationAllowed */
278 0, /* TokenVirtualizationEnabled */
279 sizeof(TOKEN_MANDATORY_LABEL) + sizeof(SID), /* TokenIntegrityLevel [sizeof(SID) includes one SubAuthority] */
280 0, /* TokenUIAccess */
281 0, /* TokenMandatoryPolicy */
282 0 /* TokenLogonSid */
285 ULONG len = 0;
286 NTSTATUS status = STATUS_SUCCESS;
288 TRACE("(%p,%d,%p,%d,%p)\n",
289 token,tokeninfoclass,tokeninfo,tokeninfolength,retlen);
291 if (tokeninfoclass < MaxTokenInfoClass)
292 len = info_len[tokeninfoclass];
294 if (retlen) *retlen = len;
296 if (tokeninfolength < len)
297 return STATUS_BUFFER_TOO_SMALL;
299 switch (tokeninfoclass)
301 case TokenUser:
302 SERVER_START_REQ( get_token_sid )
304 TOKEN_USER * tuser = tokeninfo;
305 PSID sid = tuser + 1;
306 DWORD sid_len = tokeninfolength < sizeof(TOKEN_USER) ? 0 : tokeninfolength - sizeof(TOKEN_USER);
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)
315 tuser->User.Sid = sid;
316 tuser->User.Attributes = 0;
319 SERVER_END_REQ;
320 break;
321 case TokenGroups:
323 void *buffer;
325 /* reply buffer is always shorter than output one */
326 buffer = tokeninfolength ? RtlAllocateHeap(GetProcessHeap(), 0, tokeninfolength) : NULL;
328 SERVER_START_REQ( get_token_groups )
330 TOKEN_GROUPS *groups = tokeninfo;
332 req->handle = wine_server_obj_handle( token );
333 wine_server_set_reply( req, buffer, tokeninfolength );
334 status = wine_server_call( req );
335 if (status == STATUS_BUFFER_TOO_SMALL)
337 if (retlen) *retlen = reply->user_len;
339 else if (status == STATUS_SUCCESS)
341 struct token_groups *tg = buffer;
342 unsigned int *attr = (unsigned int *)(tg + 1);
343 ULONG i;
344 const int non_sid_portion = (sizeof(struct token_groups) + tg->count * sizeof(unsigned int));
345 SID *sids = (SID *)((char *)tokeninfo + FIELD_OFFSET( TOKEN_GROUPS, Groups[tg->count] ));
347 if (retlen) *retlen = reply->user_len;
349 groups->GroupCount = tg->count;
350 memcpy( sids, (char *)buffer + non_sid_portion,
351 reply->user_len - FIELD_OFFSET( TOKEN_GROUPS, Groups[tg->count] ));
353 for (i = 0; i < tg->count; i++)
355 groups->Groups[i].Attributes = attr[i];
356 groups->Groups[i].Sid = sids;
357 sids = (SID *)((char *)sids + RtlLengthSid(sids));
360 else if (retlen) *retlen = 0;
362 SERVER_END_REQ;
364 RtlFreeHeap(GetProcessHeap(), 0, buffer);
365 break;
367 case TokenPrimaryGroup:
368 SERVER_START_REQ( get_token_sid )
370 TOKEN_PRIMARY_GROUP *tgroup = tokeninfo;
371 PSID sid = tgroup + 1;
372 DWORD sid_len = tokeninfolength < sizeof(TOKEN_PRIMARY_GROUP) ? 0 : tokeninfolength - sizeof(TOKEN_PRIMARY_GROUP);
374 req->handle = wine_server_obj_handle( token );
375 req->which_sid = tokeninfoclass;
376 wine_server_set_reply( req, sid, sid_len );
377 status = wine_server_call( req );
378 if (retlen) *retlen = reply->sid_len + sizeof(TOKEN_PRIMARY_GROUP);
379 if (status == STATUS_SUCCESS)
380 tgroup->PrimaryGroup = sid;
382 SERVER_END_REQ;
383 break;
384 case TokenPrivileges:
385 SERVER_START_REQ( get_token_privileges )
387 TOKEN_PRIVILEGES *tpriv = tokeninfo;
388 req->handle = wine_server_obj_handle( token );
389 if (tpriv && tokeninfolength > FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ))
390 wine_server_set_reply( req, tpriv->Privileges, tokeninfolength - FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ) );
391 status = wine_server_call( req );
392 if (retlen) *retlen = FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ) + reply->len;
393 if (tpriv) tpriv->PrivilegeCount = reply->len / sizeof(LUID_AND_ATTRIBUTES);
395 SERVER_END_REQ;
396 break;
397 case TokenOwner:
398 SERVER_START_REQ( get_token_sid )
400 TOKEN_OWNER *towner = tokeninfo;
401 PSID sid = towner + 1;
402 DWORD sid_len = tokeninfolength < sizeof(TOKEN_OWNER) ? 0 : tokeninfolength - sizeof(TOKEN_OWNER);
404 req->handle = wine_server_obj_handle( token );
405 req->which_sid = tokeninfoclass;
406 wine_server_set_reply( req, sid, sid_len );
407 status = wine_server_call( req );
408 if (retlen) *retlen = reply->sid_len + sizeof(TOKEN_OWNER);
409 if (status == STATUS_SUCCESS)
410 towner->Owner = sid;
412 SERVER_END_REQ;
413 break;
414 case TokenImpersonationLevel:
415 SERVER_START_REQ( get_token_impersonation_level )
417 SECURITY_IMPERSONATION_LEVEL *impersonation_level = tokeninfo;
418 req->handle = wine_server_obj_handle( token );
419 status = wine_server_call( req );
420 if (status == STATUS_SUCCESS)
421 *impersonation_level = reply->impersonation_level;
423 SERVER_END_REQ;
424 break;
425 case TokenStatistics:
426 SERVER_START_REQ( get_token_statistics )
428 TOKEN_STATISTICS *statistics = tokeninfo;
429 req->handle = wine_server_obj_handle( token );
430 status = wine_server_call( req );
431 if (status == STATUS_SUCCESS)
433 statistics->TokenId.LowPart = reply->token_id.low_part;
434 statistics->TokenId.HighPart = reply->token_id.high_part;
435 statistics->AuthenticationId.LowPart = 0; /* FIXME */
436 statistics->AuthenticationId.HighPart = 0; /* FIXME */
437 statistics->ExpirationTime.u.HighPart = 0x7fffffff;
438 statistics->ExpirationTime.u.LowPart = 0xffffffff;
439 statistics->TokenType = reply->primary ? TokenPrimary : TokenImpersonation;
440 statistics->ImpersonationLevel = reply->impersonation_level;
442 /* kernel information not relevant to us */
443 statistics->DynamicCharged = 0;
444 statistics->DynamicAvailable = 0;
446 statistics->GroupCount = reply->group_count;
447 statistics->PrivilegeCount = reply->privilege_count;
448 statistics->ModifiedId.LowPart = reply->modified_id.low_part;
449 statistics->ModifiedId.HighPart = reply->modified_id.high_part;
452 SERVER_END_REQ;
453 break;
454 case TokenType:
455 SERVER_START_REQ( get_token_statistics )
457 TOKEN_TYPE *token_type = tokeninfo;
458 req->handle = wine_server_obj_handle( token );
459 status = wine_server_call( req );
460 if (status == STATUS_SUCCESS)
461 *token_type = reply->primary ? TokenPrimary : TokenImpersonation;
463 SERVER_END_REQ;
464 break;
465 case TokenDefaultDacl:
466 SERVER_START_REQ( get_token_default_dacl )
468 TOKEN_DEFAULT_DACL *default_dacl = tokeninfo;
469 ACL *acl = (ACL *)(default_dacl + 1);
470 DWORD acl_len;
472 if (tokeninfolength < sizeof(TOKEN_DEFAULT_DACL)) acl_len = 0;
473 else acl_len = tokeninfolength - sizeof(TOKEN_DEFAULT_DACL);
475 req->handle = wine_server_obj_handle( token );
476 wine_server_set_reply( req, acl, acl_len );
477 status = wine_server_call( req );
479 if (retlen) *retlen = reply->acl_len + sizeof(TOKEN_DEFAULT_DACL);
480 if (status == STATUS_SUCCESS)
482 if (reply->acl_len)
483 default_dacl->DefaultDacl = acl;
484 else
485 default_dacl->DefaultDacl = NULL;
488 SERVER_END_REQ;
489 break;
490 case TokenElevationType:
492 TOKEN_ELEVATION_TYPE *elevation_type = tokeninfo;
493 FIXME("QueryInformationToken( ..., TokenElevationType, ...) semi-stub\n");
494 *elevation_type = TokenElevationTypeFull;
496 break;
497 case TokenElevation:
499 TOKEN_ELEVATION *elevation = tokeninfo;
500 FIXME("QueryInformationToken( ..., TokenElevation, ...) semi-stub\n");
501 elevation->TokenIsElevated = TRUE;
503 break;
504 case TokenSessionId:
506 *((DWORD*)tokeninfo) = 0;
507 FIXME("QueryInformationToken( ..., TokenSessionId, ...) semi-stub\n");
509 break;
510 case TokenIntegrityLevel:
512 /* report always "S-1-16-12288" (high mandatory level) for now */
513 static const SID high_level = {SID_REVISION, 1, {SECURITY_MANDATORY_LABEL_AUTHORITY},
514 {SECURITY_MANDATORY_HIGH_RID}};
516 TOKEN_MANDATORY_LABEL *tml = tokeninfo;
517 PSID psid = tml + 1;
519 tml->Label.Sid = psid;
520 tml->Label.Attributes = SE_GROUP_INTEGRITY | SE_GROUP_INTEGRITY_ENABLED;
521 memcpy(psid, &high_level, sizeof(SID));
523 break;
524 default:
526 ERR("Unhandled Token Information class %d!\n", tokeninfoclass);
527 return STATUS_NOT_IMPLEMENTED;
530 return status;
533 /******************************************************************************
534 * NtSetInformationToken [NTDLL.@]
535 * ZwSetInformationToken [NTDLL.@]
537 NTSTATUS WINAPI NtSetInformationToken(
538 HANDLE TokenHandle,
539 TOKEN_INFORMATION_CLASS TokenInformationClass,
540 PVOID TokenInformation,
541 ULONG TokenInformationLength)
543 NTSTATUS ret = STATUS_NOT_IMPLEMENTED;
545 TRACE("%p %d %p %u\n", TokenHandle, TokenInformationClass,
546 TokenInformation, TokenInformationLength);
548 switch (TokenInformationClass)
550 case TokenDefaultDacl:
551 if (TokenInformationLength < sizeof(TOKEN_DEFAULT_DACL))
553 ret = STATUS_INFO_LENGTH_MISMATCH;
554 break;
556 if (!TokenInformation)
558 ret = STATUS_ACCESS_VIOLATION;
559 break;
561 SERVER_START_REQ( set_token_default_dacl )
563 ACL *acl = ((TOKEN_DEFAULT_DACL *)TokenInformation)->DefaultDacl;
564 WORD size;
566 if (acl) size = acl->AclSize;
567 else size = 0;
569 req->handle = wine_server_obj_handle( TokenHandle );
570 wine_server_add_data( req, acl, size );
571 ret = wine_server_call( req );
573 SERVER_END_REQ;
574 break;
575 default:
576 FIXME("unimplemented class %u\n", TokenInformationClass);
577 break;
580 return ret;
583 /******************************************************************************
584 * NtAdjustGroupsToken [NTDLL.@]
585 * ZwAdjustGroupsToken [NTDLL.@]
587 NTSTATUS WINAPI NtAdjustGroupsToken(
588 HANDLE TokenHandle,
589 BOOLEAN ResetToDefault,
590 PTOKEN_GROUPS NewState,
591 ULONG BufferLength,
592 PTOKEN_GROUPS PreviousState,
593 PULONG ReturnLength)
595 FIXME("%p %d %p %u %p %p\n", TokenHandle, ResetToDefault,
596 NewState, BufferLength, PreviousState, ReturnLength);
597 return STATUS_NOT_IMPLEMENTED;
600 /******************************************************************************
601 * NtPrivilegeCheck [NTDLL.@]
602 * ZwPrivilegeCheck [NTDLL.@]
604 NTSTATUS WINAPI NtPrivilegeCheck(
605 HANDLE ClientToken,
606 PPRIVILEGE_SET RequiredPrivileges,
607 PBOOLEAN Result)
609 NTSTATUS status;
610 SERVER_START_REQ( check_token_privileges )
612 req->handle = wine_server_obj_handle( ClientToken );
613 req->all_required = (RequiredPrivileges->Control & PRIVILEGE_SET_ALL_NECESSARY) != 0;
614 wine_server_add_data( req, RequiredPrivileges->Privilege,
615 RequiredPrivileges->PrivilegeCount * sizeof(RequiredPrivileges->Privilege[0]) );
616 wine_server_set_reply( req, RequiredPrivileges->Privilege,
617 RequiredPrivileges->PrivilegeCount * sizeof(RequiredPrivileges->Privilege[0]) );
619 status = wine_server_call( req );
621 if (status == STATUS_SUCCESS)
622 *Result = reply->has_privileges != 0;
624 SERVER_END_REQ;
625 return status;
629 * Section
632 /******************************************************************************
633 * NtQuerySection [NTDLL.@]
635 NTSTATUS WINAPI NtQuerySection(
636 IN HANDLE SectionHandle,
637 IN SECTION_INFORMATION_CLASS SectionInformationClass,
638 OUT PVOID SectionInformation,
639 IN ULONG Length,
640 OUT PULONG ResultLength)
642 FIXME("(%p,%d,%p,0x%08x,%p) stub!\n",
643 SectionHandle,SectionInformationClass,SectionInformation,Length,ResultLength);
644 return 0;
648 * ports
651 /******************************************************************************
652 * NtCreatePort [NTDLL.@]
653 * ZwCreatePort [NTDLL.@]
655 NTSTATUS WINAPI NtCreatePort(PHANDLE PortHandle,POBJECT_ATTRIBUTES ObjectAttributes,
656 ULONG MaxConnectInfoLength,ULONG MaxDataLength,PULONG reserved)
658 FIXME("(%p,%p,%u,%u,%p),stub!\n",PortHandle,ObjectAttributes,
659 MaxConnectInfoLength,MaxDataLength,reserved);
660 return STATUS_NOT_IMPLEMENTED;
663 /******************************************************************************
664 * NtConnectPort [NTDLL.@]
665 * ZwConnectPort [NTDLL.@]
667 NTSTATUS WINAPI NtConnectPort(
668 PHANDLE PortHandle,
669 PUNICODE_STRING PortName,
670 PSECURITY_QUALITY_OF_SERVICE SecurityQos,
671 PLPC_SECTION_WRITE WriteSection,
672 PLPC_SECTION_READ ReadSection,
673 PULONG MaximumMessageLength,
674 PVOID ConnectInfo,
675 PULONG pConnectInfoLength)
677 FIXME("(%p,%s,%p,%p,%p,%p,%p,%p),stub!\n",
678 PortHandle,debugstr_w(PortName->Buffer),SecurityQos,
679 WriteSection,ReadSection,MaximumMessageLength,ConnectInfo,
680 pConnectInfoLength);
681 if (ConnectInfo && pConnectInfoLength)
682 TRACE("\tMessage = %s\n",debugstr_an(ConnectInfo,*pConnectInfoLength));
683 return STATUS_NOT_IMPLEMENTED;
686 /******************************************************************************
687 * NtSecureConnectPort (NTDLL.@)
688 * ZwSecureConnectPort (NTDLL.@)
690 NTSTATUS WINAPI NtSecureConnectPort(
691 PHANDLE PortHandle,
692 PUNICODE_STRING PortName,
693 PSECURITY_QUALITY_OF_SERVICE SecurityQos,
694 PLPC_SECTION_WRITE WriteSection,
695 PSID pSid,
696 PLPC_SECTION_READ ReadSection,
697 PULONG MaximumMessageLength,
698 PVOID ConnectInfo,
699 PULONG pConnectInfoLength)
701 FIXME("(%p,%s,%p,%p,%p,%p,%p,%p,%p),stub!\n",
702 PortHandle,debugstr_w(PortName->Buffer),SecurityQos,
703 WriteSection,pSid,ReadSection,MaximumMessageLength,ConnectInfo,
704 pConnectInfoLength);
705 return STATUS_NOT_IMPLEMENTED;
708 /******************************************************************************
709 * NtListenPort [NTDLL.@]
710 * ZwListenPort [NTDLL.@]
712 NTSTATUS WINAPI NtListenPort(HANDLE PortHandle,PLPC_MESSAGE pLpcMessage)
714 FIXME("(%p,%p),stub!\n",PortHandle,pLpcMessage);
715 return STATUS_NOT_IMPLEMENTED;
718 /******************************************************************************
719 * NtAcceptConnectPort [NTDLL.@]
720 * ZwAcceptConnectPort [NTDLL.@]
722 NTSTATUS WINAPI NtAcceptConnectPort(
723 PHANDLE PortHandle,
724 ULONG PortIdentifier,
725 PLPC_MESSAGE pLpcMessage,
726 BOOLEAN Accept,
727 PLPC_SECTION_WRITE WriteSection,
728 PLPC_SECTION_READ ReadSection)
730 FIXME("(%p,%u,%p,%d,%p,%p),stub!\n",
731 PortHandle,PortIdentifier,pLpcMessage,Accept,WriteSection,ReadSection);
732 return STATUS_NOT_IMPLEMENTED;
735 /******************************************************************************
736 * NtCompleteConnectPort [NTDLL.@]
737 * ZwCompleteConnectPort [NTDLL.@]
739 NTSTATUS WINAPI NtCompleteConnectPort(HANDLE PortHandle)
741 FIXME("(%p),stub!\n",PortHandle);
742 return STATUS_NOT_IMPLEMENTED;
745 /******************************************************************************
746 * NtRegisterThreadTerminatePort [NTDLL.@]
747 * ZwRegisterThreadTerminatePort [NTDLL.@]
749 NTSTATUS WINAPI NtRegisterThreadTerminatePort(HANDLE PortHandle)
751 FIXME("(%p),stub!\n",PortHandle);
752 return STATUS_NOT_IMPLEMENTED;
755 /******************************************************************************
756 * NtRequestWaitReplyPort [NTDLL.@]
757 * ZwRequestWaitReplyPort [NTDLL.@]
759 NTSTATUS WINAPI NtRequestWaitReplyPort(
760 HANDLE PortHandle,
761 PLPC_MESSAGE pLpcMessageIn,
762 PLPC_MESSAGE pLpcMessageOut)
764 FIXME("(%p,%p,%p),stub!\n",PortHandle,pLpcMessageIn,pLpcMessageOut);
765 if(pLpcMessageIn)
767 TRACE("Message to send:\n");
768 TRACE("\tDataSize = %u\n",pLpcMessageIn->DataSize);
769 TRACE("\tMessageSize = %u\n",pLpcMessageIn->MessageSize);
770 TRACE("\tMessageType = %u\n",pLpcMessageIn->MessageType);
771 TRACE("\tVirtualRangesOffset = %u\n",pLpcMessageIn->VirtualRangesOffset);
772 TRACE("\tClientId.UniqueProcess = %p\n",pLpcMessageIn->ClientId.UniqueProcess);
773 TRACE("\tClientId.UniqueThread = %p\n",pLpcMessageIn->ClientId.UniqueThread);
774 TRACE("\tMessageId = %lu\n",pLpcMessageIn->MessageId);
775 TRACE("\tSectionSize = %lu\n",pLpcMessageIn->SectionSize);
776 TRACE("\tData = %s\n",
777 debugstr_an((const char*)pLpcMessageIn->Data,pLpcMessageIn->DataSize));
779 return STATUS_NOT_IMPLEMENTED;
782 /******************************************************************************
783 * NtReplyWaitReceivePort [NTDLL.@]
784 * ZwReplyWaitReceivePort [NTDLL.@]
786 NTSTATUS WINAPI NtReplyWaitReceivePort(
787 HANDLE PortHandle,
788 PULONG PortIdentifier,
789 PLPC_MESSAGE ReplyMessage,
790 PLPC_MESSAGE Message)
792 FIXME("(%p,%p,%p,%p),stub!\n",PortHandle,PortIdentifier,ReplyMessage,Message);
793 return STATUS_NOT_IMPLEMENTED;
797 * Misc
800 /******************************************************************************
801 * NtSetIntervalProfile [NTDLL.@]
802 * ZwSetIntervalProfile [NTDLL.@]
804 NTSTATUS WINAPI NtSetIntervalProfile(
805 ULONG Interval,
806 KPROFILE_SOURCE Source)
808 FIXME("%u,%d\n", Interval, Source);
809 return STATUS_SUCCESS;
812 static SYSTEM_CPU_INFORMATION cached_sci;
814 /*******************************************************************************
815 * Architecture specific feature detection for CPUs
817 * This a set of mutually exclusive #if define()s each providing its own get_cpuinfo() to be called
818 * from fill_cpu_info();
820 #if defined(__i386__) || defined(__x86_64__)
822 #define AUTH 0x68747541 /* "Auth" */
823 #define ENTI 0x69746e65 /* "enti" */
824 #define CAMD 0x444d4163 /* "cAMD" */
826 #define GENU 0x756e6547 /* "Genu" */
827 #define INEI 0x49656e69 /* "ineI" */
828 #define NTEL 0x6c65746e /* "ntel" */
830 /* Calls cpuid with an eax of 'ax' and returns the 16 bytes in *p
831 * We are compiled with -fPIC, so we can't clobber ebx.
833 static inline void do_cpuid(unsigned int ax, unsigned int *p)
835 #ifdef __i386__
836 __asm__("pushl %%ebx\n\t"
837 "cpuid\n\t"
838 "movl %%ebx, %%esi\n\t"
839 "popl %%ebx"
840 : "=a" (p[0]), "=S" (p[1]), "=c" (p[2]), "=d" (p[3])
841 : "0" (ax));
842 #elif defined(__x86_64__)
843 __asm__("push %%rbx\n\t"
844 "cpuid\n\t"
845 "movq %%rbx, %%rsi\n\t"
846 "pop %%rbx"
847 : "=a" (p[0]), "=S" (p[1]), "=c" (p[2]), "=d" (p[3])
848 : "0" (ax));
849 #endif
852 /* From xf86info havecpuid.c 1.11 */
853 static inline int have_cpuid(void)
855 #ifdef __i386__
856 unsigned int f1, f2;
857 __asm__("pushfl\n\t"
858 "pushfl\n\t"
859 "popl %0\n\t"
860 "movl %0,%1\n\t"
861 "xorl %2,%0\n\t"
862 "pushl %0\n\t"
863 "popfl\n\t"
864 "pushfl\n\t"
865 "popl %0\n\t"
866 "popfl"
867 : "=&r" (f1), "=&r" (f2)
868 : "ir" (0x00200000));
869 return ((f1^f2) & 0x00200000) != 0;
870 #elif defined(__x86_64__)
871 return 1;
872 #else
873 return 0;
874 #endif
877 /* Detect if a SSE2 processor is capable of Denormals Are Zero (DAZ) mode.
879 * This function assumes you have already checked for SSE2/FXSAVE support. */
880 static inline int have_sse_daz_mode(void)
882 #ifdef __i386__
883 typedef struct DECLSPEC_ALIGN(16) _M128A {
884 ULONGLONG Low;
885 LONGLONG High;
886 } M128A;
888 typedef struct _XMM_SAVE_AREA32 {
889 WORD ControlWord;
890 WORD StatusWord;
891 BYTE TagWord;
892 BYTE Reserved1;
893 WORD ErrorOpcode;
894 DWORD ErrorOffset;
895 WORD ErrorSelector;
896 WORD Reserved2;
897 DWORD DataOffset;
898 WORD DataSelector;
899 WORD Reserved3;
900 DWORD MxCsr;
901 DWORD MxCsr_Mask;
902 M128A FloatRegisters[8];
903 M128A XmmRegisters[16];
904 BYTE Reserved4[96];
905 } XMM_SAVE_AREA32;
907 /* Intel says we need a zeroed 16-byte aligned buffer */
908 char buffer[512 + 16];
909 XMM_SAVE_AREA32 *state = (XMM_SAVE_AREA32 *)(((ULONG_PTR)buffer + 15) & ~15);
910 memset(buffer, 0, sizeof(buffer));
912 __asm__ __volatile__( "fxsave %0" : "=m" (*state) : "m" (*state) );
914 return (state->MxCsr_Mask & (1 << 6)) >> 6;
915 #else /* all x86_64 processors include SSE2 with DAZ mode */
916 return 1;
917 #endif
920 static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
922 unsigned int regs[4], regs2[4];
924 #if defined(__i386__)
925 info->Architecture = PROCESSOR_ARCHITECTURE_INTEL;
926 #elif defined(__x86_64__)
927 info->Architecture = PROCESSOR_ARCHITECTURE_AMD64;
928 #endif
930 /* We're at least a 386 */
931 info->FeatureSet = CPU_FEATURE_VME | CPU_FEATURE_X86 | CPU_FEATURE_PGE;
932 info->Level = 3;
934 if (!have_cpuid()) return;
936 do_cpuid(0x00000000, regs); /* get standard cpuid level and vendor name */
937 if (regs[0]>=0x00000001) /* Check for supported cpuid version */
939 do_cpuid(0x00000001, regs2); /* get cpu features */
941 if(regs2[3] & (1 << 3 )) info->FeatureSet |= CPU_FEATURE_PSE;
942 if(regs2[3] & (1 << 4 )) info->FeatureSet |= CPU_FEATURE_TSC;
943 if(regs2[3] & (1 << 8 )) info->FeatureSet |= CPU_FEATURE_CX8;
944 if(regs2[3] & (1 << 11)) info->FeatureSet |= CPU_FEATURE_SEP;
945 if(regs2[3] & (1 << 12)) info->FeatureSet |= CPU_FEATURE_MTRR;
946 if(regs2[3] & (1 << 15)) info->FeatureSet |= CPU_FEATURE_CMOV;
947 if(regs2[3] & (1 << 16)) info->FeatureSet |= CPU_FEATURE_PAT;
948 if(regs2[3] & (1 << 23)) info->FeatureSet |= CPU_FEATURE_MMX;
949 if(regs2[3] & (1 << 24)) info->FeatureSet |= CPU_FEATURE_FXSR;
950 if(regs2[3] & (1 << 25)) info->FeatureSet |= CPU_FEATURE_SSE;
951 if(regs2[3] & (1 << 26)) info->FeatureSet |= CPU_FEATURE_SSE2;
953 user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_EMULATED] = !(regs2[3] & 1);
954 user_shared_data->ProcessorFeatures[PF_RDTSC_INSTRUCTION_AVAILABLE] = (regs2[3] & (1 << 4 )) >> 4;
955 user_shared_data->ProcessorFeatures[PF_PAE_ENABLED] = (regs2[3] & (1 << 6 )) >> 6;
956 user_shared_data->ProcessorFeatures[PF_COMPARE_EXCHANGE_DOUBLE] = (regs2[3] & (1 << 8 )) >> 8;
957 user_shared_data->ProcessorFeatures[PF_MMX_INSTRUCTIONS_AVAILABLE] = (regs2[3] & (1 << 23)) >> 23;
958 user_shared_data->ProcessorFeatures[PF_XMMI_INSTRUCTIONS_AVAILABLE] = (regs2[3] & (1 << 25)) >> 25;
959 user_shared_data->ProcessorFeatures[PF_XMMI64_INSTRUCTIONS_AVAILABLE] = (regs2[3] & (1 << 26)) >> 26;
960 user_shared_data->ProcessorFeatures[PF_SSE3_INSTRUCTIONS_AVAILABLE] = regs2[2] & 1;
961 user_shared_data->ProcessorFeatures[PF_XSAVE_ENABLED] = (regs2[2] & (1 << 27)) >> 27;
962 user_shared_data->ProcessorFeatures[PF_COMPARE_EXCHANGE128] = (regs2[2] & (1 << 13)) >> 13;
964 if((regs2[3] & (1 << 26)) && (regs2[3] & (1 << 24))) /* has SSE2 and FXSAVE/FXRSTOR */
965 user_shared_data->ProcessorFeatures[PF_SSE_DAZ_MODE_AVAILABLE] = have_sse_daz_mode();
967 if (regs[1] == AUTH && regs[3] == ENTI && regs[2] == CAMD)
969 info->Level = (regs2[0] >> 8) & 0xf; /* family */
970 if (info->Level == 0xf) /* AMD says to add the extended family to the family if family is 0xf */
971 info->Level += (regs2[0] >> 20) & 0xff;
973 /* repack model and stepping to make a "revision" */
974 info->Revision = ((regs2[0] >> 16) & 0xf) << 12; /* extended model */
975 info->Revision |= ((regs2[0] >> 4 ) & 0xf) << 8; /* model */
976 info->Revision |= regs2[0] & 0xf; /* stepping */
978 do_cpuid(0x80000000, regs); /* get vendor cpuid level */
979 if (regs[0] >= 0x80000001)
981 do_cpuid(0x80000001, regs2); /* get vendor features */
982 user_shared_data->ProcessorFeatures[PF_VIRT_FIRMWARE_ENABLED] = (regs2[2] & (1 << 2 )) >> 2;
983 user_shared_data->ProcessorFeatures[PF_NX_ENABLED] = (regs2[3] & (1 << 20 )) >> 20;
984 user_shared_data->ProcessorFeatures[PF_3DNOW_INSTRUCTIONS_AVAILABLE] = (regs2[3] & (1 << 31 )) >> 31;
985 if(regs2[3] & (1 << 31)) info->FeatureSet |= CPU_FEATURE_3DNOW;
988 else if (regs[1] == GENU && regs[3] == INEI && regs[2] == NTEL)
990 info->Level = ((regs2[0] >> 8) & 0xf) + ((regs2[0] >> 20) & 0xff); /* family + extended family */
991 if(info->Level == 15) info->Level = 6;
993 /* repack model and stepping to make a "revision" */
994 info->Revision = ((regs2[0] >> 16) & 0xf) << 12; /* extended model */
995 info->Revision |= ((regs2[0] >> 4 ) & 0xf) << 8; /* model */
996 info->Revision |= regs2[0] & 0xf; /* stepping */
998 if(regs2[3] & (1 << 21)) info->FeatureSet |= CPU_FEATURE_DS;
999 user_shared_data->ProcessorFeatures[PF_VIRT_FIRMWARE_ENABLED] = (regs2[2] & (1 << 5 )) >> 5;
1001 do_cpuid(0x80000000, regs); /* get vendor cpuid level */
1002 if (regs[0] >= 0x80000001)
1004 do_cpuid(0x80000001, regs2); /* get vendor features */
1005 user_shared_data->ProcessorFeatures[PF_NX_ENABLED] = (regs2[3] & (1 << 20 )) >> 20;
1008 else
1010 info->Level = (regs2[0] >> 8) & 0xf; /* family */
1012 /* repack model and stepping to make a "revision" */
1013 info->Revision = ((regs2[0] >> 4 ) & 0xf) << 8; /* model */
1014 info->Revision |= regs2[0] & 0xf; /* stepping */
1019 #elif defined(__powerpc__) || defined(__ppc__)
1021 static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
1023 #ifdef __APPLE__
1024 size_t valSize;
1025 int value;
1027 valSize = sizeof(value);
1028 if (sysctlbyname("hw.optional.floatingpoint", &value, &valSize, NULL, 0) == 0)
1029 user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_EMULATED] = !value;
1031 valSize = sizeof(value);
1032 if (sysctlbyname("hw.cpusubtype", &value, &valSize, NULL, 0) == 0)
1034 switch (value)
1036 case CPU_SUBTYPE_POWERPC_601:
1037 case CPU_SUBTYPE_POWERPC_602: info->Level = 1; break;
1038 case CPU_SUBTYPE_POWERPC_603: info->Level = 3; break;
1039 case CPU_SUBTYPE_POWERPC_603e:
1040 case CPU_SUBTYPE_POWERPC_603ev: info->Level = 6; break;
1041 case CPU_SUBTYPE_POWERPC_604: info->Level = 4; break;
1042 case CPU_SUBTYPE_POWERPC_604e: info->Level = 9; break;
1043 case CPU_SUBTYPE_POWERPC_620: info->Level = 20; break;
1044 case CPU_SUBTYPE_POWERPC_750: /* G3/G4 derive from 603 so ... */
1045 case CPU_SUBTYPE_POWERPC_7400:
1046 case CPU_SUBTYPE_POWERPC_7450: info->Level = 6; break;
1047 case CPU_SUBTYPE_POWERPC_970: info->Level = 9;
1048 /* :o) user_shared_data->ProcessorFeatures[PF_ALTIVEC_INSTRUCTIONS_AVAILABLE] ;-) */
1049 break;
1050 default: break;
1053 #else
1054 FIXME("CPU Feature detection not implemented.\n");
1055 #endif
1056 info->Architecture = PROCESSOR_ARCHITECTURE_PPC;
1059 #elif defined(__arm__)
1061 static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
1063 #ifdef linux
1064 char line[512];
1065 char *s, *value;
1066 FILE *f = fopen("/proc/cpuinfo", "r");
1067 if (f)
1069 while (fgets(line, sizeof(line), f) != NULL)
1071 /* NOTE: the ':' is the only character we can rely on */
1072 if (!(value = strchr(line,':')))
1073 continue;
1074 /* terminate the valuename */
1075 s = value - 1;
1076 while ((s >= line) && isspace(*s)) s--;
1077 *(s + 1) = '\0';
1078 /* and strip leading spaces from value */
1079 value += 1;
1080 while (isspace(*value)) value++;
1081 if ((s = strchr(value,'\n')))
1082 *s='\0';
1083 if (!strcasecmp(line, "CPU architecture"))
1085 if (isdigit(value[0]))
1086 info->Level = atoi(value);
1087 continue;
1089 if (!strcasecmp(line, "features"))
1091 if (strstr(value, "vfpv3"))
1092 user_shared_data->ProcessorFeatures[PF_ARM_VFP_32_REGISTERS_AVAILABLE] = TRUE;
1093 if (strstr(value, "neon"))
1094 user_shared_data->ProcessorFeatures[PF_ARM_NEON_INSTRUCTIONS_AVAILABLE] = TRUE;
1095 continue;
1098 fclose(f);
1100 #else
1101 FIXME("CPU Feature detection not implemented.\n");
1102 #endif
1103 info->Architecture = PROCESSOR_ARCHITECTURE_ARM;
1106 #elif defined(__sparc__)
1108 static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
1110 info->Architecture = PROCESSOR_ARCHITECTURE_SPARC;
1113 #endif /* End architecture specific feature detection for CPUs */
1115 /******************************************************************
1116 * fill_cpu_info
1118 * inits a couple of places with CPU related information:
1119 * - cached_sci in this file
1120 * - Peb->NumberOfProcessors
1121 * - SharedUserData->ProcessFeatures[] array
1123 void fill_cpu_info(void)
1125 long num;
1127 #ifdef _SC_NPROCESSORS_ONLN
1128 num = sysconf(_SC_NPROCESSORS_ONLN);
1129 if (num < 1)
1131 num = 1;
1132 WARN("Failed to detect the number of processors.\n");
1134 #elif defined(CTL_HW) && defined(HW_NCPU)
1135 int mib[2];
1136 size_t len = sizeof(num);
1137 mib[0] = CTL_HW;
1138 mib[1] = HW_NCPU;
1139 if (sysctl(mib, 2, &num, &len, NULL, 0) != 0)
1141 num = 1;
1142 WARN("Failed to detect the number of processors.\n");
1144 #else
1145 num = 1;
1146 FIXME("Detecting the number of processors is not supported.\n");
1147 #endif
1148 NtCurrentTeb()->Peb->NumberOfProcessors = num;
1150 memset(&cached_sci, 0, sizeof(cached_sci));
1151 get_cpuinfo(&cached_sci);
1153 TRACE("<- CPU arch %d, level %d, rev %d, features 0x%x\n",
1154 cached_sci.Architecture, cached_sci.Level, cached_sci.Revision, cached_sci.FeatureSet);
1157 #ifdef linux
1158 static inline BOOL logical_proc_info_add_by_id(SYSTEM_LOGICAL_PROCESSOR_INFORMATION *data,
1159 DWORD *len, DWORD max_len, LOGICAL_PROCESSOR_RELATIONSHIP rel, DWORD id, DWORD proc)
1161 int i;
1163 for(i=0; i<*len; i++)
1165 if(data[i].Relationship!=rel || data[i].u.Reserved[1]!=id)
1166 continue;
1168 data[i].ProcessorMask |= (ULONG_PTR)1<<proc;
1169 return TRUE;
1172 if(*len == max_len)
1173 return FALSE;
1175 data[i].Relationship = rel;
1176 data[i].ProcessorMask = (ULONG_PTR)1<<proc;
1177 /* TODO: set processor core flags */
1178 data[i].u.Reserved[0] = 0;
1179 data[i].u.Reserved[1] = id;
1180 *len = i+1;
1181 return TRUE;
1184 static inline BOOL logical_proc_info_add_cache(SYSTEM_LOGICAL_PROCESSOR_INFORMATION *data,
1185 DWORD *len, DWORD max_len, ULONG_PTR mask, CACHE_DESCRIPTOR *cache)
1187 int i;
1189 for(i=0; i<*len; i++)
1191 if(data[i].Relationship==RelationCache && data[i].ProcessorMask==mask
1192 && data[i].u.Cache.Level==cache->Level && data[i].u.Cache.Type==cache->Type)
1193 return TRUE;
1196 if(*len == max_len)
1197 return FALSE;
1199 data[i].Relationship = RelationCache;
1200 data[i].ProcessorMask = mask;
1201 data[i].u.Cache = *cache;
1202 *len = i+1;
1203 return TRUE;
1206 static inline BOOL logical_proc_info_add_numa_node(SYSTEM_LOGICAL_PROCESSOR_INFORMATION *data,
1207 DWORD *len, DWORD max_len, ULONG_PTR mask, DWORD node_id)
1209 if(*len == max_len)
1210 return FALSE;
1212 data[*len].Relationship = RelationNumaNode;
1213 data[*len].ProcessorMask = mask;
1214 data[*len].u.NumaNode.NodeNumber = node_id;
1215 (*len)++;
1216 return TRUE;
1219 static NTSTATUS create_logical_proc_info(SYSTEM_LOGICAL_PROCESSOR_INFORMATION **data, DWORD *max_len)
1221 static const char core_info[] = "/sys/devices/system/cpu/cpu%d/%s";
1222 static const char cache_info[] = "/sys/devices/system/cpu/cpu%d/cache/index%d/%s";
1223 static const char numa_info[] = "/sys/devices/system/node/node%d/cpumap";
1225 FILE *fcpu_list, *fnuma_list, *f;
1226 DWORD len = 0, beg, end, i, j, r;
1227 char op, name[MAX_PATH];
1229 fcpu_list = fopen("/sys/devices/system/cpu/online", "r");
1230 if(!fcpu_list)
1231 return STATUS_NOT_IMPLEMENTED;
1233 while(!feof(fcpu_list))
1235 if(!fscanf(fcpu_list, "%u%c ", &beg, &op))
1236 break;
1237 if(op == '-') fscanf(fcpu_list, "%u%c ", &end, &op);
1238 else end = beg;
1240 for(i=beg; i<=end; i++)
1242 if(i > 8*sizeof(ULONG_PTR))
1244 FIXME("skipping logical processor %d\n", i);
1245 continue;
1248 sprintf(name, core_info, i, "core_id");
1249 f = fopen(name, "r");
1250 if(f)
1252 fscanf(f, "%u", &r);
1253 fclose(f);
1255 else r = i;
1256 if(!logical_proc_info_add_by_id(*data, &len, *max_len, RelationProcessorCore, r, i))
1258 SYSTEM_LOGICAL_PROCESSOR_INFORMATION *new_data;
1260 *max_len *= 2;
1261 new_data = RtlReAllocateHeap(GetProcessHeap(), 0, *data, *max_len*sizeof(*new_data));
1262 if(!new_data)
1264 fclose(fcpu_list);
1265 return STATUS_NO_MEMORY;
1268 *data = new_data;
1269 logical_proc_info_add_by_id(*data, &len, *max_len, RelationProcessorCore, r, i);
1272 sprintf(name, core_info, i, "physical_package_id");
1273 f = fopen(name, "r");
1274 if(f)
1276 fscanf(f, "%u", &r);
1277 fclose(f);
1279 else r = 0;
1280 if(!logical_proc_info_add_by_id(*data, &len, *max_len, RelationProcessorPackage, r, i))
1282 SYSTEM_LOGICAL_PROCESSOR_INFORMATION *new_data;
1284 *max_len *= 2;
1285 new_data = RtlReAllocateHeap(GetProcessHeap(), 0, *data, *max_len*sizeof(*new_data));
1286 if(!new_data)
1288 fclose(fcpu_list);
1289 return STATUS_NO_MEMORY;
1292 *data = new_data;
1293 logical_proc_info_add_by_id(*data, &len, *max_len, RelationProcessorPackage, r, i);
1296 for(j=0; j<4; j++)
1298 CACHE_DESCRIPTOR cache;
1299 ULONG_PTR mask = 0;
1301 sprintf(name, cache_info, i, j, "shared_cpu_map");
1302 f = fopen(name, "r");
1303 if(!f) continue;
1304 while(!feof(f))
1306 if(!fscanf(f, "%x%c ", &r, &op))
1307 break;
1308 mask = (sizeof(ULONG_PTR)>sizeof(int) ? mask<<(8*sizeof(DWORD)) : 0) + r;
1310 fclose(f);
1312 sprintf(name, cache_info, i, j, "level");
1313 f = fopen(name, "r");
1314 if(!f) continue;
1315 fscanf(f, "%u", &r);
1316 fclose(f);
1317 cache.Level = r;
1319 sprintf(name, cache_info, i, j, "ways_of_associativity");
1320 f = fopen(name, "r");
1321 if(!f) continue;
1322 fscanf(f, "%u", &r);
1323 fclose(f);
1324 cache.Associativity = r;
1326 sprintf(name, cache_info, i, j, "coherency_line_size");
1327 f = fopen(name, "r");
1328 if(!f) continue;
1329 fscanf(f, "%u", &r);
1330 fclose(f);
1331 cache.LineSize = r;
1333 sprintf(name, cache_info, i, j, "size");
1334 f = fopen(name, "r");
1335 if(!f) continue;
1336 fscanf(f, "%u%c", &r, &op);
1337 fclose(f);
1338 if(op != 'K')
1339 WARN("unknown cache size %u%c\n", r, op);
1340 cache.Size = (op=='K' ? r*1024 : r);
1342 sprintf(name, cache_info, i, j, "type");
1343 f = fopen(name, "r");
1344 if(!f) continue;
1345 fscanf(f, "%s", name);
1346 fclose(f);
1347 if(!memcmp(name, "Data", 5))
1348 cache.Type = CacheData;
1349 else if(!memcmp(name, "Instruction", 11))
1350 cache.Type = CacheInstruction;
1351 else
1352 cache.Type = CacheUnified;
1354 if(!logical_proc_info_add_cache(*data, &len, *max_len, mask, &cache))
1356 SYSTEM_LOGICAL_PROCESSOR_INFORMATION *new_data;
1358 *max_len *= 2;
1359 new_data = RtlReAllocateHeap(GetProcessHeap(), 0, *data, *max_len*sizeof(*new_data));
1360 if(!new_data)
1362 fclose(fcpu_list);
1363 return STATUS_NO_MEMORY;
1366 *data = new_data;
1367 logical_proc_info_add_cache(*data, &len, *max_len, mask, &cache);
1372 fclose(fcpu_list);
1374 fnuma_list = fopen("/sys/devices/system/node/online", "r");
1375 if(!fnuma_list)
1377 ULONG_PTR mask = 0;
1379 for(i=0; i<len; i++)
1380 if((*data)[i].Relationship == RelationProcessorCore)
1381 mask |= (*data)[i].ProcessorMask;
1383 if(len == *max_len)
1385 SYSTEM_LOGICAL_PROCESSOR_INFORMATION *new_data;
1387 *max_len *= 2;
1388 new_data = RtlReAllocateHeap(GetProcessHeap(), 0, *data, *max_len*sizeof(*new_data));
1389 if(!new_data)
1390 return STATUS_NO_MEMORY;
1392 *data = new_data;
1394 logical_proc_info_add_numa_node(*data, &len, *max_len, mask, 0);
1396 else
1398 while(!feof(fnuma_list))
1400 if(!fscanf(fnuma_list, "%u%c ", &beg, &op))
1401 break;
1402 if(op == '-') fscanf(fnuma_list, "%u%c ", &end, &op);
1403 else end = beg;
1405 for(i=beg; i<=end; i++)
1407 ULONG_PTR mask = 0;
1409 sprintf(name, numa_info, i);
1410 f = fopen(name, "r");
1411 if(!f) continue;
1412 while(!feof(f))
1414 if(!fscanf(f, "%x%c ", &r, &op))
1415 break;
1416 mask = (sizeof(ULONG_PTR)>sizeof(int) ? mask<<(8*sizeof(DWORD)) : 0) + r;
1418 fclose(f);
1420 if(len == *max_len)
1422 SYSTEM_LOGICAL_PROCESSOR_INFORMATION *new_data;
1424 *max_len *= 2;
1425 new_data = RtlReAllocateHeap(GetProcessHeap(), 0, *data, *max_len*sizeof(*new_data));
1426 if(!new_data)
1428 fclose(fnuma_list);
1429 return STATUS_NO_MEMORY;
1432 *data = new_data;
1434 logical_proc_info_add_numa_node(*data, &len, *max_len, mask, i);
1437 fclose(fnuma_list);
1440 *max_len = len * sizeof(**data);
1441 return STATUS_SUCCESS;
1443 #elif defined(__APPLE__)
1444 static NTSTATUS create_logical_proc_info(SYSTEM_LOGICAL_PROCESSOR_INFORMATION **data, DWORD *max_len)
1446 DWORD len = 0, i, j, k;
1447 DWORD cores_no, lcpu_no, lcpu_per_core, cores_per_package, assoc;
1448 size_t size;
1449 ULONG_PTR mask;
1450 LONGLONG cache_size, cache_line_size, cache_sharing[10];
1451 CACHE_DESCRIPTOR cache[4];
1453 lcpu_no = NtCurrentTeb()->Peb->NumberOfProcessors;
1455 size = sizeof(cores_no);
1456 if(sysctlbyname("machdep.cpu.core_count", &cores_no, &size, NULL, 0))
1457 cores_no = lcpu_no;
1459 lcpu_per_core = lcpu_no/cores_no;
1460 for(i=0; i<cores_no; i++)
1462 mask = 0;
1463 for(j=lcpu_per_core*i; j<lcpu_per_core*(i+1); j++)
1464 mask |= (ULONG_PTR)1<<j;
1466 (*data)[len].Relationship = RelationProcessorCore;
1467 (*data)[len].ProcessorMask = mask;
1468 (*data)[len].u.ProcessorCore.Flags = 0; /* TODO */
1469 len++;
1472 size = sizeof(cores_per_package);
1473 if(sysctlbyname("machdep.cpu.cores_per_package", &cores_per_package, &size, NULL, 0))
1474 cores_per_package = lcpu_no;
1476 for(i=0; i<(lcpu_no+cores_per_package-1)/cores_per_package; i++)
1478 mask = 0;
1479 for(j=cores_per_package*i; j<cores_per_package*(i+1) && j<lcpu_no; j++)
1480 mask |= (ULONG_PTR)1<<j;
1482 (*data)[len].Relationship = RelationProcessorPackage;
1483 (*data)[len].ProcessorMask = mask;
1484 len++;
1487 memset(cache, 0, sizeof(cache));
1488 cache[0].Level = 1;
1489 cache[0].Type = CacheInstruction;
1490 cache[1].Level = 1;
1491 cache[1].Type = CacheData;
1492 cache[2].Level = 2;
1493 cache[2].Type = CacheUnified;
1494 cache[3].Level = 3;
1495 cache[3].Type = CacheUnified;
1497 size = sizeof(cache_line_size);
1498 if(!sysctlbyname("hw.cachelinesize", &cache_line_size, &size, NULL, 0))
1500 for(i=0; i<4; i++)
1501 cache[i].LineSize = cache_line_size;
1504 /* TODO: set associativity for all caches */
1505 size = sizeof(assoc);
1506 if(!sysctlbyname("machdep.cpu.cache.L2_associativity", &assoc, &size, NULL, 0))
1507 cache[2].Associativity = assoc;
1509 size = sizeof(cache_size);
1510 if(!sysctlbyname("hw.l1icachesize", &cache_size, &size, NULL, 0))
1511 cache[0].Size = cache_size;
1512 size = sizeof(cache_size);
1513 if(!sysctlbyname("hw.l1dcachesize", &cache_size, &size, NULL, 0))
1514 cache[1].Size = cache_size;
1515 size = sizeof(cache_size);
1516 if(!sysctlbyname("hw.l2cachesize", &cache_size, &size, NULL, 0))
1517 cache[2].Size = cache_size;
1518 size = sizeof(cache_size);
1519 if(!sysctlbyname("hw.l3cachesize", &cache_size, &size, NULL, 0))
1520 cache[3].Size = cache_size;
1522 size = sizeof(cache_sharing);
1523 if(!sysctlbyname("hw.cacheconfig", cache_sharing, &size, NULL, 0))
1525 for(i=1; i<4 && i<size/sizeof(*cache_sharing); i++)
1527 if(!cache_sharing[i] || !cache[i].Size)
1528 continue;
1530 for(j=0; j<lcpu_no/cache_sharing[i]; j++)
1532 mask = 0;
1533 for(k=j*cache_sharing[i]; k<lcpu_no && k<(j+1)*cache_sharing[i]; k++)
1534 mask |= (ULONG_PTR)1<<k;
1536 if(i==1 && cache[0].Size)
1538 (*data)[len].Relationship = RelationCache;
1539 (*data)[len].ProcessorMask = mask;
1540 (*data)[len].u.Cache = cache[0];
1541 len++;
1544 (*data)[len].Relationship = RelationCache;
1545 (*data)[len].ProcessorMask = mask;
1546 (*data)[len].u.Cache = cache[i];
1547 len++;
1552 mask = 0;
1553 for(i=0; i<lcpu_no; i++)
1554 mask |= (ULONG_PTR)1<<i;
1555 (*data)[len].Relationship = RelationNumaNode;
1556 (*data)[len].ProcessorMask = mask;
1557 (*data)[len].u.NumaNode.NodeNumber = 0;
1558 len++;
1560 *max_len = len * sizeof(**data);
1561 return STATUS_SUCCESS;
1563 #else
1564 static NTSTATUS create_logical_proc_info(SYSTEM_LOGICAL_PROCESSOR_INFORMATION **data, DWORD *max_len)
1566 FIXME("stub\n");
1567 return STATUS_NOT_IMPLEMENTED;
1569 #endif
1571 /******************************************************************************
1572 * NtQuerySystemInformation [NTDLL.@]
1573 * ZwQuerySystemInformation [NTDLL.@]
1575 * ARGUMENTS:
1576 * SystemInformationClass Index to a certain information structure
1577 * SystemTimeAdjustmentInformation SYSTEM_TIME_ADJUSTMENT
1578 * SystemCacheInformation SYSTEM_CACHE_INFORMATION
1579 * SystemConfigurationInformation CONFIGURATION_INFORMATION
1580 * observed (class/len):
1581 * 0x0/0x2c
1582 * 0x12/0x18
1583 * 0x2/0x138
1584 * 0x8/0x600
1585 * 0x25/0xc
1586 * SystemInformation caller supplies storage for the information structure
1587 * Length size of the structure
1588 * ResultLength Data written
1590 NTSTATUS WINAPI NtQuerySystemInformation(
1591 IN SYSTEM_INFORMATION_CLASS SystemInformationClass,
1592 OUT PVOID SystemInformation,
1593 IN ULONG Length,
1594 OUT PULONG ResultLength)
1596 NTSTATUS ret = STATUS_SUCCESS;
1597 ULONG len = 0;
1599 TRACE("(0x%08x,%p,0x%08x,%p)\n",
1600 SystemInformationClass,SystemInformation,Length,ResultLength);
1602 switch (SystemInformationClass)
1604 case SystemBasicInformation:
1606 SYSTEM_BASIC_INFORMATION sbi;
1608 virtual_get_system_info( &sbi );
1609 len = sizeof(sbi);
1611 if ( Length == len)
1613 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1614 else memcpy( SystemInformation, &sbi, len);
1616 else ret = STATUS_INFO_LENGTH_MISMATCH;
1618 break;
1619 case SystemCpuInformation:
1620 if (Length >= (len = sizeof(cached_sci)))
1622 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1623 else memcpy(SystemInformation, &cached_sci, len);
1625 else ret = STATUS_INFO_LENGTH_MISMATCH;
1626 break;
1627 case SystemPerformanceInformation:
1629 SYSTEM_PERFORMANCE_INFORMATION spi;
1630 static BOOL fixme_written = FALSE;
1631 FILE *fp;
1633 memset(&spi, 0 , sizeof(spi));
1634 len = sizeof(spi);
1636 spi.Reserved3 = 0x7fffffff; /* Available paged pool memory? */
1638 if ((fp = fopen("/proc/uptime", "r")))
1640 double uptime, idle_time;
1642 fscanf(fp, "%lf %lf", &uptime, &idle_time);
1643 fclose(fp);
1644 spi.IdleTime.QuadPart = 10000000 * idle_time;
1646 else
1648 static ULONGLONG idle;
1649 /* many programs expect IdleTime to change so fake change */
1650 spi.IdleTime.QuadPart = ++idle;
1653 if (Length >= len)
1655 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1656 else memcpy( SystemInformation, &spi, len);
1658 else ret = STATUS_INFO_LENGTH_MISMATCH;
1659 if(!fixme_written) {
1660 FIXME("info_class SYSTEM_PERFORMANCE_INFORMATION\n");
1661 fixme_written = TRUE;
1664 break;
1665 case SystemTimeOfDayInformation:
1667 SYSTEM_TIMEOFDAY_INFORMATION sti;
1669 memset(&sti, 0 , sizeof(sti));
1671 /* liKeSystemTime, liExpTimeZoneBias, uCurrentTimeZoneId */
1672 sti.liKeBootTime.QuadPart = server_start_time;
1674 if (Length <= sizeof(sti))
1676 len = Length;
1677 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1678 else memcpy( SystemInformation, &sti, Length);
1680 else ret = STATUS_INFO_LENGTH_MISMATCH;
1682 break;
1683 case SystemProcessInformation:
1685 SYSTEM_PROCESS_INFORMATION* spi = SystemInformation;
1686 SYSTEM_PROCESS_INFORMATION* last = NULL;
1687 HANDLE hSnap = 0;
1688 WCHAR procname[1024];
1689 WCHAR* exename;
1690 DWORD wlen = 0;
1691 DWORD procstructlen = 0;
1693 SERVER_START_REQ( create_snapshot )
1695 req->flags = SNAP_PROCESS | SNAP_THREAD;
1696 req->attributes = 0;
1697 if (!(ret = wine_server_call( req )))
1698 hSnap = wine_server_ptr_handle( reply->handle );
1700 SERVER_END_REQ;
1701 len = 0;
1702 while (ret == STATUS_SUCCESS)
1704 SERVER_START_REQ( next_process )
1706 req->handle = wine_server_obj_handle( hSnap );
1707 req->reset = (len == 0);
1708 wine_server_set_reply( req, procname, sizeof(procname)-sizeof(WCHAR) );
1709 if (!(ret = wine_server_call( req )))
1711 /* Make sure procname is 0 terminated */
1712 procname[wine_server_reply_size(reply) / sizeof(WCHAR)] = 0;
1714 /* Get only the executable name, not the path */
1715 if ((exename = strrchrW(procname, '\\')) != NULL) exename++;
1716 else exename = procname;
1718 wlen = (strlenW(exename) + 1) * sizeof(WCHAR);
1720 procstructlen = sizeof(*spi) + wlen + ((reply->threads - 1) * sizeof(SYSTEM_THREAD_INFORMATION));
1722 if (Length >= len + procstructlen)
1724 /* ftCreationTime, ftUserTime, ftKernelTime;
1725 * vmCounters, ioCounters
1728 memset(spi, 0, sizeof(*spi));
1730 spi->NextEntryOffset = procstructlen - wlen;
1731 spi->dwThreadCount = reply->threads;
1733 /* spi->pszProcessName will be set later on */
1735 spi->dwBasePriority = reply->priority;
1736 spi->UniqueProcessId = UlongToHandle(reply->pid);
1737 spi->ParentProcessId = UlongToHandle(reply->ppid);
1738 spi->HandleCount = reply->handles;
1740 /* spi->ti will be set later on */
1743 len += procstructlen;
1746 SERVER_END_REQ;
1748 if (ret != STATUS_SUCCESS)
1750 if (ret == STATUS_NO_MORE_FILES) ret = STATUS_SUCCESS;
1751 break;
1754 if (Length >= len)
1756 int i, j;
1758 /* set thread info */
1759 i = j = 0;
1760 while (ret == STATUS_SUCCESS)
1762 SERVER_START_REQ( next_thread )
1764 req->handle = wine_server_obj_handle( hSnap );
1765 req->reset = (j == 0);
1766 if (!(ret = wine_server_call( req )))
1768 j++;
1769 if (UlongToHandle(reply->pid) == spi->UniqueProcessId)
1771 /* ftKernelTime, ftUserTime, ftCreateTime;
1772 * dwTickCount, dwStartAddress
1775 memset(&spi->ti[i], 0, sizeof(spi->ti));
1777 spi->ti[i].CreateTime.QuadPart = 0xdeadbeef;
1778 spi->ti[i].ClientId.UniqueProcess = UlongToHandle(reply->pid);
1779 spi->ti[i].ClientId.UniqueThread = UlongToHandle(reply->tid);
1780 spi->ti[i].dwCurrentPriority = reply->base_pri + reply->delta_pri;
1781 spi->ti[i].dwBasePriority = reply->base_pri;
1782 i++;
1786 SERVER_END_REQ;
1788 if (ret == STATUS_NO_MORE_FILES) ret = STATUS_SUCCESS;
1790 /* now append process name */
1791 spi->ProcessName.Buffer = (WCHAR*)((char*)spi + spi->NextEntryOffset);
1792 spi->ProcessName.Length = wlen - sizeof(WCHAR);
1793 spi->ProcessName.MaximumLength = wlen;
1794 memcpy( spi->ProcessName.Buffer, exename, wlen );
1795 spi->NextEntryOffset += wlen;
1797 last = spi;
1798 spi = (SYSTEM_PROCESS_INFORMATION*)((char*)spi + spi->NextEntryOffset);
1801 if (ret == STATUS_SUCCESS && last) last->NextEntryOffset = 0;
1802 if (len > Length) ret = STATUS_INFO_LENGTH_MISMATCH;
1803 if (hSnap) NtClose(hSnap);
1805 break;
1806 case SystemProcessorPerformanceInformation:
1808 SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION *sppi = NULL;
1809 unsigned int cpus = 0;
1810 int out_cpus = Length / sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION);
1812 if (out_cpus == 0)
1814 len = 0;
1815 ret = STATUS_INFO_LENGTH_MISMATCH;
1816 break;
1818 else
1819 #ifdef __APPLE__
1821 processor_cpu_load_info_data_t *pinfo;
1822 mach_msg_type_number_t info_count;
1824 if (host_processor_info (mach_host_self (),
1825 PROCESSOR_CPU_LOAD_INFO,
1826 &cpus,
1827 (processor_info_array_t*)&pinfo,
1828 &info_count) == 0)
1830 int i;
1831 cpus = min(cpus,out_cpus);
1832 len = sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION) * cpus;
1833 sppi = RtlAllocateHeap(GetProcessHeap(), 0,len);
1834 for (i = 0; i < cpus; i++)
1836 sppi[i].IdleTime.QuadPart = pinfo[i].cpu_ticks[CPU_STATE_IDLE];
1837 sppi[i].KernelTime.QuadPart = pinfo[i].cpu_ticks[CPU_STATE_SYSTEM];
1838 sppi[i].UserTime.QuadPart = pinfo[i].cpu_ticks[CPU_STATE_USER];
1840 vm_deallocate (mach_task_self (), (vm_address_t) pinfo, info_count * sizeof(natural_t));
1843 #else
1845 FILE *cpuinfo = fopen("/proc/stat", "r");
1846 if (cpuinfo)
1848 unsigned long clk_tck = sysconf(_SC_CLK_TCK);
1849 unsigned long usr,nice,sys,idle,remainder[8];
1850 int i, count;
1851 char name[32];
1852 char line[255];
1854 /* first line is combined usage */
1855 while (fgets(line,255,cpuinfo))
1857 count = sscanf(line, "%s %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
1858 name, &usr, &nice, &sys, &idle,
1859 &remainder[0], &remainder[1], &remainder[2], &remainder[3],
1860 &remainder[4], &remainder[5], &remainder[6], &remainder[7]);
1862 if (count < 5 || strncmp( name, "cpu", 3 )) break;
1863 for (i = 0; i + 5 < count; ++i) sys += remainder[i];
1864 sys += idle;
1865 usr += nice;
1866 cpus = atoi( name + 3 ) + 1;
1867 if (cpus > out_cpus) break;
1868 len = sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION) * cpus;
1869 if (sppi)
1870 sppi = RtlReAllocateHeap( GetProcessHeap(), HEAP_ZERO_MEMORY, sppi, len );
1871 else
1872 sppi = RtlAllocateHeap( GetProcessHeap(), HEAP_ZERO_MEMORY, len );
1874 sppi[cpus-1].IdleTime.QuadPart = (ULONGLONG)idle * 10000000 / clk_tck;
1875 sppi[cpus-1].KernelTime.QuadPart = (ULONGLONG)sys * 10000000 / clk_tck;
1876 sppi[cpus-1].UserTime.QuadPart = (ULONGLONG)usr * 10000000 / clk_tck;
1878 fclose(cpuinfo);
1881 #endif
1883 if (cpus == 0)
1885 static int i = 1;
1886 int n;
1887 cpus = min(NtCurrentTeb()->Peb->NumberOfProcessors, out_cpus);
1888 len = sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION) * cpus;
1889 sppi = RtlAllocateHeap(GetProcessHeap(), 0, len);
1890 FIXME("stub info_class SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION\n");
1891 /* many programs expect these values to change so fake change */
1892 for (n = 0; n < cpus; n++)
1894 sppi[n].KernelTime.QuadPart = 1 * i;
1895 sppi[n].UserTime.QuadPart = 2 * i;
1896 sppi[n].IdleTime.QuadPart = 3 * i;
1898 i++;
1901 if (Length >= len)
1903 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1904 else memcpy( SystemInformation, sppi, len);
1906 else ret = STATUS_INFO_LENGTH_MISMATCH;
1908 RtlFreeHeap(GetProcessHeap(),0,sppi);
1910 break;
1911 case SystemModuleInformation:
1912 /* FIXME: should be system-wide */
1913 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1914 else ret = LdrQueryProcessModuleInformation( SystemInformation, Length, &len );
1915 break;
1916 case SystemHandleInformation:
1918 SYSTEM_HANDLE_INFORMATION shi;
1920 memset(&shi, 0, sizeof(shi));
1921 len = sizeof(shi);
1923 if ( Length >= len)
1925 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1926 else memcpy( SystemInformation, &shi, len);
1928 else ret = STATUS_INFO_LENGTH_MISMATCH;
1929 FIXME("info_class SYSTEM_HANDLE_INFORMATION\n");
1931 break;
1932 case SystemCacheInformation:
1934 SYSTEM_CACHE_INFORMATION sci;
1936 memset(&sci, 0, sizeof(sci)); /* FIXME */
1937 len = sizeof(sci);
1939 if ( Length >= len)
1941 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1942 else memcpy( SystemInformation, &sci, len);
1944 else ret = STATUS_INFO_LENGTH_MISMATCH;
1945 FIXME("info_class SYSTEM_CACHE_INFORMATION\n");
1947 break;
1948 case SystemInterruptInformation:
1950 SYSTEM_INTERRUPT_INFORMATION sii;
1952 memset(&sii, 0, sizeof(sii));
1953 len = sizeof(sii);
1955 if ( Length >= len)
1957 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1958 else memcpy( SystemInformation, &sii, len);
1960 else ret = STATUS_INFO_LENGTH_MISMATCH;
1961 FIXME("info_class SYSTEM_INTERRUPT_INFORMATION\n");
1963 break;
1964 case SystemKernelDebuggerInformation:
1966 SYSTEM_KERNEL_DEBUGGER_INFORMATION skdi;
1968 skdi.DebuggerEnabled = FALSE;
1969 skdi.DebuggerNotPresent = TRUE;
1970 len = sizeof(skdi);
1972 if ( Length >= len)
1974 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1975 else memcpy( SystemInformation, &skdi, len);
1977 else ret = STATUS_INFO_LENGTH_MISMATCH;
1979 break;
1980 case SystemRegistryQuotaInformation:
1982 /* Something to do with the size of the registry *
1983 * Since we don't have a size limitation, fake it *
1984 * This is almost certainly wrong. *
1985 * This sets each of the three words in the struct to 32 MB, *
1986 * which is enough to make the IE 5 installer happy. */
1987 SYSTEM_REGISTRY_QUOTA_INFORMATION srqi;
1989 srqi.RegistryQuotaAllowed = 0x2000000;
1990 srqi.RegistryQuotaUsed = 0x200000;
1991 srqi.Reserved1 = (void*)0x200000;
1992 len = sizeof(srqi);
1994 if ( Length >= len)
1996 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1997 else
1999 FIXME("SystemRegistryQuotaInformation: faking max registry size of 32 MB\n");
2000 memcpy( SystemInformation, &srqi, len);
2003 else ret = STATUS_INFO_LENGTH_MISMATCH;
2005 break;
2006 case SystemLogicalProcessorInformation:
2008 SYSTEM_LOGICAL_PROCESSOR_INFORMATION *buf;
2010 /* Each logical processor may use up to 7 entries in returned table:
2011 * core, numa node, package, L1i, L1d, L2, L3 */
2012 len = 7 * NtCurrentTeb()->Peb->NumberOfProcessors;
2013 buf = RtlAllocateHeap(GetProcessHeap(), 0, len * sizeof(*buf));
2014 if(!buf)
2016 ret = STATUS_NO_MEMORY;
2017 break;
2020 ret = create_logical_proc_info(&buf, &len);
2021 if( ret != STATUS_SUCCESS )
2023 RtlFreeHeap(GetProcessHeap(), 0, buf);
2024 break;
2027 if( Length >= len)
2029 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
2030 else memcpy( SystemInformation, buf, len);
2032 else ret = STATUS_INFO_LENGTH_MISMATCH;
2033 RtlFreeHeap(GetProcessHeap(), 0, buf);
2035 break;
2036 default:
2037 FIXME("(0x%08x,%p,0x%08x,%p) stub\n",
2038 SystemInformationClass,SystemInformation,Length,ResultLength);
2040 /* Several Information Classes are not implemented on Windows and return 2 different values
2041 * STATUS_NOT_IMPLEMENTED or STATUS_INVALID_INFO_CLASS
2042 * in 95% of the cases it's STATUS_INVALID_INFO_CLASS, so use this as the default
2044 ret = STATUS_INVALID_INFO_CLASS;
2047 if (ResultLength) *ResultLength = len;
2049 return ret;
2052 /******************************************************************************
2053 * NtSetSystemInformation [NTDLL.@]
2054 * ZwSetSystemInformation [NTDLL.@]
2056 NTSTATUS WINAPI NtSetSystemInformation(SYSTEM_INFORMATION_CLASS SystemInformationClass, PVOID SystemInformation, ULONG Length)
2058 FIXME("(0x%08x,%p,0x%08x) stub\n",SystemInformationClass,SystemInformation,Length);
2059 return STATUS_SUCCESS;
2062 /******************************************************************************
2063 * NtCreatePagingFile [NTDLL.@]
2064 * ZwCreatePagingFile [NTDLL.@]
2066 NTSTATUS WINAPI NtCreatePagingFile(
2067 PUNICODE_STRING PageFileName,
2068 PLARGE_INTEGER MinimumSize,
2069 PLARGE_INTEGER MaximumSize,
2070 PLARGE_INTEGER ActualSize)
2072 FIXME("(%p %p %p %p) stub\n", PageFileName, MinimumSize, MaximumSize, ActualSize);
2073 return STATUS_SUCCESS;
2076 /******************************************************************************
2077 * NtDisplayString [NTDLL.@]
2079 * writes a string to the nt-textmode screen eg. during startup
2081 NTSTATUS WINAPI NtDisplayString ( PUNICODE_STRING string )
2083 STRING stringA;
2084 NTSTATUS ret;
2086 if (!(ret = RtlUnicodeStringToAnsiString( &stringA, string, TRUE )))
2088 MESSAGE( "%.*s", stringA.Length, stringA.Buffer );
2089 RtlFreeAnsiString( &stringA );
2091 return ret;
2094 /******************************************************************************
2095 * NtInitiatePowerAction [NTDLL.@]
2098 NTSTATUS WINAPI NtInitiatePowerAction(
2099 IN POWER_ACTION SystemAction,
2100 IN SYSTEM_POWER_STATE MinSystemState,
2101 IN ULONG Flags,
2102 IN BOOLEAN Asynchronous)
2104 FIXME("(%d,%d,0x%08x,%d),stub\n",
2105 SystemAction,MinSystemState,Flags,Asynchronous);
2106 return STATUS_NOT_IMPLEMENTED;
2109 #ifdef linux
2110 /* Fallback using /proc/cpuinfo for Linux systems without cpufreq. For
2111 * most distributions on recent enough hardware, this is only likely to
2112 * happen while running in virtualized environments such as QEMU. */
2113 static ULONG mhz_from_cpuinfo(void)
2115 char line[512];
2116 char *s, *value;
2117 double cmz = 0;
2118 FILE* f = fopen("/proc/cpuinfo", "r");
2119 if(f) {
2120 while (fgets(line, sizeof(line), f) != NULL) {
2121 if (!(value = strchr(line,':')))
2122 continue;
2123 s = value - 1;
2124 while ((s >= line) && isspace(*s)) s--;
2125 *(s + 1) = '\0';
2126 value++;
2127 if (!strcasecmp(line, "cpu MHz")) {
2128 sscanf(value, " %lf", &cmz);
2129 break;
2132 fclose(f);
2134 return cmz;
2136 #endif
2138 /******************************************************************************
2139 * NtPowerInformation [NTDLL.@]
2142 NTSTATUS WINAPI NtPowerInformation(
2143 IN POWER_INFORMATION_LEVEL InformationLevel,
2144 IN PVOID lpInputBuffer,
2145 IN ULONG nInputBufferSize,
2146 IN PVOID lpOutputBuffer,
2147 IN ULONG nOutputBufferSize)
2149 TRACE("(%d,%p,%d,%p,%d)\n",
2150 InformationLevel,lpInputBuffer,nInputBufferSize,lpOutputBuffer,nOutputBufferSize);
2151 switch(InformationLevel) {
2152 case SystemPowerCapabilities: {
2153 PSYSTEM_POWER_CAPABILITIES PowerCaps = lpOutputBuffer;
2154 FIXME("semi-stub: SystemPowerCapabilities\n");
2155 if (nOutputBufferSize < sizeof(SYSTEM_POWER_CAPABILITIES))
2156 return STATUS_BUFFER_TOO_SMALL;
2157 /* FIXME: These values are based off a native XP desktop, should probably use APM/ACPI to get the 'real' values */
2158 PowerCaps->PowerButtonPresent = TRUE;
2159 PowerCaps->SleepButtonPresent = FALSE;
2160 PowerCaps->LidPresent = FALSE;
2161 PowerCaps->SystemS1 = TRUE;
2162 PowerCaps->SystemS2 = FALSE;
2163 PowerCaps->SystemS3 = FALSE;
2164 PowerCaps->SystemS4 = TRUE;
2165 PowerCaps->SystemS5 = TRUE;
2166 PowerCaps->HiberFilePresent = TRUE;
2167 PowerCaps->FullWake = TRUE;
2168 PowerCaps->VideoDimPresent = FALSE;
2169 PowerCaps->ApmPresent = FALSE;
2170 PowerCaps->UpsPresent = FALSE;
2171 PowerCaps->ThermalControl = FALSE;
2172 PowerCaps->ProcessorThrottle = FALSE;
2173 PowerCaps->ProcessorMinThrottle = 100;
2174 PowerCaps->ProcessorMaxThrottle = 100;
2175 PowerCaps->DiskSpinDown = TRUE;
2176 PowerCaps->SystemBatteriesPresent = FALSE;
2177 PowerCaps->BatteriesAreShortTerm = FALSE;
2178 PowerCaps->BatteryScale[0].Granularity = 0;
2179 PowerCaps->BatteryScale[0].Capacity = 0;
2180 PowerCaps->BatteryScale[1].Granularity = 0;
2181 PowerCaps->BatteryScale[1].Capacity = 0;
2182 PowerCaps->BatteryScale[2].Granularity = 0;
2183 PowerCaps->BatteryScale[2].Capacity = 0;
2184 PowerCaps->AcOnLineWake = PowerSystemUnspecified;
2185 PowerCaps->SoftLidWake = PowerSystemUnspecified;
2186 PowerCaps->RtcWake = PowerSystemSleeping1;
2187 PowerCaps->MinDeviceWakeState = PowerSystemUnspecified;
2188 PowerCaps->DefaultLowLatencyWake = PowerSystemUnspecified;
2189 return STATUS_SUCCESS;
2191 case SystemExecutionState: {
2192 PULONG ExecutionState = lpOutputBuffer;
2193 WARN("semi-stub: SystemExecutionState\n"); /* Needed for .NET Framework, but using a FIXME is really noisy. */
2194 if (lpInputBuffer != NULL)
2195 return STATUS_INVALID_PARAMETER;
2196 /* FIXME: The actual state should be the value set by SetThreadExecutionState which is not currently implemented. */
2197 *ExecutionState = ES_USER_PRESENT;
2198 return STATUS_SUCCESS;
2200 case ProcessorInformation: {
2201 const int cannedMHz = 1000; /* We fake a 1GHz processor if we can't conjure up real values */
2202 PROCESSOR_POWER_INFORMATION* cpu_power = lpOutputBuffer;
2203 int i, out_cpus;
2205 if ((lpOutputBuffer == NULL) || (nOutputBufferSize == 0))
2206 return STATUS_INVALID_PARAMETER;
2207 out_cpus = NtCurrentTeb()->Peb->NumberOfProcessors;
2208 if ((nOutputBufferSize / sizeof(PROCESSOR_POWER_INFORMATION)) < out_cpus)
2209 return STATUS_BUFFER_TOO_SMALL;
2210 #if defined(linux)
2212 char filename[128];
2213 FILE* f;
2215 for(i = 0; i < out_cpus; i++) {
2216 sprintf(filename, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_cur_freq", i);
2217 f = fopen(filename, "r");
2218 if (f && (fscanf(f, "%d", &cpu_power[i].CurrentMhz) == 1)) {
2219 cpu_power[i].CurrentMhz /= 1000;
2220 fclose(f);
2222 else {
2223 if(i == 0) {
2224 cpu_power[0].CurrentMhz = mhz_from_cpuinfo();
2225 if(cpu_power[0].CurrentMhz == 0)
2226 cpu_power[0].CurrentMhz = cannedMHz;
2228 else
2229 cpu_power[i].CurrentMhz = cpu_power[0].CurrentMhz;
2230 if(f) fclose(f);
2233 sprintf(filename, "/sys/devices/system/cpu/cpu%d/cpufreq/cpuinfo_max_freq", i);
2234 f = fopen(filename, "r");
2235 if (f && (fscanf(f, "%d", &cpu_power[i].MaxMhz) == 1)) {
2236 cpu_power[i].MaxMhz /= 1000;
2237 fclose(f);
2239 else {
2240 cpu_power[i].MaxMhz = cpu_power[i].CurrentMhz;
2241 if(f) fclose(f);
2244 sprintf(filename, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_max_freq", i);
2245 f = fopen(filename, "r");
2246 if(f && (fscanf(f, "%d", &cpu_power[i].MhzLimit) == 1)) {
2247 cpu_power[i].MhzLimit /= 1000;
2248 fclose(f);
2250 else
2252 cpu_power[i].MhzLimit = cpu_power[i].MaxMhz;
2253 if(f) fclose(f);
2256 cpu_power[i].Number = i;
2257 cpu_power[i].MaxIdleState = 0; /* FIXME */
2258 cpu_power[i].CurrentIdleState = 0; /* FIXME */
2261 #elif defined(__FreeBSD__) || defined (__FreeBSD_kernel__) || defined(__DragonFly__)
2263 int num;
2264 size_t valSize = sizeof(num);
2265 if (sysctlbyname("hw.clockrate", &num, &valSize, NULL, 0))
2266 num = cannedMHz;
2267 for(i = 0; i < out_cpus; i++) {
2268 cpu_power[i].CurrentMhz = num;
2269 cpu_power[i].MaxMhz = num;
2270 cpu_power[i].MhzLimit = num;
2271 cpu_power[i].Number = i;
2272 cpu_power[i].MaxIdleState = 0; /* FIXME */
2273 cpu_power[i].CurrentIdleState = 0; /* FIXME */
2276 #elif defined (__APPLE__)
2278 size_t valSize;
2279 unsigned long long currentMhz;
2280 unsigned long long maxMhz;
2282 valSize = sizeof(currentMhz);
2283 if (!sysctlbyname("hw.cpufrequency", &currentMhz, &valSize, NULL, 0))
2284 currentMhz /= 1000000;
2285 else
2286 currentMhz = cannedMHz;
2288 valSize = sizeof(maxMhz);
2289 if (!sysctlbyname("hw.cpufrequency_max", &maxMhz, &valSize, NULL, 0))
2290 maxMhz /= 1000000;
2291 else
2292 maxMhz = currentMhz;
2294 for(i = 0; i < out_cpus; i++) {
2295 cpu_power[i].CurrentMhz = currentMhz;
2296 cpu_power[i].MaxMhz = maxMhz;
2297 cpu_power[i].MhzLimit = maxMhz;
2298 cpu_power[i].Number = i;
2299 cpu_power[i].MaxIdleState = 0; /* FIXME */
2300 cpu_power[i].CurrentIdleState = 0; /* FIXME */
2303 #else
2304 for(i = 0; i < out_cpus; i++) {
2305 cpu_power[i].CurrentMhz = cannedMHz;
2306 cpu_power[i].MaxMhz = cannedMHz;
2307 cpu_power[i].MhzLimit = cannedMHz;
2308 cpu_power[i].Number = i;
2309 cpu_power[i].MaxIdleState = 0; /* FIXME */
2310 cpu_power[i].CurrentIdleState = 0; /* FIXME */
2312 WARN("Unable to detect CPU MHz for this platform. Reporting %d MHz.\n", cannedMHz);
2313 #endif
2314 for(i = 0; i < out_cpus; i++) {
2315 TRACE("cpu_power[%d] = %u %u %u %u %u %u\n", i, cpu_power[i].Number,
2316 cpu_power[i].MaxMhz, cpu_power[i].CurrentMhz, cpu_power[i].MhzLimit,
2317 cpu_power[i].MaxIdleState, cpu_power[i].CurrentIdleState);
2319 return STATUS_SUCCESS;
2321 default:
2322 /* FIXME: Needed by .NET Framework */
2323 WARN("Unimplemented NtPowerInformation action: %d\n", InformationLevel);
2324 return STATUS_NOT_IMPLEMENTED;
2328 /******************************************************************************
2329 * NtShutdownSystem [NTDLL.@]
2332 NTSTATUS WINAPI NtShutdownSystem(SHUTDOWN_ACTION Action)
2334 FIXME("%d\n",Action);
2335 return STATUS_SUCCESS;
2338 /******************************************************************************
2339 * NtAllocateLocallyUniqueId (NTDLL.@)
2341 NTSTATUS WINAPI NtAllocateLocallyUniqueId(PLUID Luid)
2343 NTSTATUS status;
2345 TRACE("%p\n", Luid);
2347 if (!Luid)
2348 return STATUS_ACCESS_VIOLATION;
2350 SERVER_START_REQ( allocate_locally_unique_id )
2352 status = wine_server_call( req );
2353 if (!status)
2355 Luid->LowPart = reply->luid.low_part;
2356 Luid->HighPart = reply->luid.high_part;
2359 SERVER_END_REQ;
2361 return status;
2364 /******************************************************************************
2365 * VerSetConditionMask (NTDLL.@)
2367 ULONGLONG WINAPI VerSetConditionMask( ULONGLONG dwlConditionMask, DWORD dwTypeBitMask,
2368 BYTE dwConditionMask)
2370 if(dwTypeBitMask == 0)
2371 return dwlConditionMask;
2372 dwConditionMask &= 0x07;
2373 if(dwConditionMask == 0)
2374 return dwlConditionMask;
2376 if(dwTypeBitMask & VER_PRODUCT_TYPE)
2377 dwlConditionMask |= dwConditionMask << 7*3;
2378 else if (dwTypeBitMask & VER_SUITENAME)
2379 dwlConditionMask |= dwConditionMask << 6*3;
2380 else if (dwTypeBitMask & VER_SERVICEPACKMAJOR)
2381 dwlConditionMask |= dwConditionMask << 5*3;
2382 else if (dwTypeBitMask & VER_SERVICEPACKMINOR)
2383 dwlConditionMask |= dwConditionMask << 4*3;
2384 else if (dwTypeBitMask & VER_PLATFORMID)
2385 dwlConditionMask |= dwConditionMask << 3*3;
2386 else if (dwTypeBitMask & VER_BUILDNUMBER)
2387 dwlConditionMask |= dwConditionMask << 2*3;
2388 else if (dwTypeBitMask & VER_MAJORVERSION)
2389 dwlConditionMask |= dwConditionMask << 1*3;
2390 else if (dwTypeBitMask & VER_MINORVERSION)
2391 dwlConditionMask |= dwConditionMask << 0*3;
2392 return dwlConditionMask;
2395 /******************************************************************************
2396 * NtAccessCheckAndAuditAlarm (NTDLL.@)
2397 * ZwAccessCheckAndAuditAlarm (NTDLL.@)
2399 NTSTATUS WINAPI NtAccessCheckAndAuditAlarm(PUNICODE_STRING SubsystemName, HANDLE HandleId, PUNICODE_STRING ObjectTypeName,
2400 PUNICODE_STRING ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor,
2401 ACCESS_MASK DesiredAccess, PGENERIC_MAPPING GenericMapping, BOOLEAN ObjectCreation,
2402 PACCESS_MASK GrantedAccess, PBOOLEAN AccessStatus, PBOOLEAN GenerateOnClose)
2404 FIXME("(%s, %p, %s, %p, 0x%08x, %p, %d, %p, %p, %p), stub\n", debugstr_us(SubsystemName), HandleId,
2405 debugstr_us(ObjectTypeName), SecurityDescriptor, DesiredAccess, GenericMapping, ObjectCreation,
2406 GrantedAccess, AccessStatus, GenerateOnClose);
2408 return STATUS_NOT_IMPLEMENTED;
2411 /******************************************************************************
2412 * NtSystemDebugControl (NTDLL.@)
2413 * ZwSystemDebugControl (NTDLL.@)
2415 NTSTATUS WINAPI NtSystemDebugControl(SYSDBG_COMMAND command, PVOID inbuffer, ULONG inbuflength, PVOID outbuffer,
2416 ULONG outbuflength, PULONG retlength)
2418 FIXME("(%d, %p, %d, %p, %d, %p), stub\n", command, inbuffer, inbuflength, outbuffer, outbuflength, retlength);
2420 return STATUS_NOT_IMPLEMENTED;