blob: 8abc034a0cc961192b9a1bf3cf312dcffc8404b8 [file] [log] [blame]
Chia-I Wuc1e0f962014-08-04 08:03:57 +08001/*
Chia-I Wuc1e0f962014-08-04 08:03:57 +08002 *
Mark Young74268f72017-05-02 10:49:46 -06003 * Copyright (c) 2014-2017 The Khronos Group Inc.
4 * Copyright (c) 2014-2017 Valve Corporation
5 * Copyright (c) 2014-2017 LunarG, Inc.
Courtney Goeltzenleuchter8e1b8d92015-12-02 14:53:22 -07006 * Copyright (C) 2015 Google Inc.
Chia-I Wuc1e0f962014-08-04 08:03:57 +08007 *
Jon Ashburn4f80d672016-04-19 11:30:31 -06008 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
Chia-I Wuc1e0f962014-08-04 08:03:57 +080011 *
Jon Ashburn4f80d672016-04-19 11:30:31 -060012 * http://www.apache.org/licenses/LICENSE-2.0
Chia-I Wuc1e0f962014-08-04 08:03:57 +080013 *
Jon Ashburn4f80d672016-04-19 11:30:31 -060014 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
Jon Ashburn1c75aec2016-02-02 17:47:28 -070019 *
20 * Author: Jon Ashburn <jon@lunarg.com>
21 * Author: Courtney Goeltzenleuchter <courtney@LunarG.com>
Courtney Goeltzenleuchterb9ce3952015-10-30 11:14:30 -060022 * Author: Chia-I Wu <olvaffe@gmail.com>
23 * Author: Chia-I Wu <olv@lunarg.com>
Jon Ashburn1c75aec2016-02-02 17:47:28 -070024 * Author: Mark Lobodzinski <mark@LunarG.com>
Courtney Goeltzenleuchterb9ce3952015-10-30 11:14:30 -060025 *
Chia-I Wuc1e0f962014-08-04 08:03:57 +080026 */
27
28#ifndef LOADER_H
29#define LOADER_H
30
David Pinedoa5036622015-11-06 12:54:48 -070031#include <vulkan/vulkan.h>
Aaron Karp95c5f952016-03-13 16:41:59 -040032#include "vk_loader_platform.h"
Mark Lobodzinski663818f2016-05-24 16:04:56 -060033#include "vk_loader_layer.h"
David Pinedoa5036622015-11-06 12:54:48 -070034#include <vulkan/vk_layer.h>
35#include <vulkan/vk_icd.h>
Chia-I Wufe333ed2015-04-11 15:34:07 +080036#include <assert.h>
Mark Youngd4e5ba42017-02-28 09:58:04 -070037#include "vk_loader_extensions.h"
Chia-I Wufe333ed2015-04-11 15:34:07 +080038
Chia-I Wuc1e0f962014-08-04 08:03:57 +080039#if defined(__GNUC__) && __GNUC__ >= 4
Jon Ashburn1c75aec2016-02-02 17:47:28 -070040#define LOADER_EXPORT __attribute__((visibility("default")))
Chia-I Wuc1e0f962014-08-04 08:03:57 +080041#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
Jon Ashburn1c75aec2016-02-02 17:47:28 -070042#define LOADER_EXPORT __attribute__((visibility("default")))
Chia-I Wuc1e0f962014-08-04 08:03:57 +080043#else
Jon Ashburn1c75aec2016-02-02 17:47:28 -070044#define LOADER_EXPORT
Chia-I Wuc1e0f962014-08-04 08:03:57 +080045#endif
46
Mark Young74dd5d12016-06-30 13:02:42 -060047// A debug option to disable allocators at compile time to investigate future issues.
48#define DEBUG_DISABLE_APP_ALLOCATORS 0
49
Jon Ashburnb2379c52015-08-04 10:22:33 -060050#define MAX_STRING_SIZE 1024
Jon Ashburn13482452015-05-12 17:26:48 -060051
Mark Young274e4bc2017-01-19 21:10:49 -070052// This is defined in vk_layer.h, but if there's problems we need to create the define
53// here.
54#ifndef MAX_NUM_UNKNOWN_EXTS
55#define MAX_NUM_UNKNOWN_EXTS 250
56#endif
57
Mark Young74268f72017-05-02 10:49:46 -060058enum layer_type_flags {
59 VK_LAYER_TYPE_FLAG_INSTANCE_LAYER = 0x1, // If not set, indicates Device layer
60 VK_LAYER_TYPE_FLAG_EXPLICIT_LAYER = 0x2, // If not set, indicates Implicit layer
61 VK_LAYER_TYPE_FLAG_META_LAYER = 0x4, // If not set, indicates standard layer
Jon Ashburn399c9162015-07-02 09:40:15 -060062};
63
Mark Lobodzinski8d325802016-02-02 18:53:34 -070064typedef enum VkStringErrorFlagBits {
Jon Ashburnb1cdf2e2016-02-10 20:50:19 -070065 VK_STRING_ERROR_NONE = 0x00000000,
66 VK_STRING_ERROR_LENGTH = 0x00000001,
67 VK_STRING_ERROR_BAD_DATA = 0x00000002,
Mark Lobodzinski8d325802016-02-02 18:53:34 -070068} VkStringErrorFlagBits;
69typedef VkFlags VkStringErrorFlags;
70
Jon Ashburnb1cdf2e2016-02-10 20:50:19 -070071static const int MaxLoaderStringLength = 256;
72static const char UTF8_ONE_BYTE_CODE = 0xC0;
73static const char UTF8_ONE_BYTE_MASK = 0xE0;
74static const char UTF8_TWO_BYTE_CODE = 0xE0;
75static const char UTF8_TWO_BYTE_MASK = 0xF0;
76static const char UTF8_THREE_BYTE_CODE = 0xF0;
77static const char UTF8_THREE_BYTE_MASK = 0xF8;
78static const char UTF8_DATA_BYTE_CODE = 0x80;
79static const char UTF8_DATA_BYTE_MASK = 0xC0;
Mark Lobodzinski8d325802016-02-02 18:53:34 -070080
Mark Young274e4bc2017-01-19 21:10:49 -070081struct VkStructureHeader {
82 VkStructureType sType;
Mark Lobodzinski91c10752017-01-26 12:16:30 -070083 const void *pNext;
Mark Young274e4bc2017-01-19 21:10:49 -070084};
85
Jon Ashburn6b00b472015-12-10 08:51:10 -070086// form of all dynamic lists/arrays
87// only the list element should be changed
88struct loader_generic_list {
89 size_t capacity;
90 uint32_t count;
91 void *list;
92};
93
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060094struct loader_extension_list {
95 size_t capacity;
96 uint32_t count;
Jon Ashburnb7d327c2015-08-04 11:14:18 -060097 VkExtensionProperties *list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060098};
99
Jon Ashburn92cdb012015-12-10 18:17:34 -0700100struct loader_dev_ext_props {
101 VkExtensionProperties props;
102 uint32_t entrypoint_count;
103 char **entrypoints;
104};
105
106struct loader_device_extension_list {
107 size_t capacity;
108 uint32_t count;
109 struct loader_dev_ext_props *list;
110};
111
Jon Ashburn399c9162015-07-02 09:40:15 -0600112struct loader_name_value {
Jon Ashburnb2379c52015-08-04 10:22:33 -0600113 char name[MAX_STRING_SIZE];
114 char value[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600115};
116
Jon Ashburn399c9162015-07-02 09:40:15 -0600117struct loader_layer_functions {
Jon Ashburnb2379c52015-08-04 10:22:33 -0600118 char str_gipa[MAX_STRING_SIZE];
119 char str_gdpa[MAX_STRING_SIZE];
Mark Young274e4bc2017-01-19 21:10:49 -0700120 char str_negotiate_interface[MAX_STRING_SIZE];
121 PFN_vkNegotiateLoaderLayerInterfaceVersion negotiate_layer_interface;
Jon Ashburn399c9162015-07-02 09:40:15 -0600122 PFN_vkGetInstanceProcAddr get_instance_proc_addr;
123 PFN_vkGetDeviceProcAddr get_device_proc_addr;
Mark Young274e4bc2017-01-19 21:10:49 -0700124 PFN_GetPhysicalDeviceProcAddr get_physical_device_proc_addr;
Jon Ashburn399c9162015-07-02 09:40:15 -0600125};
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600126
Jon Ashburn399c9162015-07-02 09:40:15 -0600127struct loader_layer_properties {
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600128 VkLayerProperties info;
Mark Young74268f72017-05-02 10:49:46 -0600129 enum layer_type_flags type_flags;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700130 uint32_t interface_version; // PFN_vkNegotiateLoaderLayerInterfaceVersion
Jon Ashburnb4c24232015-08-20 16:35:30 -0600131 char lib_name[MAX_STRING_SIZE];
Jon Ashburnd3cf9552016-04-20 13:21:17 -0600132 loader_platform_dl_handle lib_handle;
Jon Ashburn399c9162015-07-02 09:40:15 -0600133 struct loader_layer_functions functions;
134 struct loader_extension_list instance_extension_list;
Jon Ashburn92cdb012015-12-10 18:17:34 -0700135 struct loader_device_extension_list device_extension_list;
Jon Ashburn399c9162015-07-02 09:40:15 -0600136 struct loader_name_value disable_env_var;
137 struct loader_name_value enable_env_var;
Mark Young74268f72017-05-02 10:49:46 -0600138 uint32_t num_component_layers;
139 char (*component_layer_names)[MAX_STRING_SIZE];
Lenny Komowe6b54942017-12-19 16:38:37 -0700140 struct {
141 char enumerate_instance_extension_properties[MAX_STRING_SIZE];
142 char enumerate_instance_layer_properties[MAX_STRING_SIZE];
Lenny Komow3b7c7f22018-02-13 15:58:47 -0700143 char enumerate_instance_version[MAX_STRING_SIZE];
Lenny Komowe6b54942017-12-19 16:38:37 -0700144 } pre_instance_functions;
Jon Ashburn399c9162015-07-02 09:40:15 -0600145};
146
147struct loader_layer_list {
148 size_t capacity;
149 uint32_t count;
150 struct loader_layer_properties *list;
Jon Ashburn13482452015-05-12 17:26:48 -0600151};
152
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700153struct loader_dispatch_hash_list {
154 size_t capacity;
155 uint32_t count;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700156 uint32_t *index; // index into the dev_ext dispatch table
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700157};
158
Mark Youngdd904ae2016-09-02 11:41:28 -0600159// loader_dispatch_hash_entry and loader_dev_ext_dispatch_table.dev_ext have
160// one to one correspondence; one loader_dispatch_hash_entry for one dev_ext
161// dispatch entry.
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700162// Also have a one to one correspondence with functions in dev_ext_trampoline.c
163struct loader_dispatch_hash_entry {
164 char *func_name;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700165 struct loader_dispatch_hash_list list; // to handle hashing collisions
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700166};
167
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700168typedef void(VKAPI_PTR *PFN_vkDevExt)(VkDevice device);
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700169struct loader_dev_ext_dispatch_table {
Mark Young274e4bc2017-01-19 21:10:49 -0700170 PFN_vkDevExt dev_ext[MAX_NUM_UNKNOWN_EXTS];
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700171};
172
173struct loader_dev_dispatch_table {
174 VkLayerDispatchTable core_dispatch;
175 struct loader_dev_ext_dispatch_table ext_dispatch;
176};
177
Mark Young1d645262016-09-07 08:50:32 -0600178// per CreateDevice structure
Jon Ashburn10f4e822015-06-10 10:06:06 -0600179struct loader_device {
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700180 struct loader_dev_dispatch_table loader_dispatch;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700181 VkDevice chain_device; // device object from the dispatch chain
182 VkDevice icd_device; // device object from the icd
Mark Young0f7adeb2016-11-07 13:27:02 -0700183 struct loader_physical_device_term *phys_dev_term;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600184
Mark Young5c875062017-05-04 12:16:35 -0600185 // List of activated layers.
186 // app_ is the version based on exactly what the application asked for.
187 // This is what must be returned to the application on Enumerate calls.
188 // expanded_ is the version based on expanding meta-layers into their
189 // individual component layers. This is what is used internally.
190 struct loader_layer_list app_activated_layer_list;
191 struct loader_layer_list expanded_activated_layer_list;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600192
Mark Young74dd5d12016-06-30 13:02:42 -0600193 VkAllocationCallbacks alloc_callbacks;
194
Jon Ashburn10f4e822015-06-10 10:06:06 -0600195 struct loader_device *next;
196};
197
Mark Youngd4e5ba42017-02-28 09:58:04 -0700198// Per ICD information
199
200// Per ICD structure
Mark Young26c19372016-11-03 14:27:13 -0600201struct loader_icd_term {
Jon Ashburnb4c24232015-08-20 16:35:30 -0600202 // pointers to find other structs
Mark Young26c19372016-11-03 14:27:13 -0600203 const struct loader_scanned_icd *scanned_icd;
Jon Ashburnb4c24232015-08-20 16:35:30 -0600204 const struct loader_instance *this_instance;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600205 struct loader_device *logical_device_list;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700206 VkInstance instance; // instance object from the icd
Mark Youngd4e5ba42017-02-28 09:58:04 -0700207 struct loader_icd_term_dispatch dispatch;
Mark Young4ab55c42016-12-12 16:14:55 -0700208
Mark Young26c19372016-11-03 14:27:13 -0600209 struct loader_icd_term *next;
Mark Young274e4bc2017-01-19 21:10:49 -0700210
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700211 PFN_PhysDevExt phys_dev_ext[MAX_NUM_UNKNOWN_EXTS];
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600212};
213
Mark Youngd4e5ba42017-02-28 09:58:04 -0700214// Per ICD library structure
Mark Young26c19372016-11-03 14:27:13 -0600215struct loader_icd_tramp_list {
Jon Ashburne0367472015-08-18 18:04:47 -0600216 size_t capacity;
217 uint32_t count;
Mark Young26c19372016-11-03 14:27:13 -0600218 struct loader_scanned_icd *scanned_list;
Jon Ashburne0367472015-08-18 18:04:47 -0600219};
220
Mark Young274e4bc2017-01-19 21:10:49 -0700221struct loader_instance_dispatch_table {
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700222 VkLayerInstanceDispatchTable layer_inst_disp; // must be first entry in structure
Mark Young274e4bc2017-01-19 21:10:49 -0700223
224 // Physical device functions unknown to the loader
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700225 PFN_PhysDevExt phys_dev_ext[MAX_NUM_UNKNOWN_EXTS];
Mark Young274e4bc2017-01-19 21:10:49 -0700226};
227
Mark Youngd4e5ba42017-02-28 09:58:04 -0700228// Per instance structure
Jon Ashburn13482452015-05-12 17:26:48 -0600229struct loader_instance {
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700230 struct loader_instance_dispatch_table *disp; // must be first entry in structure
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600231
Lenny Komowde705cc2017-10-25 15:26:15 -0600232 // Vulkan API version the app is intending to use.
233 uint16_t app_api_major_version;
234 uint16_t app_api_minor_version;
235
Mark Young0746fce2017-03-10 17:31:18 -0700236 // We need to manually track physical devices over time. If the user
237 // re-queries the information, we don't want to delete old data or
238 // create new data unless necessary.
Mark Young26c19372016-11-03 14:27:13 -0600239 uint32_t total_gpu_count;
Lenny Komowe93e87f2016-12-20 15:35:11 -0700240 uint32_t phys_dev_count_term;
241 struct loader_physical_device_term **phys_devs_term;
Lenny Komowaaa115c2016-12-19 17:11:40 -0700242 uint32_t phys_dev_count_tramp;
243 struct loader_physical_device_tramp **phys_devs_tramp;
Mark Young26c19372016-11-03 14:27:13 -0600244
Mark Young0746fce2017-03-10 17:31:18 -0700245 // We also need to manually track physical device groups, but we don't need
246 // loader specific structures since we have that content in the physical
247 // device stored internal to the public structures.
248 uint32_t phys_dev_group_count_term;
Lenny Komow31217432017-10-02 15:08:53 -0600249 struct VkPhysicalDeviceGroupProperties **phys_dev_groups_term;
Mark Young0746fce2017-03-10 17:31:18 -0700250 uint32_t phys_dev_group_count_tramp;
Lenny Komow31217432017-10-02 15:08:53 -0600251 struct VkPhysicalDeviceGroupProperties **phys_dev_groups_tramp;
Mark Young0746fce2017-03-10 17:31:18 -0700252
Jon Ashburn13482452015-05-12 17:26:48 -0600253 struct loader_instance *next;
Mark Young26c19372016-11-03 14:27:13 -0600254
255 uint32_t total_icd_count;
256 struct loader_icd_term *icd_terms;
257 struct loader_icd_tramp_list icd_tramp_list;
258
Mark Young274e4bc2017-01-19 21:10:49 -0700259 struct loader_dispatch_hash_entry dev_ext_disp_hash[MAX_NUM_UNKNOWN_EXTS];
260 struct loader_dispatch_hash_entry phys_dev_ext_disp_hash[MAX_NUM_UNKNOWN_EXTS];
Jon Ashburnb4c24232015-08-20 16:35:30 -0600261
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600262 struct loader_msg_callback_map_entry *icd_msg_callback_map;
263
Mark Young26c19372016-11-03 14:27:13 -0600264 struct loader_layer_list instance_layer_list;
Mark Young5c875062017-05-04 12:16:35 -0600265
266 // List of activated layers.
267 // app_ is the version based on exactly what the application asked for.
268 // This is what must be returned to the application on Enumerate calls.
269 // expanded_ is the version based on expanding meta-layers into their
270 // individual component layers. This is what is used internally.
271 struct loader_layer_list app_activated_layer_list;
272 struct loader_layer_list expanded_activated_layer_list;
273
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700274 VkInstance instance; // layers/ICD instance returned to trampoline
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700275
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700276 struct loader_extension_list ext_list; // icds and loaders extensions
Mark Young26c19372016-11-03 14:27:13 -0600277 union loader_instance_extension_enables enabled_known_extensions;
278
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600279 VkLayerDbgFunctionNode *DbgFunctionHead;
Mark Younge3e9b562017-11-09 10:37:04 -0700280 uint32_t num_tmp_report_callbacks;
281 VkDebugReportCallbackCreateInfoEXT *tmp_report_create_infos;
282 VkDebugReportCallbackEXT *tmp_report_callbacks;
283 uint32_t num_tmp_messengers;
284 VkDebugUtilsMessengerCreateInfoEXT *tmp_messenger_create_infos;
285 VkDebugUtilsMessengerEXT *tmp_messengers;
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600286
Chia-I Wu227c8b32015-10-27 18:04:07 +0800287 VkAllocationCallbacks alloc_callbacks;
Ian Elliotted33eb72015-07-06 14:36:13 -0600288
Ian Elliott54cea232015-10-30 15:28:23 -0600289 bool wsi_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700290#ifdef VK_USE_PLATFORM_WIN32_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600291 bool wsi_win32_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700292#endif
293#ifdef VK_USE_PLATFORM_MIR_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600294 bool wsi_mir_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700295#endif
296#ifdef VK_USE_PLATFORM_WAYLAND_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600297 bool wsi_wayland_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700298#endif
299#ifdef VK_USE_PLATFORM_XCB_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600300 bool wsi_xcb_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700301#endif
302#ifdef VK_USE_PLATFORM_XLIB_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600303 bool wsi_xlib_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700304#endif
305#ifdef VK_USE_PLATFORM_ANDROID_KHR
306 bool wsi_android_surface_enabled;
307#endif
Karl Schultzd81ebfb2017-12-12 10:33:01 -0500308#ifdef VK_USE_PLATFORM_MACOS_MVK
309 bool wsi_macos_surface_enabled;
310#endif
311#ifdef VK_USE_PLATFORM_IOS_MVK
312 bool wsi_ios_surface_enabled;
313#endif
Jon Ashburncc370d02016-03-08 09:30:30 -0700314 bool wsi_display_enabled;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600315};
316
Mark Youngd4e5ba42017-02-28 09:58:04 -0700317// VkPhysicalDevice requires special treatment by loader. Firstly, terminator
318// code must be able to get the struct loader_icd_term to call into the proper
319// driver (multiple ICD/gpu case). This can be accomplished by wrapping the
320// created VkPhysicalDevice in loader terminate_EnumeratePhysicalDevices().
321// Secondly, the loader must be able to handle wrapped by layer VkPhysicalDevice
322// in trampoline code. This implies, that the loader trampoline code must also
323// wrap the VkPhysicalDevice object in trampoline code. Thus, loader has to
324// wrap the VkPhysicalDevice created object twice. In trampoline code it can't
325// rely on the terminator object wrapping since a layer may also wrap. Since
326// trampoline code wraps the VkPhysicalDevice this means all loader trampoline
327// code that passes a VkPhysicalDevice should unwrap it.
Jon Ashburnfd02a0f2016-03-01 19:51:07 -0700328
Mark Youngd4e5ba42017-02-28 09:58:04 -0700329// Per enumerated PhysicalDevice structure, used to wrap in trampoline code and
330// also same structure used to wrap in terminator code
Jon Ashburnc3519e42016-03-24 15:49:57 -0600331struct loader_physical_device_tramp {
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700332 struct loader_instance_dispatch_table *disp; // must be first entry in structure
Piers Daniell82107a62016-03-29 11:51:11 -0600333 struct loader_instance *this_instance;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700334 VkPhysicalDevice phys_dev; // object from layers/loader terminator
Jon Ashburnc3519e42016-03-24 15:49:57 -0600335};
336
Mark Youngd4e5ba42017-02-28 09:58:04 -0700337// Per enumerated PhysicalDevice structure, used to wrap in terminator code
Mark Young26c19372016-11-03 14:27:13 -0600338struct loader_physical_device_term {
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700339 struct loader_instance_dispatch_table *disp; // must be first entry in structure
Mark Young26c19372016-11-03 14:27:13 -0600340 struct loader_icd_term *this_icd_term;
Mark Young5467d672016-06-28 10:52:43 -0600341 uint8_t icd_index;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700342 VkPhysicalDevice phys_dev; // object from ICD
Jon Ashburn969caa42015-11-01 14:04:06 -0700343};
344
Jon Ashburn13482452015-05-12 17:26:48 -0600345struct loader_struct {
346 struct loader_instance *instances;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600347};
348
Mark Young26c19372016-11-03 14:27:13 -0600349struct loader_scanned_icd {
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600350 char *lib_name;
351 loader_platform_dl_handle handle;
Jon Ashburn27109e82015-11-17 17:35:40 -0700352 uint32_t api_version;
Jon Ashburn68b06d62016-04-25 11:09:37 -0600353 uint32_t interface_version;
Jon Ashburnc7ca48d2015-07-16 10:17:29 -0600354 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Mark Young274e4bc2017-01-19 21:10:49 -0700355 PFN_GetPhysicalDeviceProcAddr GetPhysicalDeviceProcAddr;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600356 PFN_vkCreateInstance CreateInstance;
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700357 PFN_vkEnumerateInstanceExtensionProperties EnumerateInstanceExtensionProperties;
Jon Ashburn13482452015-05-12 17:26:48 -0600358};
359
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700360static inline struct loader_instance *loader_instance(VkInstance instance) { return (struct loader_instance *)instance; }
Jon Ashburn399c9162015-07-02 09:40:15 -0600361
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700362static inline VkPhysicalDevice loader_unwrap_physical_device(VkPhysicalDevice physicalDevice) {
363 struct loader_physical_device_tramp *phys_dev = (struct loader_physical_device_tramp *)physicalDevice;
Jon Ashburnfd02a0f2016-03-01 19:51:07 -0700364 return phys_dev->phys_dev;
365}
366
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700367static inline void loader_set_dispatch(void *obj, const void *data) { *((const void **)obj) = data; }
Chia-I Wufe333ed2015-04-11 15:34:07 +0800368
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700369static inline VkLayerDispatchTable *loader_get_dispatch(const void *obj) { return *((VkLayerDispatchTable **)obj); }
Chia-I Wufe333ed2015-04-11 15:34:07 +0800370
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700371static inline struct loader_dev_dispatch_table *loader_get_dev_dispatch(const void *obj) {
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700372 return *((struct loader_dev_dispatch_table **)obj);
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700373}
374
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700375static inline VkLayerInstanceDispatchTable *loader_get_instance_layer_dispatch(const void *obj) {
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700376 return *((VkLayerInstanceDispatchTable **)obj);
Jon Ashburn13482452015-05-12 17:26:48 -0600377}
378
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700379static inline struct loader_instance_dispatch_table *loader_get_instance_dispatch(const void *obj) {
Mark Young274e4bc2017-01-19 21:10:49 -0700380 return *((struct loader_instance_dispatch_table **)obj);
381}
382
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700383static inline void loader_init_dispatch(void *obj, const void *data) {
Jon Ashburn167b2b12015-04-15 13:34:33 -0600384#ifdef DEBUG
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700385 assert(valid_loader_magic_value(obj) &&
386 "Incompatible ICD, first dword must be initialized to "
387 "ICD_LOADER_MAGIC. See loader/README.md for details.");
Jon Ashburn167b2b12015-04-15 13:34:33 -0600388#endif
Chia-I Wufe333ed2015-04-11 15:34:07 +0800389
Jon Ashburn62a54d12015-05-01 18:00:33 -0600390 loader_set_dispatch(obj, data);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800391}
392
Mark Youngd4e5ba42017-02-28 09:58:04 -0700393// Global variables used across files
Jon Ashburn13482452015-05-12 17:26:48 -0600394extern struct loader_struct loader;
Jon Ashburnb4dee9c2015-08-28 15:19:27 -0600395extern THREAD_LOCAL_DECL struct loader_instance *tls_instance;
Lenny Komow3f14edc2018-01-19 11:22:28 -0700396#if defined(_WIN32) && !defined(LOADER_DYNAMIC_LIB)
397extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init);
398#endif
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600399extern loader_platform_thread_mutex loader_lock;
Jon Ashburn7d4d51c2015-09-22 13:11:00 -0600400extern loader_platform_thread_mutex loader_json_lock;
Jon Ashburn37e7f972015-04-06 10:58:22 -0600401
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600402struct loader_msg_callback_map_entry {
Courtney Goeltzenleuchter725db942015-12-09 15:48:16 -0700403 VkDebugReportCallbackEXT icd_obj;
404 VkDebugReportCallbackEXT loader_obj;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600405};
406
Mark Youngd4e5ba42017-02-28 09:58:04 -0700407// Helper function definitions
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700408void *loader_instance_heap_alloc(const struct loader_instance *instance, size_t size, VkSystemAllocationScope allocationScope);
409void loader_instance_heap_free(const struct loader_instance *instance, void *pMemory);
410void *loader_instance_heap_realloc(const struct loader_instance *instance, void *pMemory, size_t orig_size, size_t size,
Mark Young26c19372016-11-03 14:27:13 -0600411 VkSystemAllocationScope alloc_scope);
Mark Young74dd5d12016-06-30 13:02:42 -0600412void *loader_instance_tls_heap_alloc(size_t size);
413void loader_instance_tls_heap_free(void *pMemory);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700414void *loader_device_heap_alloc(const struct loader_device *device, size_t size, VkSystemAllocationScope allocationScope);
Mark Young74dd5d12016-06-30 13:02:42 -0600415void loader_device_heap_free(const struct loader_device *device, void *pMemory);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700416void *loader_device_heap_realloc(const struct loader_device *device, void *pMemory, size_t orig_size, size_t size,
Mark Young26c19372016-11-03 14:27:13 -0600417 VkSystemAllocationScope alloc_scope);
Jon Ashburnc4e9ae62016-02-26 13:14:27 -0700418
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700419void loader_log(const struct loader_instance *inst, VkFlags msg_type, int32_t msg_code, const char *format, ...);
Jon Ashburn663f8312016-02-12 08:20:06 -0700420
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700421bool compare_vk_extension_properties(const VkExtensionProperties *op1, const VkExtensionProperties *op2);
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600422
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700423VkResult loader_validate_layers(const struct loader_instance *inst, const uint32_t layer_count,
424 const char *const *ppEnabledLayerNames, const struct loader_layer_list *list);
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600425
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700426VkResult loader_validate_instance_extensions(const struct loader_instance *inst, const struct loader_extension_list *icd_exts,
427 const struct loader_layer_list *instance_layer,
428 const VkInstanceCreateInfo *pCreateInfo);
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600429
Jon Ashburne0367472015-08-18 18:04:47 -0600430void loader_initialize(void);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700431VkResult loader_copy_layer_properties(const struct loader_instance *inst, struct loader_layer_properties *dst,
Mark Young74dd5d12016-06-30 13:02:42 -0600432 struct loader_layer_properties *src);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700433bool has_vk_extension_property_array(const VkExtensionProperties *vk_ext_prop, const uint32_t count,
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700434 const VkExtensionProperties *ext_array);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700435bool has_vk_extension_property(const VkExtensionProperties *vk_ext_prop, const struct loader_extension_list *ext_list);
Jon Ashburn13482452015-05-12 17:26:48 -0600436
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700437VkResult loader_add_to_ext_list(const struct loader_instance *inst, struct loader_extension_list *ext_list,
438 uint32_t prop_list_count, const VkExtensionProperties *props);
439VkResult loader_add_to_dev_ext_list(const struct loader_instance *inst, struct loader_device_extension_list *ext_list,
440 const VkExtensionProperties *props, uint32_t entry_count, char **entrys);
Jon Ashburnc4e9ae62016-02-26 13:14:27 -0700441VkResult loader_add_device_extensions(const struct loader_instance *inst,
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700442 PFN_vkEnumerateDeviceExtensionProperties fpEnumerateDeviceExtensionProperties,
443 VkPhysicalDevice physical_device, const char *lib_name,
Jon Ashburnc4e9ae62016-02-26 13:14:27 -0700444 struct loader_extension_list *ext_list);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700445VkResult loader_init_generic_list(const struct loader_instance *inst, struct loader_generic_list *list_info, size_t element_size);
446void loader_destroy_generic_list(const struct loader_instance *inst, struct loader_generic_list *list);
447void loader_destroy_layer_list(const struct loader_instance *inst, struct loader_device *device,
Jon Ashburnc4e9ae62016-02-26 13:14:27 -0700448 struct loader_layer_list *layer_list);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700449void loader_delete_layer_properties(const struct loader_instance *inst, struct loader_layer_list *layer_list);
450bool loader_find_layer_name_array(const char *name, uint32_t layer_count, const char layer_list[][VK_MAX_EXTENSION_NAME_SIZE]);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700451VkResult loader_add_to_layer_list(const struct loader_instance *inst, struct loader_layer_list *list, uint32_t prop_list_count,
Mark Young74dd5d12016-06-30 13:02:42 -0600452 const struct loader_layer_properties *props);
Mark Young74268f72017-05-02 10:49:46 -0600453void loader_find_layer_name_add_list(const struct loader_instance *inst, const char *name, const enum layer_type_flags type_flags,
Mark Young5c875062017-05-04 12:16:35 -0600454 const struct loader_layer_list *source_list, struct loader_layer_list *target_list,
455 struct loader_layer_list *expanded_target_list);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700456void loader_scanned_icd_clear(const struct loader_instance *inst, struct loader_icd_tramp_list *icd_tramp_list);
457VkResult loader_icd_scan(const struct loader_instance *inst, struct loader_icd_tramp_list *icd_tramp_list);
458void loader_layer_scan(const struct loader_instance *inst, struct loader_layer_list *instance_layers);
459void loader_implicit_layer_scan(const struct loader_instance *inst, struct loader_layer_list *instance_layers);
Jean-Francois Roy319a7c32017-07-06 14:10:13 -0700460bool loader_is_implicit_layer_enabled(const struct loader_instance *inst, const struct loader_layer_properties *prop);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700461VkResult loader_get_icd_loader_instance_extensions(const struct loader_instance *inst, struct loader_icd_tramp_list *icd_tramp_list,
462 struct loader_extension_list *inst_exts);
463struct loader_icd_term *loader_get_icd_and_device(const VkDevice device, struct loader_device **found_dev, uint32_t *icd_index);
464void loader_init_dispatch_dev_ext(struct loader_instance *inst, struct loader_device *dev);
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700465void *loader_dev_ext_gpa(struct loader_instance *inst, const char *funcName);
466void *loader_get_dev_ext_trampoline(uint32_t index);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700467bool loader_phys_dev_ext_gpa(struct loader_instance *inst, const char *funcName, bool perform_checking, void **tramp_addr,
468 void **term_addr);
Mark Young274e4bc2017-01-19 21:10:49 -0700469void *loader_get_phys_dev_ext_tramp(uint32_t index);
470void *loader_get_phys_dev_ext_termin(uint32_t index);
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700471struct loader_instance *loader_get_instance(const VkInstance instance);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700472void loader_deactivate_layers(const struct loader_instance *instance, struct loader_device *device, struct loader_layer_list *list);
473struct loader_device *loader_create_logical_device(const struct loader_instance *inst, const VkAllocationCallbacks *pAllocator);
474void loader_add_logical_device(const struct loader_instance *inst, struct loader_icd_term *icd_term,
Piers Daniell82107a62016-03-29 11:51:11 -0600475 struct loader_device *found_dev);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700476void loader_remove_logical_device(const struct loader_instance *inst, struct loader_icd_term *icd_term,
477 struct loader_device *found_dev, const VkAllocationCallbacks *pAllocator);
Mark Young15098392017-03-08 13:38:35 -0700478// NOTE: Outside of loader, this entry-point is only provided for error
Mark Young26c19372016-11-03 14:27:13 -0600479// cleanup.
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700480void loader_destroy_logical_device(const struct loader_instance *inst, struct loader_device *dev,
Mark Young74dd5d12016-06-30 13:02:42 -0600481 const VkAllocationCallbacks *pAllocator);
482
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700483VkResult loader_enable_instance_layers(struct loader_instance *inst, const VkInstanceCreateInfo *pCreateInfo,
484 const struct loader_layer_list *instance_layers);
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700485
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700486VkResult loader_create_instance_chain(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator,
487 struct loader_instance *inst, VkInstance *created_instance);
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700488
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700489void loader_activate_instance_layer_extensions(struct loader_instance *inst, VkInstance created_inst);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600490
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700491VkResult loader_create_device_chain(const struct loader_physical_device_tramp *pd, const VkDeviceCreateInfo *pCreateInfo,
492 const VkAllocationCallbacks *pAllocator, const struct loader_instance *inst,
493 struct loader_device *dev);
Mark Young274e4bc2017-01-19 21:10:49 -0700494
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700495VkResult loader_validate_device_extensions(struct loader_physical_device_tramp *phys_dev,
496 const struct loader_layer_list *activated_device_layers,
497 const struct loader_extension_list *icd_exts, const VkDeviceCreateInfo *pCreateInfo);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600498
Mark Youngd4ff03b2017-01-12 12:27:19 -0700499VkResult setupLoaderTrampPhysDevs(VkInstance instance);
500VkResult setupLoaderTermPhysDevs(struct loader_instance *inst);
501
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700502VkStringErrorFlags vk_string_validate(const int max_length, const char *char_array);
Mark Lobodzinski8d325802016-02-02 18:53:34 -0700503
Mark Young74268f72017-05-02 10:49:46 -0600504#endif // LOADER_H