forked from KhronosGroup/Vulkan-ValidationLayers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vk_layer_config.cpp
437 lines (385 loc) · 15 KB
/
vk_layer_config.cpp
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
/**************************************************************************
*
* Copyright 2014-2020 Valve Software
* Copyright 2015-2020 Google Inc.
* Copyright 2019-2020 LunarG, Inc.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author: Jon Ashburn <[email protected]>
* Author: Courtney Goeltzenleuchter <[email protected]>
* Author: Tobin Ehlis <[email protected]>
* Author: Mark Lobodzinski <[email protected]>
**************************************************************************/
#include "vk_layer_config.h"
#include <string.h>
#include <fstream>
#include <iostream>
#include <map>
#include <sstream>
#include <string>
#include <sys/stat.h>
#include <vulkan/vk_layer.h>
// sdk_platform header redefines NOMINMAX
#undef NOMINMAX
#include <vulkan/vk_sdk_platform.h>
#include "vk_layer_utils.h"
#if defined(_WIN32)
#include <windows.h>
#include <direct.h>
#define GetCurrentDir _getcwd
#else
#include <unistd.h>
#define GetCurrentDir getcwd
#endif
using std::string;
class ConfigFile {
public:
ConfigFile();
~ConfigFile(){};
const char *GetOption(const string &option);
void SetOption(const string &option, const string &value);
string vk_layer_disables_env_var;
SettingsFileInfo settings_info{};
private:
bool file_is_parsed_;
std::map<string, string> value_map_;
string FindSettings();
void ParseFile(const char *filename);
};
static ConfigFile layer_config;
string GetEnvironment(const char *variable) {
#if !defined(__ANDROID__) && !defined(_WIN32)
const char *output = getenv(variable);
return output == NULL ? "" : output;
#elif defined(_WIN32)
int size = GetEnvironmentVariable(variable, NULL, 0);
if (size == 0) {
return "";
}
char *buffer = new char[size];
GetEnvironmentVariable(variable, buffer, size);
string output = buffer;
delete[] buffer;
return output;
#elif defined(__ANDROID__)
string command = "getprop " + string(variable);
FILE *pPipe = popen(command.c_str(), "r");
if (pPipe != nullptr) {
char value[256];
fgets(value, 256, pPipe);
pclose(pPipe);
// Make sure its not an empty line
if (strcspn(value, "\r\n") == 0) {
return "";
} else {
return string(value);
}
} else {
return "";
}
#else
return "";
#endif
}
VK_LAYER_EXPORT const char *getLayerOption(const char *option) { return layer_config.GetOption(option); }
VK_LAYER_EXPORT const char *GetLayerEnvVar(const char *option) {
layer_config.vk_layer_disables_env_var = GetEnvironment(option);
return layer_config.vk_layer_disables_env_var.c_str();
}
VK_LAYER_EXPORT const SettingsFileInfo *GetLayerSettingsFileInfo() { return &layer_config.settings_info; }
// If option is NULL or stdout, return stdout, otherwise try to open option
// as a filename. If successful, return file handle, otherwise stdout
VK_LAYER_EXPORT FILE *getLayerLogOutput(const char *option, const char *layer_name) {
FILE *log_output = NULL;
if (!option || !strcmp("stdout", option)) {
log_output = stdout;
} else {
log_output = fopen(option, "w");
if (log_output == NULL) {
if (option) {
std::cout << std::endl
<< layer_name << " ERROR: Bad output filename specified: " << option << ". Writing to STDOUT instead"
<< std::endl
<< std::endl;
}
log_output = stdout;
}
}
return log_output;
}
// Map option strings to flag enum values
VK_LAYER_EXPORT VkFlags GetLayerOptionFlags(string option, std::unordered_map<string, VkFlags> const &enum_data,
uint32_t option_default) {
VkDebugReportFlagsEXT flags = option_default;
string option_list = layer_config.GetOption(option.c_str());
while (option_list.length() != 0) {
// Find length of option string
std::size_t option_length = option_list.find(",");
if (option_length == option_list.npos) {
option_length = option_list.size();
}
// Get first option item in list
const string option_item = option_list.substr(0, option_length);
auto enum_value = enum_data.find(option_item);
if (enum_value != enum_data.end()) {
flags |= enum_value->second;
}
// Remove first option from option_list
option_list.erase(0, option_length);
// Remove possible comma separator
std::size_t char_position = option_list.find(",");
if (char_position == 0) {
option_list.erase(char_position, 1);
}
// Remove possible space
char_position = option_list.find(" ");
if (char_position == 0) {
option_list.erase(char_position, 1);
}
}
return flags;
}
VK_LAYER_EXPORT void setLayerOption(const char *option, const char *value) { layer_config.SetOption(option, value); }
// Constructor for ConfigFile. Initialize layers to log error messages to stdout by default. If a vk_layer_settings file is present,
// its settings will override the defaults.
ConfigFile::ConfigFile() : file_is_parsed_(false) {
value_map_["khronos_validation.report_flags"] = "error";
#ifdef WIN32
// For Windows, enable message logging AND OutputDebugString
value_map_["khronos_validation.debug_action"] =
"VK_DBG_LAYER_ACTION_DEFAULT,VK_DBG_LAYER_ACTION_LOG_MSG,VK_DBG_LAYER_ACTION_DEBUG_OUTPUT";
#else // WIN32
value_map_["khronos_validation.debug_action"] = "VK_DBG_LAYER_ACTION_DEFAULT,VK_DBG_LAYER_ACTION_LOG_MSG";
#endif // WIN32
value_map_["khronos_validation.log_filename"] = "stdout";
}
const char *ConfigFile::GetOption(const string &option) {
std::map<string, string>::const_iterator it;
if (!file_is_parsed_) {
string settings_file = FindSettings();
ParseFile(settings_file.c_str());
}
if ((it = value_map_.find(option)) == value_map_.end()) {
return "";
} else {
return it->second.c_str();
}
}
void ConfigFile::SetOption(const string &option, const string &val) {
if (!file_is_parsed_) {
string settings_file = FindSettings();
ParseFile(settings_file.c_str());
}
value_map_[option] = val;
}
#if defined(WIN32)
// Check for admin rights
static inline bool IsHighIntegrity() {
HANDLE process_token;
if (OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY | TOKEN_QUERY_SOURCE, &process_token)) {
// Maximum possible size of SID_AND_ATTRIBUTES is maximum size of a SID + size of attributes DWORD.
uint8_t mandatory_label_buffer[SECURITY_MAX_SID_SIZE + sizeof(DWORD)];
DWORD buffer_size;
if (GetTokenInformation(process_token, TokenIntegrityLevel, mandatory_label_buffer, sizeof(mandatory_label_buffer),
&buffer_size) != 0) {
const TOKEN_MANDATORY_LABEL *mandatory_label = (const TOKEN_MANDATORY_LABEL *)mandatory_label_buffer;
const DWORD sub_authority_count = *GetSidSubAuthorityCount(mandatory_label->Label.Sid);
const DWORD integrity_level = *GetSidSubAuthority(mandatory_label->Label.Sid, sub_authority_count - 1);
CloseHandle(process_token);
return integrity_level > SECURITY_MANDATORY_MEDIUM_RID;
}
CloseHandle(process_token);
}
return false;
}
#endif
string ConfigFile::FindSettings() {
struct stat info;
#if defined(WIN32)
// Look for VkConfig-specific settings location specified in the windows registry
HKEY key;
const std::array<HKEY, 2> hives = {DEFAULT_VK_REGISTRY_HIVE, SECONDARY_VK_REGISTRY_HIVE};
const size_t hives_to_check_count = IsHighIntegrity() ? 1 : hives.size(); // Admin checks only the default hive
for (size_t hive_index = 0; hive_index < hives_to_check_count; ++hive_index) {
LSTATUS err = RegOpenKeyEx(hives[hive_index], "Software\\Khronos\\Vulkan\\Settings", 0, KEY_READ, &key);
if (err == ERROR_SUCCESS) {
char name[2048];
DWORD i = 0, name_size, type, value, value_size;
while (ERROR_SUCCESS == RegEnumValue(key, i++, name, &(name_size = sizeof(name)), nullptr, &type,
reinterpret_cast<LPBYTE>(&value), &(value_size = sizeof(value)))) {
// Check if the registry entry is a dword with a value of zero
if (type != REG_DWORD || value != 0) {
continue;
}
// Check if this actually points to a file
if ((stat(name, &info) != 0) || !(info.st_mode & S_IFREG)) {
continue;
}
// Use this file
RegCloseKey(key);
settings_info.source = kVkConfig;
settings_info.location = name;
return name;
}
RegCloseKey(key);
}
}
#else
// Look for VkConfig-specific settings location specified in a specific spot in the linux settings store
string search_path = GetEnvironment("XDG_DATA_HOME");
if (search_path == "") {
search_path = GetEnvironment("HOME");
if (search_path != "") {
search_path += "/.local/share";
}
}
// Use the vk_layer_settings.txt file from here, if it is present
if (search_path != "") {
string home_file = search_path + "/vulkan/settings.d/vk_layer_settings.txt";
if (stat(home_file.c_str(), &info) == 0) {
if (info.st_mode & S_IFREG) {
settings_info.source = kVkConfig;
settings_info.location = home_file;
return home_file;
}
}
}
#endif
// Look for an enviornment variable override for the settings file location
string env_path = GetEnvironment("VK_LAYER_SETTINGS_PATH");
// If the path exists use it, else use vk_layer_settings
if (stat(env_path.c_str(), &info) == 0) {
// If this is a directory, append settings file name
if (info.st_mode & S_IFDIR) {
env_path.append("/vk_layer_settings.txt");
}
settings_info.source = kEnvVar;
settings_info.location = env_path;
return env_path;
}
// Default -- use the current working directory for the settings file location
settings_info.source = kLocal;
char buff[512];
auto buf_ptr = GetCurrentDir(buff, 512);
if (buf_ptr) {
settings_info.location = buf_ptr;
settings_info.location.append("\\vk_layer_settings.txt");
}
return "vk_layer_settings.txt";
}
void ConfigFile::ParseFile(const char *filename) {
file_is_parsed_ = true;
// Extract option = value pairs from a file
std::ifstream file(filename);
if (file.good()) {
settings_info.file_found = true;
for (string line; std::getline(file, line);) {
// discard comments, which start with '#'
const auto comments_pos = line.find_first_of('#');
if (comments_pos != string::npos) line.erase(comments_pos);
const auto value_pos = line.find_first_of('=');
if (value_pos != string::npos) {
const string option = string_trim(line.substr(0, value_pos));
const string value = string_trim(line.substr(value_pos + 1));
value_map_[option] = value;
}
}
}
}
VK_LAYER_EXPORT void PrintMessageFlags(VkFlags vk_flags, char *msg_flags) {
bool separator = false;
msg_flags[0] = 0;
if (vk_flags & VK_DEBUG_REPORT_DEBUG_BIT_EXT) {
strcat(msg_flags, "DEBUG");
separator = true;
}
if (vk_flags & VK_DEBUG_REPORT_INFORMATION_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "INFO");
separator = true;
}
if (vk_flags & VK_DEBUG_REPORT_WARNING_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "WARN");
separator = true;
}
if (vk_flags & VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "PERF");
separator = true;
}
if (vk_flags & VK_DEBUG_REPORT_ERROR_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "ERROR");
}
}
VK_LAYER_EXPORT void PrintMessageSeverity(VkFlags vk_flags, char *msg_flags) {
bool separator = false;
msg_flags[0] = 0;
if (vk_flags & VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT) {
strcat(msg_flags, "VERBOSE");
separator = true;
}
if (vk_flags & VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "INFO");
separator = true;
}
if (vk_flags & VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "WARN");
separator = true;
}
if (vk_flags & VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "ERROR");
}
}
VK_LAYER_EXPORT void PrintMessageType(VkFlags vk_flags, char *msg_flags) {
bool separator = false;
msg_flags[0] = 0;
if (vk_flags & VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT) {
strcat(msg_flags, "GEN");
separator = true;
}
if (vk_flags & VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "SPEC");
separator = true;
}
if (vk_flags & VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "PERF");
}
}
// This catches before dlopen fails if the default Android-26 layers are being used and attempted to be ran on Android 25 or below
#if defined(__ANDROID__)
#include "android_ndk_types.h" // get AHB_VALIDATION_SUPPORT macro
void __attribute__((constructor)) CheckAndroidVersion();
void CheckAndroidVersion() {
#ifdef AHB_VALIDATION_SUPPORT
string version_env = GetEnvironment("ro.build.version.sdk");
int target_version = atoi(version_env.c_str());
// atoi returns 0 if GetEnvironment fails and don't want false positive errors
if ((target_version != 0) && (target_version < 26)) {
LOGCONSOLE(
"ERROR - Targeted Android version is %d and needs to be 26 or above. Please read "
"https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/master/BUILD.md for how to build the Validation Layers "
"for Android 25 and below",
target_version);
}
#endif // AHB_VALIDATION_SUPPORT
}
#endif // defined(__ANDROID__)