1 /*
   2  * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /* Access APIs for Windows Vista and above */
  27 #ifndef _WIN32_WINNT
  28 #define _WIN32_WINNT 0x0601
  29 #endif
  30 
  31 #include "jni.h"
  32 #include "jni_util.h"
  33 
  34 #include <windows.h>
  35 #include <shlobj.h>
  36 #include <objidl.h>
  37 #include <locale.h>
  38 #include <sys/types.h>
  39 #include <sys/timeb.h>
  40 #include <tchar.h>
  41 
  42 #include <stdlib.h>
  43 #include <Wincon.h>
  44 
  45 #include "locale_str.h"
  46 #include "java_props.h"
  47 
  48 #ifndef VER_PLATFORM_WIN32_WINDOWS
  49 #define VER_PLATFORM_WIN32_WINDOWS 1
  50 #endif
  51 
  52 #ifndef PROCESSOR_ARCHITECTURE_AMD64
  53 #define PROCESSOR_ARCHITECTURE_AMD64 9
  54 #endif
  55 
  56 typedef void (WINAPI *PGNSI)(LPSYSTEM_INFO);
  57 static boolean SetupI18nProps(LCID lcid, char** language, char** script, char** country,
  58                char** variant, char** encoding);
  59 
  60 #define PROPSIZE 9      // eight-letter + null terminator
  61 #define SNAMESIZE 86    // max number of chars for LOCALE_SNAME is 85
  62 
  63 static char *
  64 getEncodingInternal(LCID lcid)
  65 {
  66     int codepage;
  67     char * ret = malloc(16);
  68     if (ret == NULL) {
  69         return NULL;
  70     }
  71 
  72     if (GetLocaleInfo(lcid,
  73                       LOCALE_IDEFAULTANSICODEPAGE,
  74                       ret+2, 14) == 0) {
  75         codepage = 1252;
  76     } else {
  77         codepage = atoi(ret+2);
  78     }
  79 
  80     switch (codepage) {
  81     case 0:
  82         strcpy(ret, "UTF-8");
  83         break;
  84     case 874:     /*  9:Thai     */
  85     case 932:     /* 10:Japanese */
  86     case 949:     /* 12:Korean Extended Wansung */
  87     case 950:     /* 13:Chinese (Taiwan, Hongkong, Macau) */
  88     case 1361:    /* 15:Korean Johab */
  89         ret[0] = 'M';
  90         ret[1] = 'S';
  91         break;
  92     case 936:
  93         strcpy(ret, "GBK");
  94         break;
  95     case 54936:
  96         strcpy(ret, "GB18030");
  97         break;
  98     default:
  99         ret[0] = 'C';
 100         ret[1] = 'p';
 101         break;
 102     }
 103 
 104     //Traditional Chinese Windows should use MS950_HKSCS_XP as the
 105     //default encoding, if HKSCS patch has been installed.
 106     // "old" MS950 0xfa41 -> u+e001
 107     // "new" MS950 0xfa41 -> u+92db
 108     if (strcmp(ret, "MS950") == 0) {
 109         TCHAR  mbChar[2] = {(char)0xfa, (char)0x41};
 110         WCHAR  unicodeChar;
 111         MultiByteToWideChar(CP_ACP, 0, mbChar, 2, &unicodeChar, 1);
 112         if (unicodeChar == 0x92db) {
 113             strcpy(ret, "MS950_HKSCS_XP");
 114         }
 115     } else {
 116         //SimpChinese Windows should use GB18030 as the default
 117         //encoding, if gb18030 patch has been installed (on windows
 118         //2000/XP, (1)Codepage 54936 will be available
 119         //(2)simsun18030.ttc will exist under system fonts dir )
 120         if (strcmp(ret, "GBK") == 0 && IsValidCodePage(54936)) {
 121             char systemPath[MAX_PATH + 1];
 122             char* gb18030Font = "\\FONTS\\SimSun18030.ttc";
 123             FILE *f = NULL;
 124             if (GetWindowsDirectory(systemPath, MAX_PATH + 1) != 0 &&
 125                 strlen(systemPath) + strlen(gb18030Font) < MAX_PATH + 1) {
 126                 strcat(systemPath, "\\FONTS\\SimSun18030.ttc");
 127                 if ((f = fopen(systemPath, "r")) != NULL) {
 128                     fclose(f);
 129                     strcpy(ret, "GB18030");
 130                 }
 131             }
 132         }
 133     }
 134 
 135     return ret;
 136 }
 137 
 138 static char* getConsoleEncoding()
 139 {
 140     char* buf = malloc(16);
 141     int cp;
 142     if (buf == NULL) {
 143         return NULL;
 144     }
 145     cp = GetConsoleCP();
 146     if (cp >= 874 && cp <= 950)
 147         sprintf(buf, "ms%d", cp);
 148     else
 149         sprintf(buf, "cp%d", cp);
 150     return buf;
 151 }
 152 
 153 // Exported entries for AWT
 154 DllExport const char *
 155 getEncodingFromLangID(LANGID langID)
 156 {
 157     return getEncodingInternal(MAKELCID(langID, SORT_DEFAULT));
 158 }
 159 
 160 // Returns BCP47 Language Tag
 161 DllExport const char *
 162 getJavaIDFromLangID(LANGID langID)
 163 {
 164     char * elems[5]; // lang, script, ctry, variant, encoding
 165     char * ret;
 166     int index;
 167 
 168     ret = malloc(SNAMESIZE);
 169     if (ret == NULL) {
 170         return NULL;
 171     }
 172 
 173     for (index = 0; index < 5; index++) {
 174         elems[index] = NULL;
 175     }
 176 
 177     if (SetupI18nProps(MAKELCID(langID, SORT_DEFAULT),
 178                    &(elems[0]), &(elems[1]), &(elems[2]), &(elems[3]), &(elems[4]))) {
 179 
 180         // there always is the "language" tag
 181         strcpy(ret, elems[0]);
 182 
 183         // append other elements, if any
 184         for (index = 1; index < 4; index++) {
 185             if ((elems[index])[0] != '\0') {
 186                 strcat(ret, "-");
 187                 strcat(ret, elems[index]);
 188             }
 189         }
 190     } else {
 191         free(ret);
 192         ret = NULL;
 193     }
 194 
 195     for (index = 0; index < 5; index++) {
 196         if (elems[index] != NULL) {
 197             free(elems[index]);
 198         }
 199     }
 200 
 201     return ret;
 202 }
 203 
 204 /*
 205  * Code to figure out the user's home directory using shell32.dll
 206  */
 207 WCHAR*
 208 getHomeFromShell32()
 209 {
 210     /*
 211      * Note that we don't free the memory allocated
 212      * by getHomeFromShell32.
 213      */
 214     static WCHAR *u_path = NULL;
 215     if (u_path == NULL) {
 216         HRESULT hr;
 217 
 218         /*
 219          * SHELL32 DLL is delay load DLL and we can use the trick with
 220          * __try/__except block.
 221          */
 222         __try {
 223             /*
 224              * For Windows Vista and later (or patched MS OS) we need to use
 225              * [SHGetKnownFolderPath] call to avoid MAX_PATH length limitation.
 226              * Shell32.dll (version 6.0.6000 or later)
 227              */
 228             hr = SHGetKnownFolderPath(&FOLDERID_Profile, KF_FLAG_DONT_VERIFY, NULL, &u_path);
 229         } __except(EXCEPTION_EXECUTE_HANDLER) {
 230             /* Exception: no [SHGetKnownFolderPath] entry */
 231             hr = E_FAIL;
 232         }
 233 
 234         if (FAILED(hr)) {
 235             WCHAR path[MAX_PATH+1];
 236 
 237             /* fallback solution for WinXP and Windows 2000 */
 238             hr = SHGetFolderPathW(NULL, CSIDL_FLAG_DONT_VERIFY | CSIDL_PROFILE, NULL, SHGFP_TYPE_CURRENT, path);
 239             if (FAILED(hr)) {
 240                 /* we can't find the shell folder. */
 241                 u_path = NULL;
 242             } else {
 243                 /* Just to be sure about the path length until Windows Vista approach.
 244                  * [S_FALSE] could not be returned due to [CSIDL_FLAG_DONT_VERIFY] flag and UNICODE version.
 245                  */
 246                 path[MAX_PATH] = 0;
 247                 u_path = _wcsdup(path);
 248             }
 249         }
 250     }
 251     return u_path;
 252 }
 253 
 254 static boolean
 255 haveMMX(void)
 256 {
 257     return IsProcessorFeaturePresent(PF_MMX_INSTRUCTIONS_AVAILABLE);
 258 }
 259 
 260 static const char *
 261 cpu_isalist(void)
 262 {
 263     SYSTEM_INFO info;
 264     GetSystemInfo(&info);
 265     switch (info.wProcessorArchitecture) {
 266 #ifdef PROCESSOR_ARCHITECTURE_IA64
 267     case PROCESSOR_ARCHITECTURE_IA64: return "ia64";
 268 #endif
 269 #ifdef PROCESSOR_ARCHITECTURE_AMD64
 270     case PROCESSOR_ARCHITECTURE_AMD64: return "amd64";
 271 #endif
 272     case PROCESSOR_ARCHITECTURE_INTEL:
 273         switch (info.wProcessorLevel) {
 274         case 6: return haveMMX()
 275             ? "pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86"
 276             : "pentium_pro pentium i486 i386 i86";
 277         case 5: return haveMMX()
 278             ? "pentium+mmx pentium i486 i386 i86"
 279             : "pentium i486 i386 i86";
 280         case 4: return "i486 i386 i86";
 281         case 3: return "i386 i86";
 282         }
 283     }
 284     return NULL;
 285 }
 286 
 287 static boolean
 288 SetupI18nProps(LCID lcid, char** language, char** script, char** country,
 289                char** variant, char** encoding) {
 290     /* script */
 291     char tmp[SNAMESIZE];
 292     *script = malloc(PROPSIZE);
 293     if (*script == NULL) {
 294         return FALSE;
 295     }
 296     if (GetLocaleInfo(lcid,
 297                       LOCALE_SNAME, tmp, SNAMESIZE) == 0 ||
 298         sscanf(tmp, "%*[a-z\\-]%1[A-Z]%[a-z]", *script, &((*script)[1])) == 0 ||
 299         strlen(*script) != 4) {
 300         (*script)[0] = '\0';
 301     }
 302 
 303     /* country */
 304     *country = malloc(PROPSIZE);
 305     if (*country == NULL) {
 306         return FALSE;
 307     }
 308     if (GetLocaleInfo(lcid,
 309                       LOCALE_SISO3166CTRYNAME, *country, PROPSIZE) == 0 &&
 310         GetLocaleInfo(lcid,
 311                       LOCALE_SISO3166CTRYNAME2, *country, PROPSIZE) == 0) {
 312         (*country)[0] = '\0';
 313     }
 314 
 315     /* language */
 316     *language = malloc(PROPSIZE);
 317     if (*language == NULL) {
 318         return FALSE;
 319     }
 320     if (GetLocaleInfo(lcid,
 321                       LOCALE_SISO639LANGNAME, *language, PROPSIZE) == 0 &&
 322         GetLocaleInfo(lcid,
 323                       LOCALE_SISO639LANGNAME2, *language, PROPSIZE) == 0) {
 324             /* defaults to en_US */
 325             strcpy(*language, "en");
 326             strcpy(*country, "US");
 327         }
 328 
 329     /* variant */
 330     *variant = malloc(PROPSIZE);
 331     if (*variant == NULL) {
 332         return FALSE;
 333     }
 334     (*variant)[0] = '\0';
 335 
 336     /* handling for Norwegian */
 337     if (strcmp(*language, "nb") == 0) {
 338         strcpy(*language, "no");
 339         strcpy(*country , "NO");
 340     } else if (strcmp(*language, "nn") == 0) {
 341         strcpy(*language, "no");
 342         strcpy(*country , "NO");
 343         strcpy(*variant, "NY");
 344     }
 345 
 346     /* encoding */
 347     *encoding = getEncodingInternal(lcid);
 348     if (*encoding == NULL) {
 349         return FALSE;
 350     }
 351     return TRUE;
 352 }
 353 
 354 // GetVersionEx is deprecated; disable the warning until a replacement is found
 355 #pragma warning(disable : 4996)
 356 java_props_t *
 357 GetJavaProperties(JNIEnv* env)
 358 {
 359     static java_props_t sprops = {0};
 360     int majorVersion;
 361     int minorVersion;
 362     int buildNumber = 0;
 363 
 364     if (sprops.line_separator) {
 365         return &sprops;
 366     }
 367 
 368     /* AWT properties */
 369     sprops.awt_toolkit = "sun.awt.windows.WToolkit";
 370 
 371     /* tmp dir */
 372     {
 373         WCHAR tmpdir[MAX_PATH + 1];
 374         /* we might want to check that this succeed */
 375         GetTempPathW(MAX_PATH + 1, tmpdir);
 376         sprops.tmp_dir = _wcsdup(tmpdir);
 377     }
 378 
 379     /* Java2D properties */
 380     sprops.graphics_env = "sun.awt.Win32GraphicsEnvironment";
 381 
 382     /* OS properties */
 383     {
 384         char buf[100];
 385         boolean is_workstation;
 386         boolean is_64bit;
 387         DWORD platformId;
 388         {
 389             OSVERSIONINFOEX ver;
 390             ver.dwOSVersionInfoSize = sizeof(ver);
 391             GetVersionEx((OSVERSIONINFO *) &ver);
 392             majorVersion = ver.dwMajorVersion;
 393             minorVersion = ver.dwMinorVersion;
 394             /* distinguish Windows Server 2016 and 2019 by build number */
 395             buildNumber = ver.dwBuildNumber;
 396             is_workstation = (ver.wProductType == VER_NT_WORKSTATION);
 397             platformId = ver.dwPlatformId;
 398             sprops.patch_level = _strdup(ver.szCSDVersion);
 399         }
 400 
 401         {
 402             SYSTEM_INFO si;
 403             ZeroMemory(&si, sizeof(SYSTEM_INFO));
 404             GetNativeSystemInfo(&si);
 405 
 406             is_64bit = (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64);
 407         }
 408         do {
 409             // Read the major and minor version number from kernel32.dll
 410             VS_FIXEDFILEINFO *file_info;
 411             WCHAR kernel32_path[MAX_PATH];
 412             DWORD version_size;
 413             LPTSTR version_info;
 414             UINT len, ret;
 415 
 416             // Get the full path to \Windows\System32\kernel32.dll and use that for
 417             // determining what version of Windows we're running on.
 418             len = MAX_PATH - (UINT)strlen("\\kernel32.dll") - 1;
 419             ret = GetSystemDirectoryW(kernel32_path, len);
 420             if (ret == 0 || ret > len) {
 421                 break;
 422             }
 423             wcsncat(kernel32_path, L"\\kernel32.dll", MAX_PATH - ret);
 424 
 425             version_size = GetFileVersionInfoSizeW(kernel32_path, NULL);
 426             if (version_size == 0) {
 427                 break;
 428             }
 429 
 430             version_info = (LPTSTR)malloc(version_size);
 431             if (version_info == NULL) {
 432                 break;
 433             }
 434 
 435             if (!GetFileVersionInfoW(kernel32_path, 0, version_size, version_info)) {
 436                 free(version_info);
 437                 break;
 438             }
 439 
 440             if (!VerQueryValueW(version_info, L"\\", (LPVOID*)&file_info, &len)) {
 441                 free(version_info);
 442                 break;
 443             }
 444             majorVersion = HIWORD(file_info->dwProductVersionMS);
 445             minorVersion = LOWORD(file_info->dwProductVersionMS);
 446             buildNumber  = HIWORD(file_info->dwProductVersionLS);
 447             free(version_info);
 448         } while (0);
 449 
 450         /*
 451          * From msdn page on OSVERSIONINFOEX, current as of this
 452          * writing, decoding of dwMajorVersion and dwMinorVersion.
 453          *
 454          *  Operating system            dwMajorVersion  dwMinorVersion
 455          * ==================           ==============  ==============
 456          *
 457          * Windows 95                   4               0
 458          * Windows 98                   4               10
 459          * Windows ME                   4               90
 460          * Windows 3.51                 3               51
 461          * Windows NT 4.0               4               0
 462          * Windows 2000                 5               0
 463          * Windows XP 32 bit            5               1
 464          * Windows Server 2003 family   5               2
 465          * Windows XP 64 bit            5               2
 466          *       where ((&ver.wServicePackMinor) + 2) = 1
 467          *       and  si.wProcessorArchitecture = 9
 468          * Windows Vista family         6               0  (VER_NT_WORKSTATION)
 469          * Windows Server 2008          6               0  (!VER_NT_WORKSTATION)
 470          * Windows 7                    6               1  (VER_NT_WORKSTATION)
 471          * Windows Server 2008 R2       6               1  (!VER_NT_WORKSTATION)
 472          * Windows 8                    6               2  (VER_NT_WORKSTATION)
 473          * Windows Server 2012          6               2  (!VER_NT_WORKSTATION)
 474          * Windows Server 2012 R2       6               3  (!VER_NT_WORKSTATION)
 475          * Windows 10                   10              0  (VER_NT_WORKSTATION)
 476          * Windows Server 2016          10              0  (!VER_NT_WORKSTATION)
 477          * Windows Server 2019          10              0  (!VER_NT_WORKSTATION)
 478          *       where (buildNumber > 17762)
 479          *
 480          * This mapping will presumably be augmented as new Windows
 481          * versions are released.
 482          */
 483         switch (platformId) {
 484         case VER_PLATFORM_WIN32_WINDOWS:
 485            if (majorVersion == 4) {
 486                 switch (minorVersion) {
 487                 case  0: sprops.os_name = "Windows 95";           break;
 488                 case 10: sprops.os_name = "Windows 98";           break;
 489                 case 90: sprops.os_name = "Windows Me";           break;
 490                 default: sprops.os_name = "Windows 9X (unknown)"; break;
 491                 }
 492             } else {
 493                 sprops.os_name = "Windows 9X (unknown)";
 494             }
 495             break;
 496         case VER_PLATFORM_WIN32_NT:
 497             if (majorVersion <= 4) {
 498                 sprops.os_name = "Windows NT";
 499             } else if (majorVersion == 5) {
 500                 switch (minorVersion) {
 501                 case  0: sprops.os_name = "Windows 2000";         break;
 502                 case  1: sprops.os_name = "Windows XP";           break;
 503                 case  2:
 504                    /*
 505                     * From MSDN OSVERSIONINFOEX and SYSTEM_INFO documentation:
 506                     *
 507                     * "Because the version numbers for Windows Server 2003
 508                     * and Windows XP 6u4 bit are identical, you must also test
 509                     * whether the wProductType member is VER_NT_WORKSTATION.
 510                     * and si.wProcessorArchitecture is
 511                     * PROCESSOR_ARCHITECTURE_AMD64 (which is 9)
 512                     * If it is, the operating system is Windows XP 64 bit;
 513                     * otherwise, it is Windows Server 2003."
 514                     */
 515                     if (is_workstation && is_64bit) {
 516                         sprops.os_name = "Windows XP"; /* 64 bit */
 517                     } else {
 518                         sprops.os_name = "Windows 2003";
 519                     }
 520                     break;
 521                 default: sprops.os_name = "Windows NT (unknown)"; break;
 522                 }
 523             } else if (majorVersion == 6) {
 524                 /*
 525                  * See table in MSDN OSVERSIONINFOEX documentation.
 526                  */
 527                 if (is_workstation) {
 528                     switch (minorVersion) {
 529                     case  0: sprops.os_name = "Windows Vista";        break;
 530                     case  1: sprops.os_name = "Windows 7";            break;
 531                     case  2: sprops.os_name = "Windows 8";            break;
 532                     case  3: sprops.os_name = "Windows 8.1";          break;
 533                     default: sprops.os_name = "Windows NT (unknown)";
 534                     }
 535                 } else {
 536                     switch (minorVersion) {
 537                     case  0: sprops.os_name = "Windows Server 2008";    break;
 538                     case  1: sprops.os_name = "Windows Server 2008 R2"; break;
 539                     case  2: sprops.os_name = "Windows Server 2012";    break;
 540                     case  3: sprops.os_name = "Windows Server 2012 R2"; break;
 541                     default: sprops.os_name = "Windows NT (unknown)";
 542                     }
 543                 }
 544             } else if (majorVersion == 10) {
 545                 if (is_workstation) {
 546                     switch (minorVersion) {
 547                     case  0: sprops.os_name = "Windows 10";           break;
 548                     default: sprops.os_name = "Windows NT (unknown)";
 549                     }
 550                 } else {
 551                     switch (minorVersion) {
 552                     case  0:
 553                         /* Windows server 2019 GA 10/2018 build number is 17763 */
 554                         if (buildNumber > 17762) {
 555                             sprops.os_name = "Windows Server 2019";
 556                         } else {
 557                             sprops.os_name = "Windows Server 2016";
 558                         }
 559                         break;
 560                     default: sprops.os_name = "Windows NT (unknown)";
 561                     }
 562                 }
 563             } else {
 564                 sprops.os_name = "Windows NT (unknown)";
 565             }
 566             break;
 567         default:
 568             sprops.os_name = "Windows (unknown)";
 569             break;
 570         }
 571         sprintf(buf, "%d.%d", majorVersion, minorVersion);
 572         sprops.os_version = _strdup(buf);
 573 #if _M_AMD64
 574         sprops.os_arch = "amd64";
 575 #elif _X86_
 576         sprops.os_arch = "x86";
 577 #else
 578         sprops.os_arch = "unknown";
 579 #endif
 580         sprops.desktop = "windows";
 581     }
 582 
 583     /* Endianness of platform */
 584     {
 585         unsigned int endianTest = 0xff000000;
 586         if (((char*)(&endianTest))[0] != 0) {
 587             sprops.cpu_endian = "big";
 588         } else {
 589             sprops.cpu_endian = "little";
 590         }
 591     }
 592 
 593     /* CPU ISA list */
 594     sprops.cpu_isalist = cpu_isalist();
 595 
 596     /*
 597      * User name
 598      * We try to avoid calling GetUserName as it turns out to
 599      * be surprisingly expensive on NT.  It pulls in an extra
 600      * 100 K of footprint.
 601      */
 602     {
 603         WCHAR *uname = _wgetenv(L"USERNAME");
 604         if (uname != NULL && wcslen(uname) > 0) {
 605             sprops.user_name = _wcsdup(uname);
 606         } else {
 607             DWORD buflen = 0;
 608             if (GetUserNameW(NULL, &buflen) == 0 &&
 609                 GetLastError() == ERROR_INSUFFICIENT_BUFFER)
 610             {
 611                 uname = (WCHAR*)malloc(buflen * sizeof(WCHAR));
 612                 if (uname != NULL && GetUserNameW(uname, &buflen) == 0) {
 613                     free(uname);
 614                     uname = NULL;
 615                 }
 616             } else {
 617                 uname = NULL;
 618             }
 619             sprops.user_name = (uname != NULL) ? uname : L"unknown";
 620         }
 621     }
 622 
 623     /*
 624      * Home directory
 625      *
 626      * The normal result is that for a given user name XXX:
 627      *     On multi-user NT, user.home gets set to c:\winnt\profiles\XXX.
 628      *     On multi-user Win95, user.home gets set to c:\windows\profiles\XXX.
 629      *     On single-user Win95, user.home gets set to c:\windows.
 630      */
 631     {
 632         WCHAR *homep = getHomeFromShell32();
 633         if (homep == NULL) {
 634             homep = L"C:\\";
 635         }
 636         sprops.user_home = homep;
 637     }
 638 
 639     /*
 640      *  user.language
 641      *  user.script, user.country, user.variant (if user's environment specifies them)
 642      *  file.encoding
 643      */
 644     {
 645         /*
 646          * query the system for the current system default locale
 647          * (which is a Windows LCID value),
 648          */
 649         LCID userDefaultLCID = GetUserDefaultLCID();
 650         LCID systemDefaultLCID = GetSystemDefaultLCID();
 651         LCID userDefaultUILang = GetUserDefaultUILanguage();
 652 
 653         {
 654             char * display_encoding;
 655             HANDLE hStdOutErr;
 656 
 657             // Windows UI Language selection list only cares "language"
 658             // information of the UI Language. For example, the list
 659             // just lists "English" but it actually means "en_US", and
 660             // the user cannot select "en_GB" (if exists) in the list.
 661             // So, this hack is to use the user LCID region information
 662             // for the UI Language, if the "language" portion of those
 663             // two locales are the same.
 664             if (PRIMARYLANGID(LANGIDFROMLCID(userDefaultLCID)) ==
 665                 PRIMARYLANGID(LANGIDFROMLCID(userDefaultUILang))) {
 666                 userDefaultUILang = userDefaultLCID;
 667             }
 668 
 669             SetupI18nProps(userDefaultLCID,
 670                            &sprops.format_language,
 671                            &sprops.format_script,
 672                            &sprops.format_country,
 673                            &sprops.format_variant,
 674                            &sprops.encoding);
 675             SetupI18nProps(userDefaultUILang,
 676                            &sprops.display_language,
 677                            &sprops.display_script,
 678                            &sprops.display_country,
 679                            &sprops.display_variant,
 680                            &display_encoding);
 681 
 682             sprops.sun_jnu_encoding = getEncodingInternal(systemDefaultLCID);
 683             if (LANGIDFROMLCID(userDefaultLCID) == 0x0c04 && majorVersion == 6) {
 684                 // MS claims "Vista has built-in support for HKSCS-2004.
 685                 // All of the HKSCS-2004 characters have Unicode 4.1.
 686                 // PUA code point assignments". But what it really means
 687                 // is that the HKSCS-2004 is ONLY supported in Unicode.
 688                 // Test indicates the MS950 in its zh_HK locale is a
 689                 // "regular" MS950 which does not handle HKSCS-2004 at
 690                 // all. Set encoding to MS950_HKSCS.
 691                 sprops.encoding = "MS950_HKSCS";
 692                 sprops.sun_jnu_encoding = "MS950_HKSCS";
 693             }
 694 
 695             hStdOutErr = GetStdHandle(STD_OUTPUT_HANDLE);
 696             if (hStdOutErr != INVALID_HANDLE_VALUE &&
 697                 GetFileType(hStdOutErr) == FILE_TYPE_CHAR) {
 698                 sprops.sun_stdout_encoding = getConsoleEncoding();
 699             }
 700             hStdOutErr = GetStdHandle(STD_ERROR_HANDLE);
 701             if (hStdOutErr != INVALID_HANDLE_VALUE &&
 702                 GetFileType(hStdOutErr) == FILE_TYPE_CHAR) {
 703                 if (sprops.sun_stdout_encoding != NULL)
 704                     sprops.sun_stderr_encoding = sprops.sun_stdout_encoding;
 705                 else
 706                     sprops.sun_stderr_encoding = getConsoleEncoding();
 707             }
 708         }
 709     }
 710 
 711     sprops.unicode_encoding = "UnicodeLittle";
 712 
 713     /* User TIMEZONE
 714      * We defer setting up timezone until it's actually necessary.
 715      * Refer to TimeZone.getDefault(). The system property
 716      * is able to be set by the command line interface -Duser.timezone.
 717      */
 718 
 719     /* Current directory */
 720     {
 721         WCHAR buf[MAX_PATH];
 722         if (GetCurrentDirectoryW(sizeof(buf)/sizeof(WCHAR), buf) != 0)
 723             sprops.user_dir = _wcsdup(buf);
 724     }
 725 
 726     sprops.file_separator = "\\";
 727     sprops.path_separator = ";";
 728     sprops.line_separator = "\r\n";
 729 
 730     return &sprops;
 731 }
 732 
 733 jstring
 734 GetStringPlatform(JNIEnv *env, nchar* wcstr)
 735 {
 736     return (*env)->NewString(env, wcstr, (jsize)wcslen(wcstr));
 737 }