blob: 19a9c20c0bf82cfd424ad32be161d7db2f89b6dc [file] [log] [blame]
Chia-I Wuc1e0f962014-08-04 08:03:57 +08001/*
Chia-I Wuc1e0f962014-08-04 08:03:57 +08002 *
Lenny Komow2a680fb2019-02-25 21:37:33 -07003 * Copyright (c) 2014-2019 The Khronos Group Inc.
4 * Copyright (c) 2014-2019 Valve Corporation
5 * Copyright (c) 2014-2019 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>
Lenny Komow2a680fb2019-02-25 21:37:33 -070025 * Author: Lenny Komow <lenny@lunarg.com>
Courtney Goeltzenleuchterb9ce3952015-10-30 11:14:30 -060026 *
Chia-I Wuc1e0f962014-08-04 08:03:57 +080027 */
28
29#ifndef LOADER_H
30#define LOADER_H
31
David Pinedoa5036622015-11-06 12:54:48 -070032#include <vulkan/vulkan.h>
Aaron Karp95c5f952016-03-13 16:41:59 -040033#include "vk_loader_platform.h"
Mark Lobodzinski663818f2016-05-24 16:04:56 -060034#include "vk_loader_layer.h"
David Pinedoa5036622015-11-06 12:54:48 -070035#include <vulkan/vk_layer.h>
36#include <vulkan/vk_icd.h>
Chia-I Wufe333ed2015-04-11 15:34:07 +080037#include <assert.h>
Lenny Komow700483f2018-06-25 14:09:51 -060038#include "vk_layer_dispatch_table.h"
Mark Youngd4e5ba42017-02-28 09:58:04 -070039#include "vk_loader_extensions.h"
Chia-I Wufe333ed2015-04-11 15:34:07 +080040
Chia-I Wuc1e0f962014-08-04 08:03:57 +080041#if defined(__GNUC__) && __GNUC__ >= 4
Jon Ashburn1c75aec2016-02-02 17:47:28 -070042#define LOADER_EXPORT __attribute__((visibility("default")))
Chia-I Wuc1e0f962014-08-04 08:03:57 +080043#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
Jon Ashburn1c75aec2016-02-02 17:47:28 -070044#define LOADER_EXPORT __attribute__((visibility("default")))
Chia-I Wuc1e0f962014-08-04 08:03:57 +080045#else
Jon Ashburn1c75aec2016-02-02 17:47:28 -070046#define LOADER_EXPORT
Chia-I Wuc1e0f962014-08-04 08:03:57 +080047#endif
48
Mark Young74dd5d12016-06-30 13:02:42 -060049// A debug option to disable allocators at compile time to investigate future issues.
50#define DEBUG_DISABLE_APP_ALLOCATORS 0
51
Jon Ashburnb2379c52015-08-04 10:22:33 -060052#define MAX_STRING_SIZE 1024
Jon Ashburn13482452015-05-12 17:26:48 -060053
Mark Young274e4bc2017-01-19 21:10:49 -070054// This is defined in vk_layer.h, but if there's problems we need to create the define
55// here.
56#ifndef MAX_NUM_UNKNOWN_EXTS
57#define MAX_NUM_UNKNOWN_EXTS 250
58#endif
59
Mark Young74268f72017-05-02 10:49:46 -060060enum layer_type_flags {
61 VK_LAYER_TYPE_FLAG_INSTANCE_LAYER = 0x1, // If not set, indicates Device layer
62 VK_LAYER_TYPE_FLAG_EXPLICIT_LAYER = 0x2, // If not set, indicates Implicit layer
63 VK_LAYER_TYPE_FLAG_META_LAYER = 0x4, // If not set, indicates standard layer
Jon Ashburn399c9162015-07-02 09:40:15 -060064};
65
Mark Lobodzinski8d325802016-02-02 18:53:34 -070066typedef enum VkStringErrorFlagBits {
Jon Ashburnb1cdf2e2016-02-10 20:50:19 -070067 VK_STRING_ERROR_NONE = 0x00000000,
68 VK_STRING_ERROR_LENGTH = 0x00000001,
69 VK_STRING_ERROR_BAD_DATA = 0x00000002,
Mark Lobodzinski8d325802016-02-02 18:53:34 -070070} VkStringErrorFlagBits;
71typedef VkFlags VkStringErrorFlags;
72
Jon Ashburnb1cdf2e2016-02-10 20:50:19 -070073static const int MaxLoaderStringLength = 256;
74static const char UTF8_ONE_BYTE_CODE = 0xC0;
75static const char UTF8_ONE_BYTE_MASK = 0xE0;
76static const char UTF8_TWO_BYTE_CODE = 0xE0;
77static const char UTF8_TWO_BYTE_MASK = 0xF0;
78static const char UTF8_THREE_BYTE_CODE = 0xF0;
79static const char UTF8_THREE_BYTE_MASK = 0xF8;
80static const char UTF8_DATA_BYTE_CODE = 0x80;
81static const char UTF8_DATA_BYTE_MASK = 0xC0;
Mark Lobodzinski8d325802016-02-02 18:53:34 -070082
Jon Ashburn6b00b472015-12-10 08:51:10 -070083// form of all dynamic lists/arrays
84// only the list element should be changed
85struct loader_generic_list {
86 size_t capacity;
87 uint32_t count;
88 void *list;
89};
90
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060091struct loader_extension_list {
92 size_t capacity;
93 uint32_t count;
Jon Ashburnb7d327c2015-08-04 11:14:18 -060094 VkExtensionProperties *list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060095};
96
Jon Ashburn92cdb012015-12-10 18:17:34 -070097struct loader_dev_ext_props {
98 VkExtensionProperties props;
99 uint32_t entrypoint_count;
100 char **entrypoints;
101};
102
103struct loader_device_extension_list {
104 size_t capacity;
105 uint32_t count;
106 struct loader_dev_ext_props *list;
107};
108
Jon Ashburn399c9162015-07-02 09:40:15 -0600109struct loader_name_value {
Jon Ashburnb2379c52015-08-04 10:22:33 -0600110 char name[MAX_STRING_SIZE];
111 char value[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600112};
113
Jon Ashburn399c9162015-07-02 09:40:15 -0600114struct loader_layer_functions {
Jon Ashburnb2379c52015-08-04 10:22:33 -0600115 char str_gipa[MAX_STRING_SIZE];
116 char str_gdpa[MAX_STRING_SIZE];
Mark Young274e4bc2017-01-19 21:10:49 -0700117 char str_negotiate_interface[MAX_STRING_SIZE];
118 PFN_vkNegotiateLoaderLayerInterfaceVersion negotiate_layer_interface;
Jon Ashburn399c9162015-07-02 09:40:15 -0600119 PFN_vkGetInstanceProcAddr get_instance_proc_addr;
120 PFN_vkGetDeviceProcAddr get_device_proc_addr;
Mark Young274e4bc2017-01-19 21:10:49 -0700121 PFN_GetPhysicalDeviceProcAddr get_physical_device_proc_addr;
Jon Ashburn399c9162015-07-02 09:40:15 -0600122};
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600123
Lenny Komow40761b02018-10-03 17:44:02 -0600124struct loader_override_expiration {
125 uint16_t year;
126 uint8_t month;
127 uint8_t day;
128 uint8_t hour;
129 uint8_t minute;
130};
131
Jon Ashburn399c9162015-07-02 09:40:15 -0600132struct loader_layer_properties {
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600133 VkLayerProperties info;
Mark Young74268f72017-05-02 10:49:46 -0600134 enum layer_type_flags type_flags;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700135 uint32_t interface_version; // PFN_vkNegotiateLoaderLayerInterfaceVersion
Jon Ashburnb4c24232015-08-20 16:35:30 -0600136 char lib_name[MAX_STRING_SIZE];
Jon Ashburnd3cf9552016-04-20 13:21:17 -0600137 loader_platform_dl_handle lib_handle;
Jon Ashburn399c9162015-07-02 09:40:15 -0600138 struct loader_layer_functions functions;
139 struct loader_extension_list instance_extension_list;
Jon Ashburn92cdb012015-12-10 18:17:34 -0700140 struct loader_device_extension_list device_extension_list;
Jon Ashburn399c9162015-07-02 09:40:15 -0600141 struct loader_name_value disable_env_var;
142 struct loader_name_value enable_env_var;
Mark Young74268f72017-05-02 10:49:46 -0600143 uint32_t num_component_layers;
144 char (*component_layer_names)[MAX_STRING_SIZE];
Lenny Komowe6b54942017-12-19 16:38:37 -0700145 struct {
146 char enumerate_instance_extension_properties[MAX_STRING_SIZE];
147 char enumerate_instance_layer_properties[MAX_STRING_SIZE];
Lenny Komow3b7c7f22018-02-13 15:58:47 -0700148 char enumerate_instance_version[MAX_STRING_SIZE];
Lenny Komowe6b54942017-12-19 16:38:37 -0700149 } pre_instance_functions;
Lenny Komow40761b02018-10-03 17:44:02 -0600150 uint32_t num_override_paths;
151 char (*override_paths)[MAX_STRING_SIZE];
152 bool is_override;
153 bool has_expiration;
154 struct loader_override_expiration expiration;
155 bool keep;
Lenny Komow2a680fb2019-02-25 21:37:33 -0700156 uint32_t num_blacklist_layers;
157 char (*blacklist_layer_names)[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600158};
159
160struct loader_layer_list {
161 size_t capacity;
162 uint32_t count;
163 struct loader_layer_properties *list;
Jon Ashburn13482452015-05-12 17:26:48 -0600164};
165
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700166struct loader_dispatch_hash_list {
167 size_t capacity;
168 uint32_t count;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700169 uint32_t *index; // index into the dev_ext dispatch table
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700170};
171
Mark Youngdd904ae2016-09-02 11:41:28 -0600172// loader_dispatch_hash_entry and loader_dev_ext_dispatch_table.dev_ext have
173// one to one correspondence; one loader_dispatch_hash_entry for one dev_ext
174// dispatch entry.
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700175// Also have a one to one correspondence with functions in dev_ext_trampoline.c
176struct loader_dispatch_hash_entry {
177 char *func_name;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700178 struct loader_dispatch_hash_list list; // to handle hashing collisions
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700179};
180
Lenny Komow2a614252018-05-09 11:09:58 -0600181typedef VkResult(VKAPI_PTR *PFN_vkDevExt)(VkDevice device);
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700182struct loader_dev_ext_dispatch_table {
Mark Young274e4bc2017-01-19 21:10:49 -0700183 PFN_vkDevExt dev_ext[MAX_NUM_UNKNOWN_EXTS];
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700184};
185
186struct loader_dev_dispatch_table {
187 VkLayerDispatchTable core_dispatch;
188 struct loader_dev_ext_dispatch_table ext_dispatch;
189};
190
Mark Young1d645262016-09-07 08:50:32 -0600191// per CreateDevice structure
Jon Ashburn10f4e822015-06-10 10:06:06 -0600192struct loader_device {
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700193 struct loader_dev_dispatch_table loader_dispatch;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700194 VkDevice chain_device; // device object from the dispatch chain
195 VkDevice icd_device; // device object from the icd
Mark Young0f7adeb2016-11-07 13:27:02 -0700196 struct loader_physical_device_term *phys_dev_term;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600197
Mark Young5c875062017-05-04 12:16:35 -0600198 // List of activated layers.
199 // app_ is the version based on exactly what the application asked for.
200 // This is what must be returned to the application on Enumerate calls.
201 // expanded_ is the version based on expanding meta-layers into their
202 // individual component layers. This is what is used internally.
203 struct loader_layer_list app_activated_layer_list;
204 struct loader_layer_list expanded_activated_layer_list;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600205
Mark Young74dd5d12016-06-30 13:02:42 -0600206 VkAllocationCallbacks alloc_callbacks;
207
Lenny Komowbc3d03f2018-03-29 13:25:38 -0600208 // List of activated device extensions that have terminators implemented in the loader
209 struct {
210 bool khr_swapchain_enabled;
211 bool khr_display_swapchain_enabled;
212 bool ext_debug_marker_enabled;
213 bool ext_debug_utils_enabled;
214 } extensions;
215
Jon Ashburn10f4e822015-06-10 10:06:06 -0600216 struct loader_device *next;
217};
218
Mark Youngd4e5ba42017-02-28 09:58:04 -0700219// Per ICD information
220
221// Per ICD structure
Mark Young26c19372016-11-03 14:27:13 -0600222struct loader_icd_term {
Jon Ashburnb4c24232015-08-20 16:35:30 -0600223 // pointers to find other structs
Mark Young26c19372016-11-03 14:27:13 -0600224 const struct loader_scanned_icd *scanned_icd;
Jon Ashburnb4c24232015-08-20 16:35:30 -0600225 const struct loader_instance *this_instance;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600226 struct loader_device *logical_device_list;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700227 VkInstance instance; // instance object from the icd
Mark Youngd4e5ba42017-02-28 09:58:04 -0700228 struct loader_icd_term_dispatch dispatch;
Mark Young4ab55c42016-12-12 16:14:55 -0700229
Mark Young26c19372016-11-03 14:27:13 -0600230 struct loader_icd_term *next;
Mark Young274e4bc2017-01-19 21:10:49 -0700231
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700232 PFN_PhysDevExt phys_dev_ext[MAX_NUM_UNKNOWN_EXTS];
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600233};
234
Mark Youngd4e5ba42017-02-28 09:58:04 -0700235// Per ICD library structure
Mark Young26c19372016-11-03 14:27:13 -0600236struct loader_icd_tramp_list {
Jon Ashburne0367472015-08-18 18:04:47 -0600237 size_t capacity;
238 uint32_t count;
Mark Young26c19372016-11-03 14:27:13 -0600239 struct loader_scanned_icd *scanned_list;
Jon Ashburne0367472015-08-18 18:04:47 -0600240};
241
Mark Young274e4bc2017-01-19 21:10:49 -0700242struct loader_instance_dispatch_table {
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700243 VkLayerInstanceDispatchTable layer_inst_disp; // must be first entry in structure
Mark Young274e4bc2017-01-19 21:10:49 -0700244
245 // Physical device functions unknown to the loader
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700246 PFN_PhysDevExt phys_dev_ext[MAX_NUM_UNKNOWN_EXTS];
Mark Young274e4bc2017-01-19 21:10:49 -0700247};
248
Mark Youngd4e5ba42017-02-28 09:58:04 -0700249// Per instance structure
Jon Ashburn13482452015-05-12 17:26:48 -0600250struct loader_instance {
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700251 struct loader_instance_dispatch_table *disp; // must be first entry in structure
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600252
Lenny Komowde705cc2017-10-25 15:26:15 -0600253 // Vulkan API version the app is intending to use.
254 uint16_t app_api_major_version;
255 uint16_t app_api_minor_version;
256
Mark Young0746fce2017-03-10 17:31:18 -0700257 // We need to manually track physical devices over time. If the user
258 // re-queries the information, we don't want to delete old data or
259 // create new data unless necessary.
Mark Young26c19372016-11-03 14:27:13 -0600260 uint32_t total_gpu_count;
Lenny Komowe93e87f2016-12-20 15:35:11 -0700261 uint32_t phys_dev_count_term;
262 struct loader_physical_device_term **phys_devs_term;
Lenny Komowaaa115c2016-12-19 17:11:40 -0700263 uint32_t phys_dev_count_tramp;
264 struct loader_physical_device_tramp **phys_devs_tramp;
Mark Young26c19372016-11-03 14:27:13 -0600265
Mark Young0746fce2017-03-10 17:31:18 -0700266 // We also need to manually track physical device groups, but we don't need
267 // loader specific structures since we have that content in the physical
268 // device stored internal to the public structures.
269 uint32_t phys_dev_group_count_term;
Lenny Komow31217432017-10-02 15:08:53 -0600270 struct VkPhysicalDeviceGroupProperties **phys_dev_groups_term;
Mark Young0746fce2017-03-10 17:31:18 -0700271 uint32_t phys_dev_group_count_tramp;
Lenny Komow31217432017-10-02 15:08:53 -0600272 struct VkPhysicalDeviceGroupProperties **phys_dev_groups_tramp;
Mark Young0746fce2017-03-10 17:31:18 -0700273
Jon Ashburn13482452015-05-12 17:26:48 -0600274 struct loader_instance *next;
Mark Young26c19372016-11-03 14:27:13 -0600275
276 uint32_t total_icd_count;
277 struct loader_icd_term *icd_terms;
278 struct loader_icd_tramp_list icd_tramp_list;
279
Mark Young274e4bc2017-01-19 21:10:49 -0700280 struct loader_dispatch_hash_entry dev_ext_disp_hash[MAX_NUM_UNKNOWN_EXTS];
281 struct loader_dispatch_hash_entry phys_dev_ext_disp_hash[MAX_NUM_UNKNOWN_EXTS];
Jon Ashburnb4c24232015-08-20 16:35:30 -0600282
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600283 struct loader_msg_callback_map_entry *icd_msg_callback_map;
284
Mark Young26c19372016-11-03 14:27:13 -0600285 struct loader_layer_list instance_layer_list;
Lenny Komow40761b02018-10-03 17:44:02 -0600286 bool override_layer_present;
Mark Young5c875062017-05-04 12:16:35 -0600287
288 // List of activated layers.
289 // app_ is the version based on exactly what the application asked for.
290 // This is what must be returned to the application on Enumerate calls.
291 // expanded_ is the version based on expanding meta-layers into their
292 // individual component layers. This is what is used internally.
293 struct loader_layer_list app_activated_layer_list;
294 struct loader_layer_list expanded_activated_layer_list;
295
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700296 VkInstance instance; // layers/ICD instance returned to trampoline
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700297
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700298 struct loader_extension_list ext_list; // icds and loaders extensions
Mark Young26c19372016-11-03 14:27:13 -0600299 union loader_instance_extension_enables enabled_known_extensions;
300
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600301 VkLayerDbgFunctionNode *DbgFunctionHead;
Mark Younge3e9b562017-11-09 10:37:04 -0700302 uint32_t num_tmp_report_callbacks;
303 VkDebugReportCallbackCreateInfoEXT *tmp_report_create_infos;
304 VkDebugReportCallbackEXT *tmp_report_callbacks;
305 uint32_t num_tmp_messengers;
306 VkDebugUtilsMessengerCreateInfoEXT *tmp_messenger_create_infos;
307 VkDebugUtilsMessengerEXT *tmp_messengers;
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600308
Chia-I Wu227c8b32015-10-27 18:04:07 +0800309 VkAllocationCallbacks alloc_callbacks;
Ian Elliotted33eb72015-07-06 14:36:13 -0600310
Ian Elliott54cea232015-10-30 15:28:23 -0600311 bool wsi_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700312#ifdef VK_USE_PLATFORM_WIN32_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600313 bool wsi_win32_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700314#endif
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700315#ifdef VK_USE_PLATFORM_WAYLAND_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600316 bool wsi_wayland_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700317#endif
318#ifdef VK_USE_PLATFORM_XCB_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600319 bool wsi_xcb_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700320#endif
321#ifdef VK_USE_PLATFORM_XLIB_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600322 bool wsi_xlib_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700323#endif
324#ifdef VK_USE_PLATFORM_ANDROID_KHR
325 bool wsi_android_surface_enabled;
326#endif
Karl Schultzd81ebfb2017-12-12 10:33:01 -0500327#ifdef VK_USE_PLATFORM_MACOS_MVK
328 bool wsi_macos_surface_enabled;
329#endif
330#ifdef VK_USE_PLATFORM_IOS_MVK
331 bool wsi_ios_surface_enabled;
332#endif
Jon Ashburncc370d02016-03-08 09:30:30 -0700333 bool wsi_display_enabled;
Lenny Komow61139782018-05-31 11:32:31 -0600334 bool wsi_display_props2_enabled;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600335};
336
Mark Youngd4e5ba42017-02-28 09:58:04 -0700337// VkPhysicalDevice requires special treatment by loader. Firstly, terminator
338// code must be able to get the struct loader_icd_term to call into the proper
339// driver (multiple ICD/gpu case). This can be accomplished by wrapping the
340// created VkPhysicalDevice in loader terminate_EnumeratePhysicalDevices().
341// Secondly, the loader must be able to handle wrapped by layer VkPhysicalDevice
342// in trampoline code. This implies, that the loader trampoline code must also
343// wrap the VkPhysicalDevice object in trampoline code. Thus, loader has to
344// wrap the VkPhysicalDevice created object twice. In trampoline code it can't
345// rely on the terminator object wrapping since a layer may also wrap. Since
346// trampoline code wraps the VkPhysicalDevice this means all loader trampoline
347// code that passes a VkPhysicalDevice should unwrap it.
Jon Ashburnfd02a0f2016-03-01 19:51:07 -0700348
Mark Youngd4e5ba42017-02-28 09:58:04 -0700349// Per enumerated PhysicalDevice structure, used to wrap in trampoline code and
350// also same structure used to wrap in terminator code
Jon Ashburnc3519e42016-03-24 15:49:57 -0600351struct loader_physical_device_tramp {
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700352 struct loader_instance_dispatch_table *disp; // must be first entry in structure
Piers Daniell82107a62016-03-29 11:51:11 -0600353 struct loader_instance *this_instance;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700354 VkPhysicalDevice phys_dev; // object from layers/loader terminator
Jon Ashburnc3519e42016-03-24 15:49:57 -0600355};
356
Mark Youngd4e5ba42017-02-28 09:58:04 -0700357// Per enumerated PhysicalDevice structure, used to wrap in terminator code
Mark Young26c19372016-11-03 14:27:13 -0600358struct loader_physical_device_term {
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700359 struct loader_instance_dispatch_table *disp; // must be first entry in structure
Mark Young26c19372016-11-03 14:27:13 -0600360 struct loader_icd_term *this_icd_term;
Mark Young5467d672016-06-28 10:52:43 -0600361 uint8_t icd_index;
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700362 VkPhysicalDevice phys_dev; // object from ICD
Jon Ashburn969caa42015-11-01 14:04:06 -0700363};
364
Jon Ashburn13482452015-05-12 17:26:48 -0600365struct loader_struct {
366 struct loader_instance *instances;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600367};
368
Mark Young26c19372016-11-03 14:27:13 -0600369struct loader_scanned_icd {
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600370 char *lib_name;
371 loader_platform_dl_handle handle;
Jon Ashburn27109e82015-11-17 17:35:40 -0700372 uint32_t api_version;
Jon Ashburn68b06d62016-04-25 11:09:37 -0600373 uint32_t interface_version;
Jon Ashburnc7ca48d2015-07-16 10:17:29 -0600374 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Mark Young274e4bc2017-01-19 21:10:49 -0700375 PFN_GetPhysicalDeviceProcAddr GetPhysicalDeviceProcAddr;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600376 PFN_vkCreateInstance CreateInstance;
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700377 PFN_vkEnumerateInstanceExtensionProperties EnumerateInstanceExtensionProperties;
Jon Ashburn13482452015-05-12 17:26:48 -0600378};
379
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700380static inline struct loader_instance *loader_instance(VkInstance instance) { return (struct loader_instance *)instance; }
Jon Ashburn399c9162015-07-02 09:40:15 -0600381
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700382static inline VkPhysicalDevice loader_unwrap_physical_device(VkPhysicalDevice physicalDevice) {
383 struct loader_physical_device_tramp *phys_dev = (struct loader_physical_device_tramp *)physicalDevice;
Jon Ashburnfd02a0f2016-03-01 19:51:07 -0700384 return phys_dev->phys_dev;
385}
386
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700387static inline void loader_set_dispatch(void *obj, const void *data) { *((const void **)obj) = data; }
Chia-I Wufe333ed2015-04-11 15:34:07 +0800388
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700389static inline VkLayerDispatchTable *loader_get_dispatch(const void *obj) { return *((VkLayerDispatchTable **)obj); }
Chia-I Wufe333ed2015-04-11 15:34:07 +0800390
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700391static inline struct loader_dev_dispatch_table *loader_get_dev_dispatch(const void *obj) {
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700392 return *((struct loader_dev_dispatch_table **)obj);
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700393}
394
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700395static inline VkLayerInstanceDispatchTable *loader_get_instance_layer_dispatch(const void *obj) {
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700396 return *((VkLayerInstanceDispatchTable **)obj);
Jon Ashburn13482452015-05-12 17:26:48 -0600397}
398
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700399static inline struct loader_instance_dispatch_table *loader_get_instance_dispatch(const void *obj) {
Mark Young274e4bc2017-01-19 21:10:49 -0700400 return *((struct loader_instance_dispatch_table **)obj);
401}
402
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700403static inline void loader_init_dispatch(void *obj, const void *data) {
Jon Ashburn167b2b12015-04-15 13:34:33 -0600404#ifdef DEBUG
Mark Lobodzinskie2859eb2017-01-26 13:34:13 -0700405 assert(valid_loader_magic_value(obj) &&
406 "Incompatible ICD, first dword must be initialized to "
407 "ICD_LOADER_MAGIC. See loader/README.md for details.");
Jon Ashburn167b2b12015-04-15 13:34:33 -0600408#endif
Chia-I Wufe333ed2015-04-11 15:34:07 +0800409
Jon Ashburn62a54d12015-05-01 18:00:33 -0600410 loader_set_dispatch(obj, data);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800411}
412
Mark Youngd4e5ba42017-02-28 09:58:04 -0700413// Global variables used across files
Jon Ashburn13482452015-05-12 17:26:48 -0600414extern struct loader_struct loader;
Jon Ashburnb4dee9c2015-08-28 15:19:27 -0600415extern THREAD_LOCAL_DECL struct loader_instance *tls_instance;
Lenny Komow3f14edc2018-01-19 11:22:28 -0700416#if defined(_WIN32) && !defined(LOADER_DYNAMIC_LIB)
417extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init);
418#endif
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600419extern loader_platform_thread_mutex loader_lock;
Jon Ashburn7d4d51c2015-09-22 13:11:00 -0600420extern loader_platform_thread_mutex loader_json_lock;
Jon Ashburn37e7f972015-04-06 10:58:22 -0600421
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600422struct loader_msg_callback_map_entry {
Courtney Goeltzenleuchter725db942015-12-09 15:48:16 -0700423 VkDebugReportCallbackEXT icd_obj;
424 VkDebugReportCallbackEXT loader_obj;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600425};
426
Mark Youngd4e5ba42017-02-28 09:58:04 -0700427// Helper function definitions
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700428void *loader_instance_heap_alloc(const struct loader_instance *instance, size_t size, VkSystemAllocationScope allocationScope);
429void loader_instance_heap_free(const struct loader_instance *instance, void *pMemory);
430void *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 -0600431 VkSystemAllocationScope alloc_scope);
Mark Young74dd5d12016-06-30 13:02:42 -0600432void *loader_instance_tls_heap_alloc(size_t size);
433void loader_instance_tls_heap_free(void *pMemory);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700434void *loader_device_heap_alloc(const struct loader_device *device, size_t size, VkSystemAllocationScope allocationScope);
Mark Young74dd5d12016-06-30 13:02:42 -0600435void loader_device_heap_free(const struct loader_device *device, void *pMemory);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700436void *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 -0600437 VkSystemAllocationScope alloc_scope);
Jon Ashburnc4e9ae62016-02-26 13:14:27 -0700438
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700439void loader_log(const struct loader_instance *inst, VkFlags msg_type, int32_t msg_code, const char *format, ...);
Jon Ashburn663f8312016-02-12 08:20:06 -0700440
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700441bool compare_vk_extension_properties(const VkExtensionProperties *op1, const VkExtensionProperties *op2);
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600442
Lenny Komow40761b02018-10-03 17:44:02 -0600443VkResult loaderValidateLayers(const struct loader_instance *inst, const uint32_t layer_count,
444 const char *const *ppEnabledLayerNames, const struct loader_layer_list *list);
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600445
Lenny Komow40761b02018-10-03 17:44:02 -0600446VkResult loader_validate_instance_extensions(struct loader_instance *inst, const struct loader_extension_list *icd_exts,
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700447 const struct loader_layer_list *instance_layer,
448 const VkInstanceCreateInfo *pCreateInfo);
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600449
Jon Ashburne0367472015-08-18 18:04:47 -0600450void loader_initialize(void);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700451bool has_vk_extension_property_array(const VkExtensionProperties *vk_ext_prop, const uint32_t count,
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700452 const VkExtensionProperties *ext_array);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700453bool has_vk_extension_property(const VkExtensionProperties *vk_ext_prop, const struct loader_extension_list *ext_list);
Jon Ashburn13482452015-05-12 17:26:48 -0600454
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700455VkResult loader_add_to_ext_list(const struct loader_instance *inst, struct loader_extension_list *ext_list,
456 uint32_t prop_list_count, const VkExtensionProperties *props);
457VkResult loader_add_to_dev_ext_list(const struct loader_instance *inst, struct loader_device_extension_list *ext_list,
458 const VkExtensionProperties *props, uint32_t entry_count, char **entrys);
Jon Ashburnc4e9ae62016-02-26 13:14:27 -0700459VkResult loader_add_device_extensions(const struct loader_instance *inst,
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700460 PFN_vkEnumerateDeviceExtensionProperties fpEnumerateDeviceExtensionProperties,
461 VkPhysicalDevice physical_device, const char *lib_name,
Jon Ashburnc4e9ae62016-02-26 13:14:27 -0700462 struct loader_extension_list *ext_list);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700463VkResult loader_init_generic_list(const struct loader_instance *inst, struct loader_generic_list *list_info, size_t element_size);
464void loader_destroy_generic_list(const struct loader_instance *inst, struct loader_generic_list *list);
Lenny Komow40761b02018-10-03 17:44:02 -0600465void loaderDestroyLayerList(const struct loader_instance *inst, struct loader_device *device, struct loader_layer_list *layer_list);
466void loaderDeleteLayerListAndProperties(const struct loader_instance *inst, struct loader_layer_list *layer_list);
467void loaderAddLayerNameToList(const struct loader_instance *inst, const char *name, const enum layer_type_flags type_flags,
468 const struct loader_layer_list *source_list, struct loader_layer_list *target_list,
469 struct loader_layer_list *expanded_target_list);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700470void loader_scanned_icd_clear(const struct loader_instance *inst, struct loader_icd_tramp_list *icd_tramp_list);
471VkResult loader_icd_scan(const struct loader_instance *inst, struct loader_icd_tramp_list *icd_tramp_list);
Lenny Komow40761b02018-10-03 17:44:02 -0600472void loaderScanForLayers(struct loader_instance *inst, struct loader_layer_list *instance_layers);
473void loaderScanForImplicitLayers(struct loader_instance *inst, struct loader_layer_list *instance_layers);
474bool loaderImplicitLayerIsEnabled(const struct loader_instance *inst, const struct loader_layer_properties *prop);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700475VkResult loader_get_icd_loader_instance_extensions(const struct loader_instance *inst, struct loader_icd_tramp_list *icd_tramp_list,
476 struct loader_extension_list *inst_exts);
477struct loader_icd_term *loader_get_icd_and_device(const VkDevice device, struct loader_device **found_dev, uint32_t *icd_index);
478void loader_init_dispatch_dev_ext(struct loader_instance *inst, struct loader_device *dev);
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700479void *loader_dev_ext_gpa(struct loader_instance *inst, const char *funcName);
480void *loader_get_dev_ext_trampoline(uint32_t index);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700481bool loader_phys_dev_ext_gpa(struct loader_instance *inst, const char *funcName, bool perform_checking, void **tramp_addr,
482 void **term_addr);
Mark Young274e4bc2017-01-19 21:10:49 -0700483void *loader_get_phys_dev_ext_tramp(uint32_t index);
484void *loader_get_phys_dev_ext_termin(uint32_t index);
Jon Ashburn1c75aec2016-02-02 17:47:28 -0700485struct loader_instance *loader_get_instance(const VkInstance instance);
Lenny Komow40761b02018-10-03 17:44:02 -0600486void loaderDeactivateLayers(const struct loader_instance *instance, struct loader_device *device, struct loader_layer_list *list);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700487struct loader_device *loader_create_logical_device(const struct loader_instance *inst, const VkAllocationCallbacks *pAllocator);
488void loader_add_logical_device(const struct loader_instance *inst, struct loader_icd_term *icd_term,
Piers Daniell82107a62016-03-29 11:51:11 -0600489 struct loader_device *found_dev);
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700490void loader_remove_logical_device(const struct loader_instance *inst, struct loader_icd_term *icd_term,
491 struct loader_device *found_dev, const VkAllocationCallbacks *pAllocator);
Mark Young15098392017-03-08 13:38:35 -0700492// NOTE: Outside of loader, this entry-point is only provided for error
Mark Young26c19372016-11-03 14:27:13 -0600493// cleanup.
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700494void loader_destroy_logical_device(const struct loader_instance *inst, struct loader_device *dev,
Mark Young74dd5d12016-06-30 13:02:42 -0600495 const VkAllocationCallbacks *pAllocator);
496
Lenny Komow40761b02018-10-03 17:44:02 -0600497VkResult loaderEnableInstanceLayers(struct loader_instance *inst, const VkInstanceCreateInfo *pCreateInfo,
498 const struct loader_layer_list *instance_layers);
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700499
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700500VkResult loader_create_instance_chain(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator,
501 struct loader_instance *inst, VkInstance *created_instance);
Courtney Goeltzenleuchter0bd705c2016-01-08 12:18:43 -0700502
Lenny Komow40761b02018-10-03 17:44:02 -0600503void loaderActivateInstanceLayerExtensions(struct loader_instance *inst, VkInstance created_inst);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600504
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700505VkResult loader_create_device_chain(const struct loader_physical_device_tramp *pd, const VkDeviceCreateInfo *pCreateInfo,
506 const VkAllocationCallbacks *pAllocator, const struct loader_instance *inst,
507 struct loader_device *dev);
Mark Young274e4bc2017-01-19 21:10:49 -0700508
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700509VkResult loader_validate_device_extensions(struct loader_physical_device_tramp *phys_dev,
510 const struct loader_layer_list *activated_device_layers,
511 const struct loader_extension_list *icd_exts, const VkDeviceCreateInfo *pCreateInfo);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600512
Mark Youngd4ff03b2017-01-12 12:27:19 -0700513VkResult setupLoaderTrampPhysDevs(VkInstance instance);
514VkResult setupLoaderTermPhysDevs(struct loader_instance *inst);
515
Mark Lobodzinski91c10752017-01-26 12:16:30 -0700516VkStringErrorFlags vk_string_validate(const int max_length, const char *char_array);
Mark Lobodzinski8d325802016-02-02 18:53:34 -0700517
Mark Young74268f72017-05-02 10:49:46 -0600518#endif // LOADER_H