File: HsUname.c

package info (click to toggle)
haskell-unix-compat 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 136 kB
  • sloc: ansic: 419; haskell: 192; makefile: 2
file content (363 lines) | stat: -rw-r--r-- 12,576 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/*
 * For details of what's going on here, see the following URL:
 *
 * http://msdn.microsoft.com/en-us/library/ms724429(v=vs.85).aspx
 */

#include <windows.h>
#include <tchar.h>
#include <stdio.h>

#ifdef _MSC_VER
# include <strsafe.h>
#else

static void StringCchCopy(char *dest, size_t bufsize, const char *src)
{
    strcpy(dest, src);
}

static void StringCchCat(char *dest, size_t bufsize, const char *src)
{
    strcat(dest, src);
}

#define StringCchPrintf _snprintf

#endif

typedef void (WINAPI *PGNSI)(LPSYSTEM_INFO);
typedef BOOL (WINAPI *PGPI)(DWORD, DWORD, DWORD, DWORD, PDWORD);

#ifndef PRODUCT_ULTIMATE
# define PRODUCT_ULTIMATE 0x00000001
#endif

#ifndef PRODUCT_PROFESSIONAL
# define PRODUCT_PROFESSIONAL 0x00000030
#endif

#ifndef PRODUCT_HOME_PREMIUM
# define PRODUCT_HOME_PREMIUM 0x00000003
#endif

#ifndef PRODUCT_HOME_BASIC
# define PRODUCT_HOME_BASIC 0x00000002
#endif

#ifndef PRODUCT_BUSINESS
# define PRODUCT_BUSINESS 0x00000006
#endif

#ifndef PRODUCT_ENTERPRISE
# define PRODUCT_ENTERPRISE 0x00000004
#endif

#ifndef PRODUCT_STARTER
# define PRODUCT_STARTER 0x0000000B
#endif

#ifndef PRODUCT_CLUSTER_SERVER
# define PRODUCT_CLUSTER_SERVER 0x00000012
#endif

#ifndef PRODUCT_DATACENTER_SERVER
# define PRODUCT_DATACENTER_SERVER 0x00000008
#endif

#ifndef PRODUCT_DATACENTER_SERVER_CORE
# define PRODUCT_DATACENTER_SERVER_CORE 0x0000000C
#endif

#ifndef PRODUCT_ENTERPRISE_SERVER
# define PRODUCT_ENTERPRISE_SERVER 0x0000000A
#endif

#ifndef PRODUCT_ENTERPRISE_SERVER_CORE
# define PRODUCT_ENTERPRISE_SERVER_CORE 0x0000000E
#endif

#ifndef PRODUCT_ENTERPRISE_SERVER_IA64
# define PRODUCT_ENTERPRISE_SERVER_IA64 0x0000000F
#endif

#ifndef PRODUCT_SMALLBUSINESS_SERVER
# define PRODUCT_SMALLBUSINESS_SERVER 0x00000009
#endif

#ifndef PRODUCT_SMALLBUSINESS_SERVER_PREMIUM
# define PRODUCT_SMALLBUSINESS_SERVER_PREMIUM 0x00000019
#endif

#ifndef PRODUCT_STANDARD_SERVER
# define PRODUCT_STANDARD_SERVER 0x00000007
#endif

#ifndef PRODUCT_STANDARD_SERVER_CORE
# define PRODUCT_STANDARD_SERVER_CORE 0x0000000D
#endif

#ifndef PRODUCT_WEB_SERVER
# define PRODUCT_WEB_SERVER 0x00000011
#endif

#ifndef VER_SUITE_WH_SERVER
# define VER_SUITE_WH_SERVER 0x00008000
#endif

int unixcompat_os_display_string(char *pszOS, size_t BUFSIZE)
{
    OSVERSIONINFOEX osvi;
    SYSTEM_INFO si;
    PGNSI pGNSI;
    PGPI pGPI;
    BOOL bOsVersionInfoEx;
    DWORD dwType;

    ZeroMemory(&si, sizeof(SYSTEM_INFO));
    ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX));

    osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
    bOsVersionInfoEx = GetVersionEx((OSVERSIONINFO*) &osvi);

    if (bOsVersionInfoEx == 0)
        return FALSE;

    // Call GetNativeSystemInfo if supported or GetSystemInfo otherwise.

    pGNSI = (PGNSI) GetProcAddress(
        GetModuleHandle(TEXT("kernel32.dll")),
        "GetNativeSystemInfo");
    if (NULL != pGNSI)
        pGNSI(&si);
    else
        GetSystemInfo(&si);

    if (VER_PLATFORM_WIN32_NT == osvi.dwPlatformId && osvi.dwMajorVersion > 4) {
        StringCchCopy(pszOS, BUFSIZE, TEXT("Microsoft "));

        // Test for the specific product.
        if (osvi.dwMajorVersion == 6) {
            if(osvi.dwMinorVersion == 0) {
                if(osvi.wProductType == VER_NT_WORKSTATION)
                    StringCchCat(pszOS, BUFSIZE, TEXT("Windows Vista "));
                else
                    StringCchCat(pszOS, BUFSIZE, TEXT("Windows Server 2008 "));
            }

            if (osvi.dwMinorVersion == 1) {
                if (osvi.wProductType == VER_NT_WORKSTATION)
                    StringCchCat(pszOS, BUFSIZE, TEXT("Windows 7 "));
                else
                    StringCchCat(pszOS, BUFSIZE, TEXT("Windows Server 2008 R2 "));
            }

            pGPI = (PGPI) GetProcAddress(
                GetModuleHandle(TEXT("kernel32.dll")),
                "GetProductInfo");

            pGPI(osvi.dwMajorVersion, osvi.dwMinorVersion, 0, 0, &dwType);

            switch (dwType) {
                case PRODUCT_ULTIMATE:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Ultimate Edition"));
                    break;
                case PRODUCT_PROFESSIONAL:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Professional"));
                    break;
                case PRODUCT_HOME_PREMIUM:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Home Premium Edition"));
                    break;
                case PRODUCT_HOME_BASIC:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Home Basic Edition"));
                    break;
                case PRODUCT_ENTERPRISE:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Enterprise Edition"));
                    break;
                case PRODUCT_BUSINESS:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Business Edition"));
                    break;
                case PRODUCT_STARTER:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Starter Edition"));
                    break;
                case PRODUCT_CLUSTER_SERVER:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Cluster Server Edition"));
                    break;
                case PRODUCT_DATACENTER_SERVER:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Datacenter Edition"));
                    break;
                case PRODUCT_DATACENTER_SERVER_CORE:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Datacenter Edition (core installation)"));
                    break;
                case PRODUCT_ENTERPRISE_SERVER:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Enterprise Edition"));
                    break;
                case PRODUCT_ENTERPRISE_SERVER_CORE:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Enterprise Edition (core installation)"));
                    break;
                case PRODUCT_ENTERPRISE_SERVER_IA64:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Enterprise Edition for Itanium-based Systems"));
                    break;
                case PRODUCT_SMALLBUSINESS_SERVER:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Small Business Server"));
                    break;
                case PRODUCT_SMALLBUSINESS_SERVER_PREMIUM:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Small Business Server Premium Edition"));
                    break;
                case PRODUCT_STANDARD_SERVER:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Standard Edition"));
                    break;
                case PRODUCT_STANDARD_SERVER_CORE:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Standard Edition (core installation)"));
                    break;
                case PRODUCT_WEB_SERVER:
                    StringCchCat(pszOS, BUFSIZE, TEXT("Web Server Edition"));
                    break;
            }
        }

        if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 2) {
            if (GetSystemMetrics(SM_SERVERR2))
                StringCchCat(pszOS, BUFSIZE, TEXT("Windows Server 2003 R2, "));
            else if (osvi.wSuiteMask & VER_SUITE_STORAGE_SERVER)
                StringCchCat(pszOS, BUFSIZE, TEXT("Windows Storage Server 2003"));
            else if (osvi.wSuiteMask & VER_SUITE_WH_SERVER)
                StringCchCat(pszOS, BUFSIZE, TEXT("Windows Home Server"));
            else if (osvi.wProductType == VER_NT_WORKSTATION &&
                     si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
                StringCchCat(pszOS, BUFSIZE, TEXT("Windows XP Professional x64 Edition"));
            else
                StringCchCat(pszOS, BUFSIZE, TEXT("Windows Server 2003, "));

            // Test for the server type.

            if (osvi.wProductType != VER_NT_WORKSTATION) {
                if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_IA64) {
                    if(osvi.wSuiteMask & VER_SUITE_DATACENTER)
                        StringCchCat(pszOS, BUFSIZE, TEXT("Datacenter Edition for Itanium-based Systems"));
                    else if(osvi.wSuiteMask & VER_SUITE_ENTERPRISE)
                        StringCchCat(pszOS, BUFSIZE, TEXT("Enterprise Edition for Itanium-based Systems"));
                } else if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) {
                    if(osvi.wSuiteMask & VER_SUITE_DATACENTER)
                        StringCchCat(pszOS, BUFSIZE, TEXT("Datacenter x64 Edition"));
                    else if(osvi.wSuiteMask & VER_SUITE_ENTERPRISE)
                        StringCchCat(pszOS, BUFSIZE, TEXT("Enterprise x64 Edition"));
                    else StringCchCat(pszOS, BUFSIZE, TEXT("Standard x64 Edition"));
                } else {
                    if (osvi.wSuiteMask & VER_SUITE_COMPUTE_SERVER)
                        StringCchCat(pszOS, BUFSIZE, TEXT("Compute Cluster Edition"));
                    else if(osvi.wSuiteMask & VER_SUITE_DATACENTER)
                        StringCchCat(pszOS, BUFSIZE, TEXT("Datacenter Edition"));
                    else if(osvi.wSuiteMask & VER_SUITE_ENTERPRISE)
                        StringCchCat(pszOS, BUFSIZE, TEXT("Enterprise Edition"));
                    else if (osvi.wSuiteMask & VER_SUITE_BLADE)
                        StringCchCat(pszOS, BUFSIZE, TEXT("Web Edition"));
                    else StringCchCat(pszOS, BUFSIZE, TEXT("Standard Edition"));
                }
            }
        }

        if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 1) {
            StringCchCat(pszOS, BUFSIZE, TEXT("Windows XP "));

            if (osvi.wSuiteMask & VER_SUITE_PERSONAL)
                StringCchCat(pszOS, BUFSIZE, TEXT("Home Edition"));
            else
                StringCchCat(pszOS, BUFSIZE, TEXT("Professional"));
        }

        if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 0) {
            StringCchCat(pszOS, BUFSIZE, TEXT("Windows 2000 "));

            if (osvi.wProductType == VER_NT_WORKSTATION) {
                StringCchCat(pszOS, BUFSIZE, TEXT("Professional"));
            } else {
                if(osvi.wSuiteMask & VER_SUITE_DATACENTER)
                    StringCchCat(pszOS, BUFSIZE, TEXT("Datacenter Server"));
                else if(osvi.wSuiteMask & VER_SUITE_ENTERPRISE)
                    StringCchCat(pszOS, BUFSIZE, TEXT("Advanced Server"));
                else
                    StringCchCat(pszOS, BUFSIZE, TEXT("Server"));
            }
        }

        // Include service pack (if any) and build number.

        if(_tcslen(osvi.szCSDVersion) > 0) {
            StringCchCat(pszOS, BUFSIZE, TEXT(" "));
            StringCchCat(pszOS, BUFSIZE, osvi.szCSDVersion);
        }

        char buf[80];
        StringCchPrintf(buf, 80, TEXT(" (build %d)"), osvi.dwBuildNumber);
        StringCchCat(pszOS, BUFSIZE, buf);

        if (osvi.dwMajorVersion >= 6) {
            if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
                StringCchCat(pszOS, BUFSIZE, TEXT(", 64-bit"));
            else if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
                StringCchCat(pszOS, BUFSIZE, TEXT(", 32-bit"));
        }

        return TRUE;
    } else {
        // This sample does not support this version of Windows.
        return FALSE;
    }
}

int unixcompat_os_version_string(char *ptr, size_t bufsize)
{
    OSVERSIONINFOEX osvi;
    BOOL bOsVersionInfoEx;
    char *szServicePack;

    ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX));
    osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
    bOsVersionInfoEx = GetVersionEx((OSVERSIONINFO*) &osvi);

    if (bOsVersionInfoEx == 0)
        return FALSE;

    if (strncmp(osvi.szCSDVersion, "Service Pack ", 13) == 0)
        szServicePack = "0";
    else
        szServicePack = osvi.szCSDVersion + 13;

    StringCchPrintf(ptr, bufsize, "%ld.%ld.%s.%ld",
                    osvi.dwMajorVersion, osvi.dwMinorVersion, szServicePack,
                    osvi.dwBuildNumber);

    return TRUE;
}

int unixcompat_os_arch_string(char *ptr, size_t bufsize)
{
    SYSTEM_INFO sysInfo;

    GetSystemInfo(&sysInfo);

    switch (sysInfo.wProcessorArchitecture) {
        case PROCESSOR_ARCHITECTURE_INTEL:
            StringCchCopy(ptr, bufsize, "i386");
            break;
        case PROCESSOR_ARCHITECTURE_AMD64:
            StringCchCopy(ptr, bufsize, "x86_64");
            break;
        default:
            StringCchCopy(ptr, bufsize, "unknown");
            break;
    }

    return TRUE;
}

int unixcompat_os_node_name(char *ptr, size_t bufsize)
{
    DWORD sLength;

    sLength = bufsize - 1;
    GetComputerName(ptr, &sLength);

    return TRUE;
}