ntdll: Implement RtlGetProductInfo.
[wine/multimedia.git] / dlls / ntdll / version.c
blob745ee5d0410756611424b8c298eeb9d08344d846
1 /*
2 * Windows and DOS version functions
4 * Copyright 1997 Marcus Meissner
5 * Copyright 1998 Patrik Stridvall
6 * Copyright 1998, 2003 Andreas Mohr
7 * Copyright 1997, 2003 Alexandre Julliard
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 #include <string.h>
28 #include <stdlib.h>
29 #include <stdarg.h>
30 #include <stdio.h>
31 #include "ntstatus.h"
32 #define WIN32_NO_STATUS
33 #include "windef.h"
34 #include "wine/unicode.h"
35 #include "wine/debug.h"
36 #include "ntdll_misc.h"
37 #include "ddk/wdm.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(ver);
41 typedef enum
43 WIN20, /* Windows 2.0 */
44 WIN30, /* Windows 3.0 */
45 WIN31, /* Windows 3.1 */
46 WIN95, /* Windows 95 */
47 WIN98, /* Windows 98 */
48 WINME, /* Windows Me */
49 NT351, /* Windows NT 3.51 */
50 NT40, /* Windows NT 4.0 */
51 NT2K, /* Windows 2000 */
52 WINXP, /* Windows XP */
53 WIN2K3, /* Windows 2003 */
54 WINVISTA,/* Windows Vista */
55 WIN2K8, /* Windows 2008 */
56 WIN2K8R2,/* Windows 2008 R2 */
57 WIN7, /* Windows 7 */
58 NB_WINDOWS_VERSIONS
59 } WINDOWS_VERSION;
61 /* FIXME: compare values below with original and fix.
62 * An *excellent* win9x version page (ALL versions !)
63 * can be found at www.mdgx.com/ver.htm */
64 static const RTL_OSVERSIONINFOEXW VersionData[NB_WINDOWS_VERSIONS] =
66 /* WIN20 FIXME: verify values */
68 sizeof(RTL_OSVERSIONINFOEXW), 2, 0, 0, VER_PLATFORM_WIN32s,
69 {'W','i','n','3','2','s',' ','1','.','3',0},
70 0, 0, 0, 0, 0
72 /* WIN30 FIXME: verify values */
74 sizeof(RTL_OSVERSIONINFOEXW), 3, 0, 0, VER_PLATFORM_WIN32s,
75 {'W','i','n','3','2','s',' ','1','.','3',0},
76 0, 0, 0, 0, 0
78 /* WIN31 */
80 sizeof(RTL_OSVERSIONINFOEXW), 3, 10, 0, VER_PLATFORM_WIN32s,
81 {'W','i','n','3','2','s',' ','1','.','3',0},
82 0, 0, 0, 0, 0
84 /* WIN95 */
86 /* Win95: 4, 0, 0x40003B6, ""
87 * Win95sp1: 4, 0, 0x40003B6, " A " (according to doc)
88 * Win95osr2: 4, 0, 0x4000457, " B " (according to doc)
89 * Win95osr2.1: 4, 3, 0x40304BC, " B " (according to doc)
90 * Win95osr2.5: 4, 3, 0x40304BE, " C " (according to doc)
91 * Win95a/b can be discerned via regkey SubVersionNumber
93 sizeof(RTL_OSVERSIONINFOEXW), 4, 0, 0x40003B6, VER_PLATFORM_WIN32_WINDOWS,
94 {0},
95 0, 0, 0, 0, 0
97 /* WIN98 (second edition) */
99 /* Win98: 4, 10, 0x40A07CE, " " 4.10.1998
100 * Win98SE: 4, 10, 0x40A08AE, " A " 4.10.2222
102 sizeof(RTL_OSVERSIONINFOEXW), 4, 10, 0x40A08AE, VER_PLATFORM_WIN32_WINDOWS,
103 {' ','A',' ',0},
104 0, 0, 0, 0, 0
106 /* WINME */
108 sizeof(RTL_OSVERSIONINFOEXW), 4, 90, 0x45A0BB8, VER_PLATFORM_WIN32_WINDOWS,
109 {' ',0},
110 0, 0, 0, 0, 0
112 /* NT351 */
114 sizeof(RTL_OSVERSIONINFOEXW), 3, 51, 0x421, VER_PLATFORM_WIN32_NT,
115 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','5',0},
116 5, 0, 0, VER_NT_WORKSTATION, 0
118 /* NT40 */
120 sizeof(RTL_OSVERSIONINFOEXW), 4, 0, 0x565, VER_PLATFORM_WIN32_NT,
121 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','6','a',0},
122 6, 0, 0, VER_NT_WORKSTATION, 0
124 /* NT2K */
126 sizeof(RTL_OSVERSIONINFOEXW), 5, 0, 0x893, VER_PLATFORM_WIN32_NT,
127 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','4',0},
128 4, 0, 0, VER_NT_WORKSTATION, 30 /* FIXME: Great, a reserved field with a value! */
130 /* WINXP */
132 sizeof(RTL_OSVERSIONINFOEXW), 5, 1, 0xA28, VER_PLATFORM_WIN32_NT,
133 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','3',0},
134 3, 0, VER_SUITE_SINGLEUSERTS, VER_NT_WORKSTATION, 30 /* FIXME: Great, a reserved field with a value! */
136 /* WIN2K3 */
138 sizeof(RTL_OSVERSIONINFOEXW), 5, 2, 0xECE, VER_PLATFORM_WIN32_NT,
139 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','2',0},
140 2, 0, VER_SUITE_SINGLEUSERTS, VER_NT_SERVER, 0
142 /* WINVISTA */
144 sizeof(RTL_OSVERSIONINFOEXW), 6, 0, 0x1772, VER_PLATFORM_WIN32_NT,
145 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','2',0},
146 2, 0, VER_SUITE_SINGLEUSERTS, VER_NT_WORKSTATION, 0
148 /* WIN2K8 */
150 sizeof(RTL_OSVERSIONINFOEXW), 6, 0, 0x1772, VER_PLATFORM_WIN32_NT,
151 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','2',0},
152 2, 0, VER_SUITE_SINGLEUSERTS, VER_NT_SERVER, 0
154 /* WIN7 */
156 sizeof(RTL_OSVERSIONINFOEXW), 6, 1, 0x1DB1, VER_PLATFORM_WIN32_NT,
157 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','1',0},
158 1, 0, VER_SUITE_SINGLEUSERTS, VER_NT_WORKSTATION, 0
160 /* WIN2K8R2 */
162 sizeof(RTL_OSVERSIONINFOEXW), 6, 1, 0x1DB1, VER_PLATFORM_WIN32_NT,
163 {'S','e','r','v','i','c','e',' ','P','a','c','k',' ','1',0},
164 1, 0, VER_SUITE_SINGLEUSERTS, VER_NT_SERVER, 0
169 static const char * const WinVersionNames[NB_WINDOWS_VERSIONS] =
170 { /* no spaces in here ! */
171 "win20", /* WIN20 */
172 "win30", /* WIN30 */
173 "win31", /* WIN31 */
174 "win95", /* WIN95 */
175 "win98", /* WIN98 */
176 "winme", /* WINME */
177 "nt351", /* NT351 */
178 "nt40", /* NT40 */
179 "win2000,win2k,nt2k,nt2000", /* NT2K */
180 "winxp", /* WINXP */
181 "win2003,win2k3", /* WIN2K3 */
182 "vista,winvista", /* WINVISTA*/
183 "win2008,win2k8", /* WIN2K8 */
184 "win2008r2,win2k8r2", /* WIN2K8R2 */
185 "win7", /* WIN7 */
189 /* initialized to null so that we crash if we try to retrieve the version too early at startup */
190 static const RTL_OSVERSIONINFOEXW *current_version;
193 /**********************************************************************
194 * get_nt_registry_version
196 * Fetch the version information from the NT-style registry keys.
198 static BOOL get_nt_registry_version( RTL_OSVERSIONINFOEXW *version )
200 static const WCHAR version_keyW[] = {'M','a','c','h','i','n','e','\\',
201 'S','o','f','t','w','a','r','e','\\',
202 'M','i','c','r','o','s','o','f','t','\\',
203 'W','i','n','d','o','w','s',' ','N','T','\\',
204 'C','u','r','r','e','n','t','V','e','r','s','i','o','n',0};
205 static const WCHAR service_pack_keyW[] = {'M','a','c','h','i','n','e','\\',
206 'S','y','s','t','e','m','\\',
207 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
208 'C','o','n','t','r','o','l','\\',
209 'W','i','n','d','o','w','s',0};
210 static const WCHAR product_keyW[] = {'M','a','c','h','i','n','e','\\',
211 'S','y','s','t','e','m','\\',
212 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
213 'C','o','n','t','r','o','l','\\',
214 'P','r','o','d','u','c','t','O','p','t','i','o','n','s',0};
215 static const WCHAR CurrentBuildNumberW[] = {'C','u','r','r','e','n','t','B','u','i','l','d','N','u','m','b','e','r',0};
216 static const WCHAR CSDVersionW[] = {'C','S','D','V','e','r','s','i','o','n',0};
217 static const WCHAR CurrentVersionW[] = {'C','u','r','r','e','n','t','V','e','r','s','i','o','n',0};
218 static const WCHAR ProductTypeW[] = {'P','r','o','d','u','c','t','T','y','p','e',0};
219 static const WCHAR WinNTW[] = {'W','i','n','N','T',0};
220 static const WCHAR ServerNTW[] = {'S','e','r','v','e','r','N','T',0};
221 static const WCHAR LanmanNTW[] = {'L','a','n','m','a','n','N','T',0};
223 OBJECT_ATTRIBUTES attr;
224 UNICODE_STRING nameW, valueW;
225 HANDLE hkey, hkey2;
226 char tmp[64];
227 DWORD count;
228 BOOL ret = FALSE;
229 KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)tmp;
231 attr.Length = sizeof(attr);
232 attr.RootDirectory = 0;
233 attr.ObjectName = &nameW;
234 attr.Attributes = 0;
235 attr.SecurityDescriptor = NULL;
236 attr.SecurityQualityOfService = NULL;
237 RtlInitUnicodeString( &nameW, version_keyW );
239 if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr )) return FALSE;
241 memset( version, 0, sizeof(*version) );
243 RtlInitUnicodeString( &valueW, CurrentVersionW );
244 if (!NtQueryValueKey( hkey, &valueW, KeyValuePartialInformation, tmp, sizeof(tmp)-1, &count ))
246 WCHAR *p, *str = (WCHAR *)info->Data;
247 str[info->DataLength / sizeof(WCHAR)] = 0;
248 p = strchrW( str, '.' );
249 if (p)
251 *p++ = 0;
252 version->dwMinorVersion = atoiW( p );
254 version->dwMajorVersion = atoiW( str );
257 if (version->dwMajorVersion) /* we got the main version, now fetch the other fields */
259 ret = TRUE;
260 version->dwPlatformId = VER_PLATFORM_WIN32_NT;
262 /* get build number */
264 RtlInitUnicodeString( &valueW, CurrentBuildNumberW );
265 if (!NtQueryValueKey( hkey, &valueW, KeyValuePartialInformation, tmp, sizeof(tmp)-1, &count ))
267 WCHAR *str = (WCHAR *)info->Data;
268 str[info->DataLength / sizeof(WCHAR)] = 0;
269 version->dwBuildNumber = atoiW( str );
272 /* get version description */
274 RtlInitUnicodeString( &valueW, CSDVersionW );
275 if (!NtQueryValueKey( hkey, &valueW, KeyValuePartialInformation, tmp, sizeof(tmp)-1, &count ))
277 DWORD len = min( info->DataLength, sizeof(version->szCSDVersion) - sizeof(WCHAR) );
278 memcpy( version->szCSDVersion, info->Data, len );
279 version->szCSDVersion[len / sizeof(WCHAR)] = 0;
282 /* get service pack version */
284 RtlInitUnicodeString( &nameW, service_pack_keyW );
285 if (!NtOpenKey( &hkey2, KEY_ALL_ACCESS, &attr ))
287 RtlInitUnicodeString( &valueW, CSDVersionW );
288 if (!NtQueryValueKey( hkey2, &valueW, KeyValuePartialInformation, tmp, sizeof(tmp), &count ))
290 if (info->DataLength >= sizeof(DWORD))
292 DWORD dw = *(DWORD *)info->Data;
293 version->wServicePackMajor = LOWORD(dw) >> 8;
294 version->wServicePackMinor = LOWORD(dw) & 0xff;
297 NtClose( hkey2 );
300 /* get product type */
302 RtlInitUnicodeString( &nameW, product_keyW );
303 if (!NtOpenKey( &hkey2, KEY_ALL_ACCESS, &attr ))
305 RtlInitUnicodeString( &valueW, ProductTypeW );
306 if (!NtQueryValueKey( hkey2, &valueW, KeyValuePartialInformation, tmp, sizeof(tmp)-1, &count ))
308 WCHAR *str = (WCHAR *)info->Data;
309 str[info->DataLength / sizeof(WCHAR)] = 0;
310 if (!strcmpiW( str, WinNTW )) version->wProductType = VER_NT_WORKSTATION;
311 else if (!strcmpiW( str, LanmanNTW )) version->wProductType = VER_NT_DOMAIN_CONTROLLER;
312 else if (!strcmpiW( str, ServerNTW )) version->wProductType = VER_NT_SERVER;
314 NtClose( hkey2 );
317 /* FIXME: get wSuiteMask */
320 NtClose( hkey );
321 return ret;
325 /**********************************************************************
326 * get_win9x_registry_version
328 * Fetch the version information from the Win9x-style registry keys.
330 static BOOL get_win9x_registry_version( RTL_OSVERSIONINFOEXW *version )
332 static const WCHAR version_keyW[] = {'M','a','c','h','i','n','e','\\',
333 'S','o','f','t','w','a','r','e','\\',
334 'M','i','c','r','o','s','o','f','t','\\',
335 'W','i','n','d','o','w','s','\\',
336 'C','u','r','r','e','n','t','V','e','r','s','i','o','n',0};
337 static const WCHAR VersionNumberW[] = {'V','e','r','s','i','o','n','N','u','m','b','e','r',0};
338 static const WCHAR SubVersionNumberW[] = {'S','u','b','V','e','r','s','i','o','n','N','u','m','b','e','r',0};
340 OBJECT_ATTRIBUTES attr;
341 UNICODE_STRING nameW, valueW;
342 HANDLE hkey;
343 char tmp[64];
344 DWORD count;
345 BOOL ret = FALSE;
346 KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)tmp;
348 attr.Length = sizeof(attr);
349 attr.RootDirectory = 0;
350 attr.ObjectName = &nameW;
351 attr.Attributes = 0;
352 attr.SecurityDescriptor = NULL;
353 attr.SecurityQualityOfService = NULL;
354 RtlInitUnicodeString( &nameW, version_keyW );
356 if (NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr )) return FALSE;
358 memset( version, 0, sizeof(*version) );
360 RtlInitUnicodeString( &valueW, VersionNumberW );
361 if (!NtQueryValueKey( hkey, &valueW, KeyValuePartialInformation, tmp, sizeof(tmp)-1, &count ))
363 WCHAR *p, *str = (WCHAR *)info->Data;
364 str[info->DataLength / sizeof(WCHAR)] = 0;
365 p = strchrW( str, '.' );
366 if (p) *p++ = 0;
367 version->dwMajorVersion = atoiW( str );
368 if (p)
370 str = p;
371 p = strchrW( str, '.' );
372 if (p)
374 *p++ = 0;
375 version->dwBuildNumber = atoiW( p );
377 version->dwMinorVersion = atoiW( str );
379 /* build number contains version too on Win9x */
380 version->dwBuildNumber |= MAKEWORD( version->dwMinorVersion, version->dwMajorVersion ) << 16;
383 if (version->dwMajorVersion) /* we got the main version, now fetch the other fields */
385 ret = TRUE;
386 version->dwPlatformId = VER_PLATFORM_WIN32_WINDOWS;
388 RtlInitUnicodeString( &valueW, SubVersionNumberW );
389 if (!NtQueryValueKey( hkey, &valueW, KeyValuePartialInformation, tmp, sizeof(tmp)-1, &count ))
391 DWORD len = min( info->DataLength, sizeof(version->szCSDVersion) - sizeof(WCHAR) );
392 memcpy( version->szCSDVersion, info->Data, len );
393 version->szCSDVersion[len / sizeof(WCHAR)] = 0;
397 NtClose( hkey );
398 return ret;
402 /**********************************************************************
403 * parse_win_version
405 * Parse the contents of the Version key.
407 static BOOL parse_win_version( HANDLE hkey )
409 static const WCHAR VersionW[] = {'V','e','r','s','i','o','n',0};
411 UNICODE_STRING valueW;
412 char tmp[64], buffer[50];
413 KEY_VALUE_PARTIAL_INFORMATION *info = (KEY_VALUE_PARTIAL_INFORMATION *)tmp;
414 DWORD count, len;
415 int i;
417 RtlInitUnicodeString( &valueW, VersionW );
418 if (NtQueryValueKey( hkey, &valueW, KeyValuePartialInformation, tmp, sizeof(tmp), &count ))
419 return FALSE;
421 RtlUnicodeToMultiByteN( buffer, sizeof(buffer)-1, &len, (WCHAR *)info->Data, info->DataLength );
422 buffer[len] = 0;
424 for (i = 0; i < NB_WINDOWS_VERSIONS; i++)
426 const char *p, *pCurr = WinVersionNames[i];
427 /* iterate through all winver aliases separated by comma */
428 do {
429 p = strchr(pCurr, ',');
430 len = p ? p - pCurr : strlen(pCurr);
431 if ( (!strncmp( pCurr, buffer, len )) && (buffer[len] == 0) )
433 current_version = &VersionData[i];
434 TRACE( "got win version %s\n", WinVersionNames[i] );
435 return TRUE;
437 pCurr = p+1;
438 } while (p);
441 MESSAGE("Invalid Windows version value '%s' specified in config file.\n", buffer );
442 MESSAGE("Valid versions are:" );
443 for (i = 0; i < NB_WINDOWS_VERSIONS; i++)
445 /* only list the first, "official" alias in case of aliases */
446 const char *pCurr = WinVersionNames[i];
447 const char *p = strchr(pCurr, ',');
448 len = (p) ? p - pCurr : strlen(pCurr);
450 MESSAGE(" '%.*s'%c", (int)len, pCurr, (i == NB_WINDOWS_VERSIONS - 1) ? '\n' : ',' );
452 return FALSE;
456 /**********************************************************************
457 * version_init
459 void version_init( const WCHAR *appname )
461 static const WCHAR configW[] = {'S','o','f','t','w','a','r','e','\\','W','i','n','e',0};
462 static const WCHAR appdefaultsW[] = {'A','p','p','D','e','f','a','u','l','t','s','\\',0};
464 OBJECT_ATTRIBUTES attr;
465 UNICODE_STRING nameW;
466 HANDLE root, hkey, config_key;
467 BOOL got_win_ver = FALSE;
469 current_version = &VersionData[WINXP]; /* default if nothing else is specified */
471 RtlOpenCurrentUser( KEY_ALL_ACCESS, &root );
472 attr.Length = sizeof(attr);
473 attr.RootDirectory = root;
474 attr.ObjectName = &nameW;
475 attr.Attributes = 0;
476 attr.SecurityDescriptor = NULL;
477 attr.SecurityQualityOfService = NULL;
478 RtlInitUnicodeString( &nameW, configW );
480 /* @@ Wine registry key: HKCU\Software\Wine */
481 if (NtOpenKey( &config_key, KEY_ALL_ACCESS, &attr )) config_key = 0;
482 NtClose( root );
483 if (!config_key) goto done;
485 /* open AppDefaults\\appname key */
486 if (appname && *appname)
488 const WCHAR *p;
489 WCHAR appversion[MAX_PATH+20];
491 if ((p = strrchrW( appname, '/' ))) appname = p + 1;
492 if ((p = strrchrW( appname, '\\' ))) appname = p + 1;
494 strcpyW( appversion, appdefaultsW );
495 strcatW( appversion, appname );
496 RtlInitUnicodeString( &nameW, appversion );
497 attr.RootDirectory = config_key;
499 /* @@ Wine registry key: HKCU\Software\Wine\AppDefaults\app.exe */
500 if (!NtOpenKey( &hkey, KEY_ALL_ACCESS, &attr ))
502 TRACE( "getting version from %s\n", debugstr_w(appversion) );
503 got_win_ver = parse_win_version( hkey );
504 NtClose( hkey );
508 if (!got_win_ver)
510 TRACE( "getting default version\n" );
511 got_win_ver = parse_win_version( config_key );
513 NtClose( config_key );
515 done:
516 if (!got_win_ver)
518 static RTL_OSVERSIONINFOEXW registry_version;
520 TRACE( "getting registry version\n" );
521 if (get_nt_registry_version( &registry_version ) ||
522 get_win9x_registry_version( &registry_version ))
523 current_version = &registry_version;
527 NtCurrentTeb()->Peb->OSMajorVersion = current_version->dwMajorVersion;
528 NtCurrentTeb()->Peb->OSMinorVersion = current_version->dwMinorVersion;
529 NtCurrentTeb()->Peb->OSBuildNumber = current_version->dwBuildNumber;
530 NtCurrentTeb()->Peb->OSPlatformId = current_version->dwPlatformId;
532 user_shared_data->NtProductType = current_version->wProductType;
533 user_shared_data->ProductTypeIsValid = TRUE;
534 user_shared_data->NtMajorVersion = current_version->dwMajorVersion;
535 user_shared_data->NtMinorVersion = current_version->dwMinorVersion;
536 user_shared_data->SuiteMask = current_version->wSuiteMask;
538 TRACE( "got %d.%d platform %d build %x name %s service pack %d.%d product %d\n",
539 current_version->dwMajorVersion, current_version->dwMinorVersion,
540 current_version->dwPlatformId, current_version->dwBuildNumber,
541 debugstr_w(current_version->szCSDVersion),
542 current_version->wServicePackMajor, current_version->wServicePackMinor,
543 current_version->wProductType );
546 /***********************************************************************
547 * RtlGetProductInfo (NTDLL.@)
549 * Gives info about the current Windows product type, in a format compatible
550 * with the given Windows version
552 * Returns TRUE if the input is valid, FALSE otherwise
554 BOOLEAN WINAPI RtlGetProductInfo(DWORD dwOSMajorVersion, DWORD dwOSMinorVersion, DWORD dwSpMajorVersion,
555 DWORD dwSpMinorVersion, PDWORD pdwReturnedProductType)
557 TRACE("(%d, %d, %d, %d, %p)\n", dwOSMajorVersion, dwOSMinorVersion,
558 dwSpMajorVersion, dwSpMinorVersion, pdwReturnedProductType);
560 if (!pdwReturnedProductType)
561 return FALSE;
563 if (dwOSMajorVersion < 6)
565 *pdwReturnedProductType = PRODUCT_UNDEFINED;
566 return FALSE;
569 if (current_version->wProductType == VER_NT_WORKSTATION)
570 *pdwReturnedProductType = PRODUCT_ULTIMATE_N;
571 else
572 *pdwReturnedProductType = PRODUCT_STANDARD_SERVER;
574 return TRUE;
577 /***********************************************************************
578 * RtlGetVersion (NTDLL.@)
580 NTSTATUS WINAPI RtlGetVersion( RTL_OSVERSIONINFOEXW *info )
582 info->dwMajorVersion = current_version->dwMajorVersion;
583 info->dwMinorVersion = current_version->dwMinorVersion;
584 info->dwBuildNumber = current_version->dwBuildNumber;
585 info->dwPlatformId = current_version->dwPlatformId;
586 strcpyW( info->szCSDVersion, current_version->szCSDVersion );
587 if(info->dwOSVersionInfoSize == sizeof(RTL_OSVERSIONINFOEXW))
589 info->wServicePackMajor = current_version->wServicePackMajor;
590 info->wServicePackMinor = current_version->wServicePackMinor;
591 info->wSuiteMask = current_version->wSuiteMask;
592 info->wProductType = current_version->wProductType;
594 return STATUS_SUCCESS;
598 /******************************************************************************
599 * RtlGetNtVersionNumbers (NTDLL.@)
601 * Get the version numbers of the run time library.
603 * PARAMS
604 * major [O] Destination for the Major version
605 * minor [O] Destination for the Minor version
606 * build [O] Destination for the Build version
608 * RETURNS
609 * Nothing.
611 * NOTES
612 * Introduced in Windows XP (NT5.1)
614 void WINAPI RtlGetNtVersionNumbers( LPDWORD major, LPDWORD minor, LPDWORD build )
616 if (major) *major = current_version->dwMajorVersion;
617 if (minor) *minor = current_version->dwMinorVersion;
618 /* FIXME: Does anybody know the real formula? */
619 if (build) *build = (0xF0000000 | current_version->dwBuildNumber);
623 /******************************************************************************
624 * RtlGetNtProductType (NTDLL.@)
626 BOOLEAN WINAPI RtlGetNtProductType( LPDWORD type )
628 if (type) *type = current_version->wProductType;
629 return TRUE;
633 static inline NTSTATUS version_compare_values(ULONG left, ULONG right, UCHAR condition)
635 switch (condition) {
636 case VER_EQUAL:
637 if (left != right) return STATUS_REVISION_MISMATCH;
638 break;
639 case VER_GREATER:
640 if (left <= right) return STATUS_REVISION_MISMATCH;
641 break;
642 case VER_GREATER_EQUAL:
643 if (left < right) return STATUS_REVISION_MISMATCH;
644 break;
645 case VER_LESS:
646 if (left >= right) return STATUS_REVISION_MISMATCH;
647 break;
648 case VER_LESS_EQUAL:
649 if (left > right) return STATUS_REVISION_MISMATCH;
650 break;
651 default:
652 return STATUS_REVISION_MISMATCH;
654 return STATUS_SUCCESS;
657 /******************************************************************************
658 * RtlVerifyVersionInfo (NTDLL.@)
660 NTSTATUS WINAPI RtlVerifyVersionInfo( const RTL_OSVERSIONINFOEXW *info,
661 DWORD dwTypeMask, DWORDLONG dwlConditionMask )
663 RTL_OSVERSIONINFOEXW ver;
664 NTSTATUS status;
666 TRACE("(%p,0x%x,0x%s)\n", info, dwTypeMask, wine_dbgstr_longlong(dwlConditionMask));
668 ver.dwOSVersionInfoSize = sizeof(ver);
669 if ((status = RtlGetVersion( &ver )) != STATUS_SUCCESS) return status;
671 if(!(dwTypeMask && dwlConditionMask)) return STATUS_INVALID_PARAMETER;
673 if(dwTypeMask & VER_PRODUCT_TYPE)
675 status = version_compare_values(ver.wProductType, info->wProductType, dwlConditionMask >> 7*3 & 0x07);
676 if (status != STATUS_SUCCESS)
677 return status;
679 if(dwTypeMask & VER_SUITENAME)
680 switch(dwlConditionMask >> 6*3 & 0x07)
682 case VER_AND:
683 if((info->wSuiteMask & ver.wSuiteMask) != info->wSuiteMask)
684 return STATUS_REVISION_MISMATCH;
685 break;
686 case VER_OR:
687 if(!(info->wSuiteMask & ver.wSuiteMask) && info->wSuiteMask)
688 return STATUS_REVISION_MISMATCH;
689 break;
690 default:
691 return STATUS_INVALID_PARAMETER;
693 if(dwTypeMask & VER_PLATFORMID)
695 status = version_compare_values(ver.dwPlatformId, info->dwPlatformId, dwlConditionMask >> 3*3 & 0x07);
696 if (status != STATUS_SUCCESS)
697 return status;
699 if(dwTypeMask & VER_BUILDNUMBER)
701 status = version_compare_values(ver.dwBuildNumber, info->dwBuildNumber, dwlConditionMask >> 2*3 & 0x07);
702 if (status != STATUS_SUCCESS)
703 return status;
706 if(dwTypeMask & (VER_MAJORVERSION|VER_MINORVERSION|VER_SERVICEPACKMAJOR|VER_SERVICEPACKMINOR))
708 unsigned char condition = 0;
709 BOOLEAN do_next_check = TRUE;
711 if(dwTypeMask & VER_MAJORVERSION)
712 condition = dwlConditionMask >> 1*3 & 0x07;
713 else if(dwTypeMask & VER_MINORVERSION)
714 condition = dwlConditionMask >> 0*3 & 0x07;
715 else if(dwTypeMask & VER_SERVICEPACKMAJOR)
716 condition = dwlConditionMask >> 5*3 & 0x07;
717 else if(dwTypeMask & VER_SERVICEPACKMINOR)
718 condition = dwlConditionMask >> 4*3 & 0x07;
720 if(dwTypeMask & VER_MAJORVERSION)
722 status = version_compare_values(ver.dwMajorVersion, info->dwMajorVersion, condition);
723 do_next_check = (ver.dwMajorVersion == info->dwMajorVersion) &&
724 ((condition != VER_EQUAL) || (status == STATUS_SUCCESS));
726 if((dwTypeMask & VER_MINORVERSION) && do_next_check)
728 status = version_compare_values(ver.dwMinorVersion, info->dwMinorVersion, condition);
729 do_next_check = (ver.dwMinorVersion == info->dwMinorVersion) &&
730 ((condition != VER_EQUAL) || (status == STATUS_SUCCESS));
732 if((dwTypeMask & VER_SERVICEPACKMAJOR) && do_next_check)
734 status = version_compare_values(ver.wServicePackMajor, info->wServicePackMajor, condition);
735 do_next_check = (ver.wServicePackMajor == info->wServicePackMajor) &&
736 ((condition != VER_EQUAL) || (status == STATUS_SUCCESS));
738 if((dwTypeMask & VER_SERVICEPACKMINOR) && do_next_check)
740 status = version_compare_values(ver.wServicePackMinor, info->wServicePackMinor, condition);
743 if (status != STATUS_SUCCESS)
744 return status;
747 return STATUS_SUCCESS;