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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
|
/******************************************************************************
* Copyright (c) 2016 The Khronos Group
* Copyright (c) 2016 Valve Corporation
* Copyright (c) 2016 LunarG, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you man not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is destributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language govering permissions and
* limitations under the License.
*
* Author: Lenny Komow <lenny@lunarg.com>
*
*****************************************************************************/
/*
* This program is used by the Vulkan Runtime Installer/Uninstaller to:
* - Copy the most recent vulkan<majorabi>-*.dll in C:\Windows\System32
* to vulkan<majorabi>.dll
* - Copy the most recent version of vulkaninfo-<abimajor>-*.exe in
* C:\Windows\System32 to vulkaninfo.exe
* - The same thing is done for those files in C:\Windows\SysWOW64, but
* only on a 64-bit target
* - Set the layer registry entried to point to the layer json files in
* the Vulkan SDK associated with the most recent vulkan*.dll
*
* The program must be called with the following parameters:
* --major-abi: A single number specifying the major abi version
*/
// Compile with: `cl.exe configure_runtime.c /link advapi32.lib`
// Be sure to use the x86 version of cl.exe
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
// This hack gets Visual Studio 2013 to handle C99 stuff properly
// If we drop support for 2013, it would be a good idea to remove this
#if _MSC_VER < 1900
#define inline __inline
#define snprintf _snprintf
#endif
#if defined(_WIN64)
#error "This program is designed only as a 32-bit program. It should not be built as 64-bit."
#endif
#define COPY_BUFFER_SIZE (1024)
#define CHECK_ERROR(statement) { int error = (statement); if(error) return error; }
#define CHECK_ERROR_HANDLED(statement, handler) { int error = (statement); if(error) { { handler } return error; } }
#define SDK_VERSION_BUFFER_SIZE (64)
enum Platform
{
PLATFORM_X64,
PLATFORM_X86,
};
#pragma pack(1)
struct SDKVersion
{
long major;
long minor;
long patch;
long build;
char extended[SDK_VERSION_BUFFER_SIZE];
};
const char* FLAG_ABI_MAJOR = "--abi-major";
const char* FLAG_API_NAME = "--api-name";
const char* PATH_SYSTEM32 = "\\SYSTEM32\\";
const char* PATH_SYSWOW64 = "\\SysWOW64\\";
inline size_t max_s(size_t a, size_t b) { return a > b ? a : b; }
inline size_t min_s(size_t a, size_t b) { return a > b ? a : b; }
// Add the registry entries for all explicit layers
//
// log (input) - Logging file stream
// install_path (input) - The installation path of the SDK which provides the layers
// platform (input) - The platform to set the installation for (x64 or x86)
// api_name (input) - The api name to use when working with registries
// Returns: Zero on success, an error code on failure
int add_explicit_layers(FILE* log, const char* install_path, enum Platform platform, const char* api_name);
// Compare two sdk versions
//
// Returns: Zero if they are equal, below zero if a predates b, greater than zero if b predates a
int compare_versions(const struct SDKVersion* a, const struct SDKVersion* b);
// Locate all of the SDK installations
//
// api_name (input) - The api name to use when working with registries
// install_paths (output) - A poiner to an array of the installations paths
// install_versions (output) - A pointer to an array of the SDK versions
// count (output) - A pointer to the number of items in each array
// Returns: Zero on success, an error code on failure
//
// Both install_paths and install_versions are allocated on the heap. To free them properly,
// call free_installations(), even if this function returned an error code. The orders of
// install_paths and install_versions match, so (*install_paths)[2] is guaranteed to match
// (*install_versions)[2]
int find_installations(const char* api_name, char*** install_paths, struct SDKVersion** install_versions,
size_t* count);
// Free the memory allocated by find_installations()
void free_installations(char** install_paths, struct SDKVersion* install_versions, size_t count);
// Parse command line arguments for the program
//
// log (input) - Logging file stream
// argc (input) - The argument count
// argv (input) - An array of argument strings
// abi_major (output) - The major abi version from the arguments
// api_name (output) - The api name to use when working with registries and system files
// Returns: Zero on success, an error code on failure
int parse_arguments(FILE* log, int argc, char** argv, long* abi_major, const char** api_name);
// Read the version from a string
//
// version_string (input) - A string in the format <abi>.<major>.<minor>.<patch>.<build>.<extended>
// version (output) - The version indicated by the input string
// Returns: Zero on success, an error code on failure
int read_version(const char* version_string, struct SDKVersion* version);
// Read the version from a filename
//
// filename (input) - The name of a .dll or .exe file, in the format
// somename-<abi>-<major>-<minor>-<path>-<build>-<extended>.dll
// version (output) - The versions indicated by the input string
// Returns: Zero on success, an error code on failure
int read_version_from_filename(const char* filename, struct SDKVersion* version);
// Remove explicit layers from the Windows registry
//
// log (input) - Loggin file stream
// install_paths (input) - An array of every vulkan installation path
// count (input) - The number of vulkan installations
// platform (input) - The platform (x64 or x86) of the registry to use (both exist on x64)
// api_name (input) - The api name to use when working with registries
// Returns: Zero on success, an error code on failure
int remove_explicit_layers(FILE* log, const char** install_paths, size_t count, enum Platform platform,
const char* api_name);
// Update all explicity layers in the windows registry
//
// log (input) - Logging file stream
// platform (input) - The platform of the OS (both registries will be modified if this is x64)
// version (input) - The version that should be set to current (if it exists)
// api_name (input) - The api name to use when working with registries
// Returns: Zero on success, an error code on failure
int update_registry_layers(FILE* log, enum Platform platform, const struct SDKVersion* version,
const char* api_name);
// Update a single vulkan system file (vulkan.dll or vulkaninfo.exe)
//
// log (input) - Loggin file stream
// name (input) - The name (excuding file extension) of the file to be updated
// extension (input) - The file extensions of the file to be updated
// path (input) - The directory of the file (usually System32 or SysWOW64)
// abi_major (input) - The ABI major version to be updated
// append_abi_major (input) - Whether or not the ABI number should be appended to the filename
// latest_version (output) - The version of the runtime which the file was updated to
// Returns: Zero on success, an error code on failure
int update_system_file(FILE* log, const char* name, const char* extension, const char* path,
long abi_major, bool append_abi_major, struct SDKVersion* latest_version);
// Update vulkan.dll and vulkaninfo.exe in all of the windows directories (System32 and SysWOW64)
//
// log (input) - Loging file stream
// abi_major (input) - The ABI major version of the files that should be used
// platform (input) - The platform for the current OS
// api_name (input) - The api name to use when working with system files
// latest_runtime_version (output) - The version that the runtime files were updated to
int update_windows_directories(FILE* log, long abi_major, enum Platform platform, const char* api_name,
struct SDKVersion* latest_runtime_version);
int main(int argc, char** argv)
{
// Get the OS platform (x86 or x64)
BOOL is_64_bit;
IsWow64Process(GetCurrentProcess(), &is_64_bit);
enum Platform platform = is_64_bit ? PLATFORM_X64 : PLATFORM_X86;
FILE* log = fopen("configure_rt.log", "w");
if(log == NULL) {
return 10;
}
// Parse the arguments to get the abi version and the number of bits of the OS
long abi_major;
const char* api_name;
CHECK_ERROR_HANDLED(parse_arguments(log, argc, argv, &abi_major, &api_name), { fclose(log); });
fprintf(log, "API Name: %s\n", api_name);
// This makes System32 and SysWOW64 not do any redirection (well, until 128-bit is a thing)
PVOID useless;
Wow64DisableWow64FsRedirection(&useless);
// Update System32 (on all systems) and SysWOW64 on 64-bit system
struct SDKVersion latest_runtime_version;
CHECK_ERROR_HANDLED(update_windows_directories(log, abi_major, platform, api_name,
&latest_runtime_version), { fclose(log); });
// Update the explicit layers that are set in the windows registry
CHECK_ERROR_HANDLED(update_registry_layers(log, platform, &latest_runtime_version, api_name),
{ fclose(log); });
fclose(log);
return 0;
}
int add_explicit_layers(FILE* log, const char* install_path, enum Platform platform, const char* api_name)
{
switch(platform)
{
case PLATFORM_X64:
fprintf(log, "Updating x64 explicit layers to path: %s\n", install_path);
break;
case PLATFORM_X86:
fprintf(log, "Updating x86 explicit layers to path: %s\n", install_path);
break;
}
const char* registry_pattern = "SOFTWARE\\Khronos\\%s\\ExplicitLayers";
int registry_size = snprintf(NULL, 0, registry_pattern, api_name) + 1;
char* registry_key = malloc(registry_size);
snprintf(registry_key, registry_size, registry_pattern, api_name);
// If this is a 32 bit system, we allow redirection to point this at the 32-bit registries.
// If not, we add the flag KEY_WOW64_64KEY, to disable redirection for this node.
HKEY hKey;
REGSAM flags = KEY_ALL_ACCESS;
if(platform == PLATFORM_X64) {
flags |= KEY_WOW64_64KEY;
}
// Create (if needed) and open the explicit layer key
if(RegCreateKeyEx(HKEY_LOCAL_MACHINE, registry_key, 0, NULL, REG_OPTION_NON_VOLATILE, flags,
NULL, &hKey, NULL) != ERROR_SUCCESS) {
free(registry_key);
return 20;
}
const char* pattern = platform == PLATFORM_X64 ? "%s\\Bin\\VkLayer*.json" : "%s\\Bin32\\VkLayer*.json";
int filter_size = snprintf(NULL, 0, pattern, install_path) + 1;
if(filter_size < 0) {
return 30;
}
char* filter = malloc(filter_size);
snprintf(filter, filter_size, pattern, install_path);
WIN32_FIND_DATA find_data;
HANDLE find = FindFirstFile(filter, &find_data);
free(filter);
for(bool at_end = (find != INVALID_HANDLE_VALUE); at_end;
at_end = FindNextFile(find, &find_data)) {
const char* layer_pattern = platform == PLATFORM_X64 ? "%s\\Bin\\%s" : "%s\\Bin32\\%s";
int layer_size = snprintf(NULL, 0, layer_pattern, install_path, find_data.cFileName) + 1;
if(layer_size < 0) {
free(registry_key);
return 40;
}
char* layer = malloc(layer_size);
snprintf(layer, layer_size, layer_pattern, install_path, find_data.cFileName);
fprintf(log, "Adding explicit layer: %s\n", layer);
DWORD zero = 0;
LSTATUS err = RegSetValueEx(hKey, layer, zero, REG_DWORD, (BYTE*) &zero, sizeof(DWORD));
free(layer);
if(err != ERROR_SUCCESS) {
free(registry_key);
return 50;
}
}
RegCloseKey(hKey);
free(registry_key);
return 0;
}
int compare_versions(const struct SDKVersion* a, const struct SDKVersion* b)
{
// Compare numerical versions
for(int i = 0; i < 4; ++i) {
long* a_current = ((long*) a) + i;
long* b_current = ((long*) b) + i;
if(*a_current < *b_current) {
return -4 + i;
} else if(*b_current < *a_current) {
return 4 - i;
}
}
// An empty string should be considered greater (and therefore more recent) than one with test
if(a->extended[0] == '\0' && b->extended[0] != '\0') {
return 1;
} else if(b->extended[0] == '\0' && a->extended[0] != '\0') {
return -1;
}
// Otherwise, just do a strncmp
return strncmp(a->extended, b->extended, SDK_VERSION_BUFFER_SIZE);
}
int find_installations(const char* api_name, char*** install_paths, struct SDKVersion** install_versions, size_t* count)
{
*install_paths = malloc(sizeof(char*) * 64);
*install_versions = malloc(sizeof(struct SDKVersion) * 64);
*count = 0;
// We want the 64-bit registries on 64-bit windows, and the 32-bit registries on 32-bit Windows.
// KEY_WOW64_64KEY accomplishes this because it gets ignored on 32-bit Windows.
HKEY hKey;
if(RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall",
0, KEY_READ | KEY_WOW64_64KEY, &hKey) != ERROR_SUCCESS) {
return 90;
}
size_t api_len = strlen(api_name);
char* sdk_id = malloc(api_len + 4);
strcpy(sdk_id, api_name);
strcpy(sdk_id + api_len, "SDK");
DWORD keyCount, keyLen;
RegQueryInfoKey(hKey, NULL, NULL, NULL, &keyCount, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
for(int i = 0; i < keyCount; ++i) {
TCHAR name[COPY_BUFFER_SIZE];
DWORD nameSize = COPY_BUFFER_SIZE;
RegEnumKeyEx(hKey, i, name, &nameSize, NULL, NULL, NULL, NULL);
if(strncmp(sdk_id, name, api_len + 3)) {
continue;
}
HKEY subKey;
if(RegOpenKeyEx(hKey, name, 0, KEY_READ | KEY_WOW64_64KEY, &subKey) != ERROR_SUCCESS) {
continue;
}
bool found_installation = false, found_version = false;
DWORD valueCount;
RegQueryInfoKey(subKey, NULL, NULL, NULL, NULL, NULL, NULL, &valueCount, NULL, NULL, NULL, NULL);
for(int j = 0; j < valueCount; ++j) {
TCHAR name[COPY_BUFFER_SIZE], value[COPY_BUFFER_SIZE];
DWORD type, nameSize = COPY_BUFFER_SIZE, valSize = COPY_BUFFER_SIZE;
LSTATUS ret = RegEnumValue(subKey, j, name, &nameSize, NULL, &type, value, &valSize);
if(type == REG_SZ && !strcmp("InstallDir", name)) {
*install_paths = realloc(*install_paths, sizeof(char*) * ((*count) + 1));
(*install_paths)[*count] = malloc(sizeof(char) * COPY_BUFFER_SIZE);
strcpy((*install_paths)[*count], value);
found_installation = true;
} else if(type == REG_SZ && !strcmp("DisplayVersion", name)) {
*install_versions = realloc(*install_versions, sizeof(struct SDKVersion) * ((*count) + 1));
CHECK_ERROR(read_version(value, (*install_versions) + *count));
found_version = true;
}
if(found_installation && found_version) {
++(*count);
break;
}
}
RegCloseKey(subKey);
if(!(found_installation && found_version)) {
RegCloseKey(hKey);
free(sdk_id);
return 100;
}
}
RegCloseKey(hKey);
free(sdk_id);
return 0;
}
void free_installations(char** install_paths, struct SDKVersion* install_versions, size_t count)
{
for(size_t i = 0; i < count; ++i) {
free(install_paths[i]);
}
free(install_paths);
free(install_versions);
}
int parse_arguments(FILE* log, int argc, char** argv, long* abi_major, const char** api_name)
{
*abi_major = 0;
*api_name = "Vulkan";
// Parse arguments
for(int i = 0; i < argc; ++i) {
if(!strcmp(argv[i], FLAG_ABI_MAJOR)) {
if(i + 1 == argc) {
fprintf(log, "ERROR: No value given for flag %s.\n", FLAG_ABI_MAJOR);
return 110;
}
*abi_major = strtol(argv[++i], NULL, 10);
if(*abi_major == 0) {
fprintf(log, "ERROR: Unable to parse ABI major version as integer.\n");
return 120;
}
}
if(!strcmp(argv[i], FLAG_API_NAME)) {
if(i + 1 == argc) {
fprintf(log, "ERROR: No value given for flag %s.\n", FLAG_API_NAME);
return 124;
}
*api_name = argv[++i];
}
}
// Check that we have everything we need
if(*abi_major == 0 ) {
fprintf(log, "ERROR: Flag %s must be provided.\n", FLAG_ABI_MAJOR);
return 130;
}
// It all worked fine
fprintf(log, "Found ABI: %ld\n\n", *abi_major);
return 0;
}
int read_version(const char* version_string, struct SDKVersion* version)
{
size_t borders[4], dot_count = 0, i;
for(i = 0; dot_count < 3 && version_string[i] != '\0'; ++i) {
if(version_string[i] == '.') {
borders[dot_count++] = i + 1;
}
}
borders[3] = i + 1;
if(dot_count < 3) {
return 140;
}
// Read the version number
version->major = strtol(version_string, NULL, 10);
version->minor = strtol(version_string + borders[0], NULL, 10);
version->patch = strtol(version_string + borders[1], NULL, 10);
version->build = strtol(version_string + borders[2], NULL, 10);
strncpy(version->extended, version_string + borders[3] + 1,
min_s(SDK_VERSION_BUFFER_SIZE - 1, strlen(version_string + borders[3] + 1)));
return 0;
}
int read_version_from_filename(const char* filename, struct SDKVersion* version)
{
size_t borders[5], dash_count = 0;
// Locate all of the dashes that divides different version numbers
size_t i;
for(i = 0; dash_count < 5; ++i) {
if(filename[i] == '-' && dash_count == 0) {
++dash_count;
} else if(filename[i] == '-') {
borders[dash_count++ - 1] = i + 1;
} else if(filename[i] == '\0') {
return 150;
}
}
borders[4] = i + 1;
// Read the version number
version->major = strtol(filename + borders[0], NULL, 10);
version->minor = strtol(filename + borders[1], NULL, 10);
version->patch = strtol(filename + borders[2], NULL, 10);
version->build = strtol(filename + borders[3], NULL, 10);
if(strcmp(filename + borders[4] + 1, "dll") && strcmp(filename + borders[4] + 1, "exe")) {
strncpy(version->extended, filename + borders[4] + 1, SDK_VERSION_BUFFER_SIZE - 1);
size_t file_len = strlen(filename + borders[4] + 1);
if(file_len - 4 < SDK_VERSION_BUFFER_SIZE) {
version->extended[file_len - 4] = '\0';
}
} else {
version->extended[0] = '\0';
}
for(size_t i = 0; version->extended[i] != '\0' && i < SDK_VERSION_BUFFER_SIZE; ++i) {
if(version->extended[i] == '-') {
version->extended[i] = '.';
}
}
return 0;
}
int remove_explicit_layers(FILE* log, const char** install_paths, size_t count, enum Platform platform,
const char* api_name)
{
switch(platform)
{
case PLATFORM_X64:
fprintf(log, "Removing x64 explicit layers from registry\n");
break;
case PLATFORM_X86:
fprintf(log, "Removing x86 explicit layers from registry\n");
break;
}
const char* pattern = "SOFTWARE\\Khronos\\%s\\ExplicitLayers";
int registry_size = snprintf(NULL, 0, pattern, api_name) + 1;
char* registry_key = malloc(registry_size);
snprintf(registry_key, registry_size, pattern, api_name);
bool removed_one;
do {
// If this is a 32 bit system, we allow redirection to point this at the 32-bit registries.
// If not, we add the flag KEY_WOW64_64KEY, to disable redirection for this node.
HKEY hKey;
REGSAM flags = KEY_ALL_ACCESS;
if(platform == PLATFORM_X64) {
flags |= KEY_WOW64_64KEY;
}
// Create (if needed) and open the explicit layer key
if(RegCreateKeyEx(HKEY_LOCAL_MACHINE, registry_key, 0, NULL, REG_OPTION_NON_VOLATILE, flags,
NULL, &hKey, NULL) != ERROR_SUCCESS) {
free(registry_key);
return 160;
}
removed_one = false;
DWORD valueCount;
RegQueryInfoKey(hKey, NULL, NULL, NULL, NULL, NULL, NULL, &valueCount, NULL, NULL, NULL, NULL);
for(DWORD i = 0; i < valueCount; ++i) {
TCHAR name[COPY_BUFFER_SIZE];
DWORD type, buffSize = COPY_BUFFER_SIZE;
RegEnumValue(hKey, i, name, &buffSize, NULL, &type, NULL, NULL);
for(size_t j = 0; j < count; ++j) {
if(strncmp(install_paths[j], name, strlen(install_paths[j])) == 0) {
fprintf(log, "Removing explicit layer entry: %s\n", name);
LSTATUS err = RegDeleteValue(hKey, name);
if(err != ERROR_SUCCESS) {
free(registry_key);
return 170;
}
removed_one = true;
break;
}
}
if(removed_one) {
break;
}
}
RegCloseKey(hKey);
} while(removed_one);
free(registry_key);
return 0;
}
int update_registry_layers(FILE* log, enum Platform platform, const struct SDKVersion* version,
const char* api_name)
{
char** install_paths;
struct SDKVersion* install_versions;
size_t count;
CHECK_ERROR_HANDLED(find_installations(api_name, &install_paths, &install_versions, &count),
{ free_installations(install_paths, install_versions, count); });
for(size_t i = 0; i < count; ++i) {
fprintf(log, "Found installation of %ld.%ld.%ld.%ld in: %s\n", install_versions[i].major,
install_versions[i].minor, install_versions[i].patch, install_versions[i].build, install_paths[i]);
}
fprintf(log, "\n");
if(platform == PLATFORM_X64) {
CHECK_ERROR_HANDLED(remove_explicit_layers(log, install_paths, count, PLATFORM_X64, api_name),
{ free_installations(install_paths, install_versions, count); });
fprintf(log, "\n");
}
CHECK_ERROR_HANDLED(remove_explicit_layers(log, install_paths, count, PLATFORM_X86, api_name),
{ free_installations(install_paths, install_versions, count); });
fprintf(log, "\n");
if(version->major == 0 && version->minor == 0 && version->patch == 0 && version->build == 0) {
free_installations(install_paths, install_versions, count);
return 0;
}
size_t preferred_sdk = count;
for(size_t i = 0; i < count; ++i) {
int cmp = compare_versions(install_versions + i, version);
if(cmp <= 0 && cmp >= -2) {
if(preferred_sdk == count ||
(compare_versions(install_versions + i, install_versions + preferred_sdk) > 0)) {
preferred_sdk = i;
}
}
}
if(preferred_sdk < count) {
if(platform == PLATFORM_X64) {
CHECK_ERROR_HANDLED(add_explicit_layers(log, install_paths[preferred_sdk], PLATFORM_X64, api_name),
{ free_installations(install_paths, install_versions, count); });
fprintf(log, "\n");
}
CHECK_ERROR_HANDLED(add_explicit_layers(log, install_paths[preferred_sdk], PLATFORM_X86, api_name),
{ free_installations(install_paths, install_versions, count); });
}
free_installations(install_paths, install_versions, count);
return 0;
}
//int update_system_file(FILE* log, const char* name, const char* extension, const char* path,
// long abi_major, bool append_abi_major, struct SDKVersion* latest_version)
int update_system_file(FILE* log, const char* name, const char* extension, const char* path,
long abi_major, bool leave_abi_major, struct SDKVersion* latest_version)
{
// Generate the filter string
const char* pattern = "%s%s-%ld-*-*-*-*%s";
int filter_size = snprintf(NULL, 0, pattern, path, name, abi_major, extension) + 1;
if(filter_size < 0) {
return 180;
}
char* filter = malloc(filter_size);
snprintf(filter, filter_size, pattern, path, name, abi_major, extension);
// Find all of the files that match the pattern
char* latest_filename = malloc(64);
memset(latest_version, 0, sizeof(struct SDKVersion));
WIN32_FIND_DATA find_data;
HANDLE find = FindFirstFile(filter, &find_data);
free(filter);
for(bool at_end = (find != INVALID_HANDLE_VALUE); at_end;
at_end = FindNextFile(find, &find_data)) {
struct SDKVersion version;
CHECK_ERROR_HANDLED(read_version_from_filename(find_data.cFileName, &version), { free(latest_filename); });
// Decide if this is the latest file
if(compare_versions(latest_version, &version) < 0) {
*latest_version = version;
const char* latestPattern = "%s%s";
int size = snprintf(NULL, 0, latestPattern, path, find_data.cFileName) + 1;
if(size < 0) {
free(latest_filename);
return 200;
}
latest_filename = realloc(latest_filename, size);
snprintf(latest_filename, size, latestPattern, path, find_data.cFileName);
}
}
FindClose(find);
// Make sure something was found
if(latest_version->major == 0 && latest_version->minor == 0 && latest_version->patch == 0 &&
latest_version->build == 0) {
fprintf(log, "Didn't find any version of %s%s\n", name, extension);
return 0;
}
fprintf(log, "Found latest version of %s%s: %ld.%ld.%ld.%ld\n", name, extension, latest_version->major,
latest_version->minor, latest_version->patch, latest_version->build);
// Generate output filename
char* output_filename;
if(leave_abi_major) {
const char* outPattern = "%s%s-%ld%s";
int out_size = snprintf(NULL, 0, outPattern, path, name, abi_major, extension) + 1;
if(out_size < 0) {
free(latest_filename);
return 205;
}
output_filename = malloc(out_size);
snprintf(output_filename, out_size, outPattern, path, name, abi_major, extension);
} else {
const char* outPattern = "%s%s%s";
int out_size = snprintf(NULL, 0, outPattern, path, name, extension) + 1;
if(out_size < 0) {
free(latest_filename);
return 210;
}
output_filename = malloc(out_size);
snprintf(output_filename, out_size, outPattern, path, name, extension);
}
fprintf(stdout, "%s>%s;", latest_filename, output_filename);
free(latest_filename);
free(output_filename);
return 0;
}
int update_windows_directories(FILE* log, long abi_major, enum Platform platform, const char* api_name,
struct SDKVersion* latest_runtime_version)
{
size_t api_len = strlen(api_name);
char* vulkan_name = malloc(api_len + 1);
char* vulkan_info_name = malloc(api_len + 5);
for(size_t i = 0; i < api_len; ++i) {
vulkan_name[i] = tolower(api_name[i]);
}
vulkan_name[api_len] = '\0';
strcpy(vulkan_info_name, vulkan_name);
strcpy(vulkan_info_name + api_len, "info");
struct SDKVersion version;
unsigned windows_path_size = GetWindowsDirectory(NULL, 0); // Size includes null terminator
char* system_path = malloc(windows_path_size +
max_s(strlen(PATH_SYSTEM32), strlen(PATH_SYSWOW64)));
GetWindowsDirectory(system_path, windows_path_size);
strcpy(system_path + windows_path_size - 1, PATH_SYSTEM32);
fprintf(log, "Updating system directory: %s\n", system_path);
CHECK_ERROR_HANDLED(update_system_file(log, vulkan_name, ".dll", system_path, abi_major, true,
latest_runtime_version), { free(system_path); });
CHECK_ERROR_HANDLED(update_system_file(log, vulkan_info_name, ".exe", system_path, abi_major, false,
&version), { free(system_path); free(vulkan_info_name); free(vulkan_name);});
if(compare_versions(latest_runtime_version, &version) != 0) {
free(system_path);
free(vulkan_info_name);
free(vulkan_name);
return 220;
}
if(platform == PLATFORM_X64) {
strcpy(system_path + windows_path_size - 1, PATH_SYSWOW64);
fprintf(log, "\nUpdating system directory: %s\n", system_path);
CHECK_ERROR_HANDLED(update_system_file(log, vulkan_name, ".dll", system_path, abi_major,
true, &version), { free(system_path); free(vulkan_info_name); free(vulkan_name); });
if(compare_versions(latest_runtime_version, &version) != 0) {
free(system_path);
free(vulkan_info_name);
free(vulkan_name);
return 230;
}
CHECK_ERROR_HANDLED(update_system_file(log, vulkan_info_name, ".exe", system_path, abi_major,
false, &version), { free(system_path); free(vulkan_info_name); free(vulkan_name); });
if(compare_versions(latest_runtime_version, &version) != 0) {
free(system_path);
free(vulkan_info_name);
free(vulkan_name);
return 240;
}
}
free(system_path);
free(vulkan_info_name);
free(vulkan_name);
fprintf(log, "\nUpdate of system directories succeeded.\n\n");
return 0;
}
|