Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 1 | /* |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 2 | * |
Courtney Goeltzenleuchter | fcbe16f | 2015-10-29 13:50:34 -0600 | [diff] [blame] | 3 | * Copyright (C) 2015 Valve Corporation |
Courtney Goeltzenleuchter | f821dad | 2015-12-02 14:53:22 -0700 | [diff] [blame] | 4 | * Copyright (C) 2015 Google Inc. |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | * copy of this software and associated documentation files (the "Software"), |
| 8 | * to deal in the Software without restriction, including without limitation |
| 9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 10 | * and/or sell copies of the Software, and to permit persons to whom the |
| 11 | * Software is furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included |
| 14 | * in all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 22 | * DEALINGS IN THE SOFTWARE. |
Chia-I Wu | 701f3f6 | 2014-09-02 08:32:09 +0800 | [diff] [blame] | 23 | * |
Courtney Goeltzenleuchter | 0555952 | 2015-10-30 11:14:30 -0600 | [diff] [blame] | 24 | * Author: Chia-I Wu <olvaffe@gmail.com> |
| 25 | * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> |
| 26 | * Author: Ian Elliott <ian@LunarG.com> |
| 27 | * Author: Jon Ashburn <jon@lunarg.com> |
| 28 | * |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 29 | */ |
Mark Lobodzinski | faa9081 | 2015-11-25 13:26:15 -0700 | [diff] [blame] | 30 | |
Jon Ashburn | 6b4d70c | 2014-10-22 18:13:16 -0600 | [diff] [blame] | 31 | #define _GNU_SOURCE |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 32 | #include <stdio.h> |
| 33 | #include <stdlib.h> |
| 34 | #include <stdarg.h> |
| 35 | #include <stdbool.h> |
| 36 | #include <string.h> |
| 37 | |
Chia-I Wu | 13a61a5 | 2014-08-04 11:18:20 +0800 | [diff] [blame] | 38 | #include <sys/types.h> |
Johannes van Waveren | 9bd80501 | 2015-10-28 11:45:00 -0500 | [diff] [blame] | 39 | #if defined(_WIN32) |
Ian Elliott | 2d4ab1e | 2015-01-13 17:52:38 -0700 | [diff] [blame] | 40 | #include "dirent_on_windows.h" |
Johannes van Waveren | 9bd80501 | 2015-10-28 11:45:00 -0500 | [diff] [blame] | 41 | #else // _WIN32 |
Chia-I Wu | 13a61a5 | 2014-08-04 11:18:20 +0800 | [diff] [blame] | 42 | #include <dirent.h> |
Johannes van Waveren | 9bd80501 | 2015-10-28 11:45:00 -0500 | [diff] [blame] | 43 | #endif // _WIN32 |
Tobin Ehlis | b835d1b | 2015-07-03 10:34:49 -0600 | [diff] [blame] | 44 | #include "vk_loader_platform.h" |
Chia-I Wu | 1930060 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 45 | #include "loader.h" |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 46 | #include "gpa_helper.h" |
| 47 | #include "table_ops.h" |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 48 | #include "debug_report.h" |
Ian Elliott | 954fa34 | 2015-10-30 15:28:23 -0600 | [diff] [blame] | 49 | #include "wsi.h" |
David Pinedo | 9316d3b | 2015-11-06 12:54:48 -0700 | [diff] [blame] | 50 | #include "vulkan/vk_icd.h" |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 51 | #include "cJSON.h" |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 52 | #include "murmurhash.h" |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 53 | |
Courtney Goeltzenleuchter | ed48830 | 2015-06-01 14:09:34 -0600 | [diff] [blame] | 54 | static loader_platform_dl_handle loader_add_layer_lib( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 55 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | ed48830 | 2015-06-01 14:09:34 -0600 | [diff] [blame] | 56 | const char *chain_type, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 57 | struct loader_layer_properties *layer_prop); |
Courtney Goeltzenleuchter | ed48830 | 2015-06-01 14:09:34 -0600 | [diff] [blame] | 58 | |
| 59 | static void loader_remove_layer_lib( |
| 60 | struct loader_instance *inst, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 61 | struct loader_layer_properties *layer_prop); |
Courtney Goeltzenleuchter | ed48830 | 2015-06-01 14:09:34 -0600 | [diff] [blame] | 62 | |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 63 | struct loader_struct loader = {0}; |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 64 | // TLS for instance for alloc/free callbacks |
| 65 | THREAD_LOCAL_DECL struct loader_instance *tls_instance; |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 66 | |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 67 | static bool loader_init_generic_list( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 68 | const struct loader_instance *inst, |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 69 | struct loader_generic_list *list_info, |
| 70 | size_t element_size); |
Courtney Goeltzenleuchter | 9ec39ac | 2015-06-22 17:45:21 -0600 | [diff] [blame] | 71 | |
Courtney Goeltzenleuchter | 0ef13a0 | 2015-12-16 16:19:46 -0700 | [diff] [blame] | 72 | static size_t loader_platform_combine_path(char *dest, size_t len, ...); |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 73 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 74 | struct loader_phys_dev_per_icd { |
| 75 | uint32_t count; |
| 76 | VkPhysicalDevice *phys_devs; |
| 77 | }; |
| 78 | |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 79 | enum loader_debug { |
Courtney Goeltzenleuchter | f338765 | 2015-07-08 18:41:08 -0600 | [diff] [blame] | 80 | LOADER_INFO_BIT = 0x01, |
| 81 | LOADER_WARN_BIT = 0x02, |
| 82 | LOADER_PERF_BIT = 0x04, |
| 83 | LOADER_ERROR_BIT = 0x08, |
| 84 | LOADER_DEBUG_BIT = 0x10, |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | uint32_t g_loader_debug = 0; |
| 88 | uint32_t g_loader_log_msgs = 0; |
| 89 | |
Jon Ashburn | 6301a0f | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 90 | //thread safety lock for accessing global data structures such as "loader" |
| 91 | // all entrypoints on the instance chain need to be locked except GPA |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 92 | // additionally CreateDevice and DestroyDevice needs to be locked |
Jon Ashburn | 6301a0f | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 93 | loader_platform_thread_mutex loader_lock; |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 94 | loader_platform_thread_mutex loader_json_lock; |
Jon Ashburn | 6301a0f | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 95 | |
Ian Elliott | d3ef02f | 2015-07-06 14:36:13 -0600 | [diff] [blame] | 96 | // This table contains the loader's instance dispatch table, which contains |
| 97 | // default functions if no instance layers are activated. This contains |
| 98 | // pointers to "terminator functions". |
Jon Ashburn | 6301a0f | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 99 | const VkLayerInstanceDispatchTable instance_disp = { |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 100 | .GetInstanceProcAddr = vkGetInstanceProcAddr, |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 101 | .CreateInstance = loader_CreateInstance, |
| 102 | .DestroyInstance = loader_DestroyInstance, |
| 103 | .EnumeratePhysicalDevices = loader_EnumeratePhysicalDevices, |
Chris Forbes | bc0bb77 | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 104 | .GetPhysicalDeviceFeatures = loader_GetPhysicalDeviceFeatures, |
Courtney Goeltzenleuchter | 2caec86 | 2015-07-12 12:52:09 -0600 | [diff] [blame] | 105 | .GetPhysicalDeviceFormatProperties = loader_GetPhysicalDeviceFormatProperties, |
Jon Ashburn | 754864f | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 106 | .GetPhysicalDeviceImageFormatProperties = loader_GetPhysicalDeviceImageFormatProperties, |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 107 | .GetPhysicalDeviceProperties = loader_GetPhysicalDeviceProperties, |
Cody Northrop | d080288 | 2015-08-03 17:04:53 -0600 | [diff] [blame] | 108 | .GetPhysicalDeviceQueueFamilyProperties = loader_GetPhysicalDeviceQueueFamilyProperties, |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 109 | .GetPhysicalDeviceMemoryProperties = loader_GetPhysicalDeviceMemoryProperties, |
Courtney Goeltzenleuchter | 35985f6 | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 110 | .EnumerateDeviceExtensionProperties = loader_EnumerateDeviceExtensionProperties, |
| 111 | .EnumerateDeviceLayerProperties = loader_EnumerateDeviceLayerProperties, |
Mark Lobodzinski | 16e8bef | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 112 | .GetPhysicalDeviceSparseImageFormatProperties = loader_GetPhysicalDeviceSparseImageFormatProperties, |
Ian Elliott | fb42cd7 | 2015-11-25 14:43:02 -0700 | [diff] [blame] | 113 | .DestroySurfaceKHR = loader_DestroySurfaceKHR, |
Ian Elliott | 7e40db9 | 2015-08-21 15:09:33 -0600 | [diff] [blame] | 114 | .GetPhysicalDeviceSurfaceSupportKHR = loader_GetPhysicalDeviceSurfaceSupportKHR, |
Ian Elliott | 486c550 | 2015-11-19 16:05:09 -0700 | [diff] [blame] | 115 | .GetPhysicalDeviceSurfaceCapabilitiesKHR = loader_GetPhysicalDeviceSurfaceCapabilitiesKHR, |
| 116 | .GetPhysicalDeviceSurfaceFormatsKHR = loader_GetPhysicalDeviceSurfaceFormatsKHR, |
| 117 | .GetPhysicalDeviceSurfacePresentModesKHR = loader_GetPhysicalDeviceSurfacePresentModesKHR, |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 118 | .CreateDebugReportCallbackEXT = loader_CreateDebugReportCallback, |
| 119 | .DestroyDebugReportCallbackEXT = loader_DestroyDebugReportCallback, |
| 120 | .DebugReportMessageEXT = loader_DebugReportMessage, |
Ian Elliott | db4300a | 2015-11-23 10:17:23 -0700 | [diff] [blame] | 121 | #ifdef VK_USE_PLATFORM_MIR_KHR |
Jon Ashburn | f72a04b | 2015-11-25 17:55:49 -0700 | [diff] [blame] | 122 | .CreateMirSurfaceKHR = loader_CreateMirSurfaceKHR, |
Ian Elliott | 919fa30 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 123 | .GetPhysicalDeviceMirPresentationSupportKHR = loader_GetPhysicalDeviceMirPresentationSupportKHR, |
Ian Elliott | db4300a | 2015-11-23 10:17:23 -0700 | [diff] [blame] | 124 | #endif |
| 125 | #ifdef VK_USE_PLATFORM_WAYLAND_KHR |
Jon Ashburn | f72a04b | 2015-11-25 17:55:49 -0700 | [diff] [blame] | 126 | .CreateWaylandSurfaceKHR = loader_CreateWaylandSurfaceKHR, |
Ian Elliott | 919fa30 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 127 | .GetPhysicalDeviceWaylandPresentationSupportKHR = loader_GetPhysicalDeviceWaylandPresentationSupportKHR, |
Ian Elliott | db4300a | 2015-11-23 10:17:23 -0700 | [diff] [blame] | 128 | #endif |
| 129 | #ifdef VK_USE_PLATFORM_WIN32_KHR |
Jon Ashburn | f72a04b | 2015-11-25 17:55:49 -0700 | [diff] [blame] | 130 | .CreateWin32SurfaceKHR = loader_CreateWin32SurfaceKHR, |
Ian Elliott | 919fa30 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 131 | .GetPhysicalDeviceWin32PresentationSupportKHR = loader_GetPhysicalDeviceWin32PresentationSupportKHR, |
Ian Elliott | db4300a | 2015-11-23 10:17:23 -0700 | [diff] [blame] | 132 | #endif |
| 133 | #ifdef VK_USE_PLATFORM_XCB_KHR |
Jon Ashburn | f72a04b | 2015-11-25 17:55:49 -0700 | [diff] [blame] | 134 | .CreateXcbSurfaceKHR = loader_CreateXcbSurfaceKHR, |
Ian Elliott | 919fa30 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 135 | .GetPhysicalDeviceXcbPresentationSupportKHR = loader_GetPhysicalDeviceXcbPresentationSupportKHR, |
Ian Elliott | db4300a | 2015-11-23 10:17:23 -0700 | [diff] [blame] | 136 | #endif |
| 137 | #ifdef VK_USE_PLATFORM_XLIB_KHR |
Jon Ashburn | f72a04b | 2015-11-25 17:55:49 -0700 | [diff] [blame] | 138 | .CreateXlibSurfaceKHR = loader_CreateXlibSurfaceKHR, |
Ian Elliott | 919fa30 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 139 | .GetPhysicalDeviceXlibPresentationSupportKHR = loader_GetPhysicalDeviceXlibPresentationSupportKHR, |
Ian Elliott | db4300a | 2015-11-23 10:17:23 -0700 | [diff] [blame] | 140 | #endif |
Mark Lobodzinski | a8a5f85 | 2015-12-10 16:25:21 -0700 | [diff] [blame] | 141 | #ifdef VK_USE_PLATFORM_ANDROID_KHR |
| 142 | .CreateAndroidSurfaceKHR = loader_CreateAndroidSurfaceKHR, |
| 143 | #endif |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 144 | }; |
| 145 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 146 | LOADER_PLATFORM_THREAD_ONCE_DECLARATION(once_init); |
Ian Elliott | 2d4ab1e | 2015-01-13 17:52:38 -0700 | [diff] [blame] | 147 | |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 148 | void* loader_heap_alloc( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 149 | const struct loader_instance *instance, |
| 150 | size_t size, |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 151 | VkSystemAllocationScope alloc_scope) |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 152 | { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 153 | if (instance && instance->alloc_callbacks.pfnAllocation) { |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 154 | /* TODO: What should default alignment be? 1, 4, 8, other? */ |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 155 | return instance->alloc_callbacks.pfnAllocation(instance->alloc_callbacks.pUserData, size, 4, alloc_scope); |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 156 | } |
| 157 | return malloc(size); |
| 158 | } |
| 159 | |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 160 | void loader_heap_free( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 161 | const struct loader_instance *instance, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 162 | void *pMemory) |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 163 | { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 164 | if (pMemory == NULL) return; |
Jon Ashburn | eacfa3a | 2015-08-14 12:51:47 -0600 | [diff] [blame] | 165 | if (instance && instance->alloc_callbacks.pfnFree) { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 166 | instance->alloc_callbacks.pfnFree(instance->alloc_callbacks.pUserData, pMemory); |
Jon Ashburn | d2c171b | 2015-08-13 08:28:48 -0600 | [diff] [blame] | 167 | return; |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 168 | } |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 169 | free(pMemory); |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 170 | } |
| 171 | |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 172 | void* loader_heap_realloc( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 173 | const struct loader_instance *instance, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 174 | void *pMemory, |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 175 | size_t orig_size, |
| 176 | size_t size, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 177 | VkSystemAllocationScope alloc_scope) |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 178 | { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 179 | if (pMemory == NULL || orig_size == 0) |
Chia-I Wu | f7458c5 | 2015-10-26 21:10:41 +0800 | [diff] [blame] | 180 | return loader_heap_alloc(instance, size, alloc_scope); |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 181 | if (size == 0) { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 182 | loader_heap_free(instance, pMemory); |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 183 | return NULL; |
| 184 | } |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 185 | if (instance && instance->alloc_callbacks.pfnAllocation) { |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 186 | if (size <= orig_size) { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 187 | memset(((uint8_t *)pMemory) + size, 0, orig_size - size); |
| 188 | return pMemory; |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 189 | } |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 190 | void *new_ptr = instance->alloc_callbacks.pfnAllocation(instance->alloc_callbacks.pUserData, size, 4, alloc_scope); |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 191 | if (!new_ptr) |
| 192 | return NULL; |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 193 | memcpy(new_ptr, pMemory, orig_size); |
| 194 | instance->alloc_callbacks.pfnFree(instance->alloc_callbacks.pUserData, pMemory); |
Jon Ashburn | e3753b3 | 2015-10-21 16:09:27 -0600 | [diff] [blame] | 195 | return new_ptr; |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 196 | } |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 197 | return realloc(pMemory, size); |
Jon Ashburn | c82eb1c | 2015-08-27 15:23:52 -0600 | [diff] [blame] | 198 | } |
| 199 | |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 200 | void *loader_tls_heap_alloc(size_t size) |
| 201 | { |
Chia-I Wu | cf804e8 | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 202 | return loader_heap_alloc(tls_instance, size, VK_SYSTEM_ALLOCATION_SCOPE_COMMAND); |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 203 | } |
| 204 | |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 205 | void loader_tls_heap_free(void *pMemory) |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 206 | { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 207 | loader_heap_free(tls_instance, pMemory); |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 208 | } |
| 209 | |
Courtney Goeltzenleuchter | 7347739 | 2015-12-03 13:48:01 -0700 | [diff] [blame] | 210 | static void loader_log(const struct loader_instance *inst, VkFlags msg_type, int32_t msg_code, |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 211 | const char *format, ...) |
| 212 | { |
Jon Ashburn | 86723b0 | 2015-07-31 15:47:59 -0600 | [diff] [blame] | 213 | char msg[512]; |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 214 | va_list ap; |
| 215 | int ret; |
| 216 | |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 217 | va_start(ap, format); |
| 218 | ret = vsnprintf(msg, sizeof(msg), format, ap); |
| 219 | if ((ret >= (int) sizeof(msg)) || ret < 0) { |
| 220 | msg[sizeof(msg)-1] = '\0'; |
| 221 | } |
| 222 | va_end(ap); |
| 223 | |
Courtney Goeltzenleuchter | 7347739 | 2015-12-03 13:48:01 -0700 | [diff] [blame] | 224 | if (inst) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 225 | util_DebugReportMessage(inst, msg_type, VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT, (uint64_t) inst, 0, msg_code, "loader", msg); |
Courtney Goeltzenleuchter | 7347739 | 2015-12-03 13:48:01 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | if (!(msg_type & g_loader_log_msgs)) { |
| 229 | return; |
| 230 | } |
| 231 | |
Ian Elliott | 4470a30 | 2015-02-17 10:33:47 -0700 | [diff] [blame] | 232 | #if defined(WIN32) |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 233 | OutputDebugString(msg); |
mschott | b9cdb78 | 2015-07-22 14:11:29 +0200 | [diff] [blame] | 234 | OutputDebugString("\n"); |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 235 | #endif |
| 236 | fputs(msg, stderr); |
| 237 | fputc('\n', stderr); |
| 238 | } |
| 239 | |
| 240 | #if defined(WIN32) |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 241 | static char *loader_get_next_path(char *path); |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 242 | /** |
| 243 | * Find the list of registry files (names within a key) in key "location". |
| 244 | * |
| 245 | * This function looks in the registry (hive = DEFAULT_VK_REGISTRY_HIVE) key as given in "location" |
| 246 | * for a list or name/values which are added to a returned list (function return value). |
| 247 | * The DWORD values within the key must be 0 or they are skipped. |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 248 | * Function return is a string with a ';' separated list of filenames. |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 249 | * Function return is NULL if no valid name/value pairs are found in the key, |
| 250 | * or the key is not found. |
| 251 | * |
| 252 | * \returns |
| 253 | * A string list of filenames as pointer. |
| 254 | * When done using the returned string list, pointer should be freed. |
| 255 | */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 256 | static char *loader_get_registry_files(const struct loader_instance *inst, char *location) |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 257 | { |
| 258 | LONG rtn_value; |
| 259 | HKEY hive, key; |
Piers Daniell | 524ec73 | 2015-11-05 16:58:26 -0700 | [diff] [blame] | 260 | DWORD access_flags; |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 261 | char name[2048]; |
| 262 | char *out = NULL; |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 263 | char *loc = location; |
| 264 | char *next; |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 265 | DWORD idx = 0; |
| 266 | DWORD name_size = sizeof(name); |
| 267 | DWORD value; |
| 268 | DWORD total_size = 4096; |
| 269 | DWORD value_size = sizeof(value); |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 270 | |
| 271 | while(*loc) |
| 272 | { |
| 273 | next = loader_get_next_path(loc); |
| 274 | hive = DEFAULT_VK_REGISTRY_HIVE; |
Piers Daniell | 524ec73 | 2015-11-05 16:58:26 -0700 | [diff] [blame] | 275 | access_flags = KEY_QUERY_VALUE; |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 276 | rtn_value = RegOpenKeyEx(hive, loc, 0, access_flags, &key); |
| 277 | if (rtn_value != ERROR_SUCCESS) { |
| 278 | // We didn't find the key. Try the 32-bit hive (where we've seen the |
| 279 | // key end up on some people's systems): |
| 280 | access_flags |= KEY_WOW64_32KEY; |
| 281 | rtn_value = RegOpenKeyEx(hive, loc, 0, access_flags, &key); |
| 282 | if (rtn_value != ERROR_SUCCESS) { |
| 283 | // We still couldn't find the key, so give up: |
| 284 | loc = next; |
| 285 | continue; |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 286 | } |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 287 | } |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 288 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 289 | while ((rtn_value = RegEnumValue(key, idx++, name, &name_size, NULL, NULL, (LPBYTE) &value, &value_size)) == ERROR_SUCCESS) { |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 290 | if (value_size == sizeof(value) && value == 0) { |
| 291 | if (out == NULL) { |
Courtney Goeltzenleuchter | 2961e1c | 2015-11-02 17:43:04 -0700 | [diff] [blame] | 292 | out = loader_heap_alloc(inst, total_size, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 293 | out[0] = '\0'; |
| 294 | } |
| 295 | else if (strlen(out) + name_size + 1 > total_size) { |
Courtney Goeltzenleuchter | 2961e1c | 2015-11-02 17:43:04 -0700 | [diff] [blame] | 296 | out = loader_heap_realloc(inst, out, total_size, total_size * 2, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 297 | total_size *= 2; |
| 298 | } |
| 299 | if (out == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 300 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Out of memory, failed loader_get_registry_files"); |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 301 | return NULL; |
| 302 | } |
| 303 | if (strlen(out) == 0) |
| 304 | snprintf(out, name_size + 1, "%s", name); |
| 305 | else |
| 306 | snprintf(out + strlen(out), name_size + 2, "%c%s", PATH_SEPERATOR, name); |
| 307 | } |
| 308 | name_size = 2048; |
| 309 | } |
| 310 | loc = next; |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 311 | } |
Tony Barbour | ea96890 | 2015-07-29 14:26:21 -0600 | [diff] [blame] | 312 | |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 313 | return out; |
| 314 | } |
| 315 | |
Ian Elliott | 4470a30 | 2015-02-17 10:33:47 -0700 | [diff] [blame] | 316 | #endif // WIN32 |
| 317 | |
Jon Ashburn | c7237a7 | 2015-08-03 09:08:46 -0600 | [diff] [blame] | 318 | /** |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 319 | * Combine path elements, separating each element with the platform-specific |
| 320 | * directory separator, and save the combined string to a destination buffer, |
| 321 | * not exceeding the given length. Path elements are given as variadic args, |
| 322 | * with a NULL element terminating the list. |
| 323 | * |
| 324 | * \returns the total length of the combined string, not including an ASCII |
| 325 | * NUL termination character. This length may exceed the available storage: |
| 326 | * in this case, the written string will be truncated to avoid a buffer |
| 327 | * overrun, and the return value will greater than or equal to the storage |
| 328 | * size. A NULL argument may be provided as the destination buffer in order |
| 329 | * to determine the required string length without actually writing a string. |
| 330 | */ |
| 331 | |
Courtney Goeltzenleuchter | 0ef13a0 | 2015-12-16 16:19:46 -0700 | [diff] [blame] | 332 | static size_t loader_platform_combine_path(char *dest, size_t len, ...) |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 333 | { |
Courtney Goeltzenleuchter | 0ef13a0 | 2015-12-16 16:19:46 -0700 | [diff] [blame] | 334 | size_t required_len = 0; |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 335 | va_list ap; |
| 336 | const char *component; |
| 337 | |
| 338 | va_start(ap, len); |
| 339 | |
| 340 | while((component = va_arg(ap, const char *))) { |
| 341 | if (required_len > 0) { |
| 342 | // This path element is not the first non-empty element; prepend |
| 343 | // a directory separator if space allows |
| 344 | if (dest && required_len + 1 < len) { |
| 345 | snprintf(dest + required_len, len - required_len, "%c", |
| 346 | DIRECTORY_SYMBOL); |
| 347 | } |
| 348 | required_len++; |
| 349 | } |
| 350 | |
| 351 | if (dest && required_len < len) { |
| 352 | strncpy(dest + required_len, component, len - required_len); |
| 353 | } |
| 354 | required_len += strlen(component); |
| 355 | } |
| 356 | |
| 357 | va_end(ap); |
| 358 | |
| 359 | // strncpy(3) won't add a NUL terminating byte in the event of truncation. |
| 360 | if (dest && required_len >= len) { |
| 361 | dest[len - 1] = '\0'; |
| 362 | } |
| 363 | |
| 364 | return required_len; |
| 365 | } |
| 366 | |
| 367 | |
| 368 | /** |
Jon Ashburn | c7237a7 | 2015-08-03 09:08:46 -0600 | [diff] [blame] | 369 | * Given string of three part form "maj.min.pat" convert to a vulkan version |
| 370 | * number. |
| 371 | */ |
| 372 | static uint32_t loader_make_version(const char *vers_str) |
| 373 | { |
Jon Ashburn | 432d276 | 2015-09-18 12:53:16 -0600 | [diff] [blame] | 374 | uint32_t vers = 0, major=0, minor=0, patch=0; |
Jon Ashburn | c7237a7 | 2015-08-03 09:08:46 -0600 | [diff] [blame] | 375 | char *minor_str= NULL; |
| 376 | char *patch_str = NULL; |
| 377 | char *cstr; |
| 378 | char *str; |
| 379 | |
| 380 | if (!vers_str) |
| 381 | return vers; |
| 382 | cstr = loader_stack_alloc(strlen(vers_str) + 1); |
| 383 | strcpy(cstr, vers_str); |
| 384 | while ((str = strchr(cstr, '.')) != NULL) { |
| 385 | if (minor_str == NULL) { |
| 386 | minor_str = str + 1; |
| 387 | *str = '\0'; |
| 388 | major = atoi(cstr); |
| 389 | } |
| 390 | else if (patch_str == NULL) { |
| 391 | patch_str = str + 1; |
| 392 | *str = '\0'; |
| 393 | minor = atoi(minor_str); |
| 394 | } |
| 395 | else { |
| 396 | return vers; |
| 397 | } |
| 398 | cstr = str + 1; |
| 399 | } |
| 400 | patch = atoi(patch_str); |
| 401 | |
| 402 | return VK_MAKE_VERSION(major, minor, patch); |
| 403 | |
| 404 | } |
| 405 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 406 | bool compare_vk_extension_properties(const VkExtensionProperties *op1, const VkExtensionProperties *op2) |
| 407 | { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 408 | return strcmp(op1->extensionName, op2->extensionName) == 0 ? true : false; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 409 | } |
| 410 | |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 411 | /** |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 412 | * Search the given ext_array for an extension |
| 413 | * matching the given vk_ext_prop |
| 414 | */ |
| 415 | bool has_vk_extension_property_array( |
| 416 | const VkExtensionProperties *vk_ext_prop, |
| 417 | const uint32_t count, |
| 418 | const VkExtensionProperties *ext_array) |
| 419 | { |
| 420 | for (uint32_t i = 0; i < count; i++) { |
| 421 | if (compare_vk_extension_properties(vk_ext_prop, &ext_array[i])) |
| 422 | return true; |
| 423 | } |
| 424 | return false; |
| 425 | } |
| 426 | |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 427 | /** |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 428 | * Search the given ext_list for an extension |
| 429 | * matching the given vk_ext_prop |
| 430 | */ |
| 431 | bool has_vk_extension_property( |
| 432 | const VkExtensionProperties *vk_ext_prop, |
| 433 | const struct loader_extension_list *ext_list) |
| 434 | { |
| 435 | for (uint32_t i = 0; i < ext_list->count; i++) { |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 436 | if (compare_vk_extension_properties(&ext_list->list[i], vk_ext_prop)) |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 437 | return true; |
| 438 | } |
| 439 | return false; |
| 440 | } |
| 441 | |
Jon Ashburn | b2ef137 | 2015-07-16 17:19:31 -0600 | [diff] [blame] | 442 | static inline bool loader_is_layer_type_device(const enum layer_type type) { |
| 443 | if ((type & VK_LAYER_TYPE_DEVICE_EXPLICIT) || |
| 444 | (type & VK_LAYER_TYPE_DEVICE_IMPLICIT)) |
| 445 | return true; |
| 446 | return false; |
| 447 | } |
| 448 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 449 | /* |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 450 | * Search the given layer list for a layer matching the given layer name |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 451 | */ |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 452 | static struct loader_layer_properties *loader_get_layer_property( |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 453 | const char *name, |
| 454 | const struct loader_layer_list *layer_list) |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 455 | { |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 456 | for (uint32_t i = 0; i < layer_list->count; i++) { |
| 457 | const VkLayerProperties *item = &layer_list->list[i].info; |
| 458 | if (strcmp(name, item->layerName) == 0) |
| 459 | return &layer_list->list[i]; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 460 | } |
| 461 | return NULL; |
| 462 | } |
| 463 | |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 464 | /** |
| 465 | * Get the next unused layer property in the list. Init the property to zero. |
| 466 | */ |
| 467 | static struct loader_layer_properties *loader_get_next_layer_property( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 468 | const struct loader_instance *inst, |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 469 | struct loader_layer_list *layer_list) |
| 470 | { |
| 471 | if (layer_list->capacity == 0) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 472 | layer_list->list = loader_heap_alloc(inst, |
| 473 | sizeof(struct loader_layer_properties) * 64, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 474 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 475 | if (layer_list->list == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 476 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Out of memory can't add any layer properties to list"); |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 477 | return NULL; |
| 478 | } |
| 479 | memset(layer_list->list, 0, sizeof(struct loader_layer_properties) * 64); |
| 480 | layer_list->capacity = sizeof(struct loader_layer_properties) * 64; |
| 481 | } |
| 482 | |
| 483 | // ensure enough room to add an entry |
| 484 | if ((layer_list->count + 1) * sizeof (struct loader_layer_properties) |
| 485 | > layer_list->capacity) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 486 | layer_list->list = loader_heap_realloc(inst, layer_list->list, |
| 487 | layer_list->capacity, |
| 488 | layer_list->capacity * 2, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 489 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 490 | if (layer_list->list == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 491 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 492 | "realloc failed for layer list"); |
| 493 | } |
| 494 | layer_list->capacity *= 2; |
| 495 | } |
| 496 | |
| 497 | layer_list->count++; |
| 498 | return &(layer_list->list[layer_list->count - 1]); |
| 499 | } |
| 500 | |
| 501 | /** |
| 502 | * Remove all layer properties entrys from the list |
| 503 | */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 504 | void loader_delete_layer_properties( |
| 505 | const struct loader_instance *inst, |
| 506 | struct loader_layer_list *layer_list) |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 507 | { |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 508 | uint32_t i, j; |
| 509 | struct loader_device_extension_list *dev_ext_list; |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 510 | if (!layer_list) |
| 511 | return; |
| 512 | |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 513 | for (i = 0; i < layer_list->count; i++) { |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 514 | loader_destroy_generic_list(inst, (struct loader_generic_list *) |
| 515 | &layer_list->list[i].instance_extension_list); |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 516 | dev_ext_list = &layer_list->list[i].device_extension_list; |
| 517 | if (dev_ext_list->capacity > 0 && dev_ext_list->list->entrypoint_count > 0) { |
| 518 | for (j= 0; j < dev_ext_list->list->entrypoint_count; j++) { |
| 519 | loader_heap_free(inst, dev_ext_list->list->entrypoints[j]); |
| 520 | } |
| 521 | loader_heap_free(inst, dev_ext_list->list->entrypoints); |
| 522 | } |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 523 | loader_destroy_generic_list(inst, (struct loader_generic_list *) |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 524 | dev_ext_list); |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 525 | } |
| 526 | layer_list->count = 0; |
| 527 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 528 | if (layer_list->capacity > 0) { |
| 529 | layer_list->capacity = 0; |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 530 | loader_heap_free(inst, layer_list->list); |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 531 | } |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 532 | |
| 533 | } |
| 534 | |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 535 | static void loader_add_instance_extensions( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 536 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 35985f6 | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 537 | const PFN_vkEnumerateInstanceExtensionProperties fp_get_props, |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 538 | const char *lib_name, |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 539 | struct loader_extension_list *ext_list) |
| 540 | { |
Courtney Goeltzenleuchter | 36eeb74 | 2015-12-21 16:41:47 -0700 | [diff] [blame] | 541 | uint32_t i, count = 0; |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 542 | VkExtensionProperties *ext_props; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 543 | VkResult res; |
| 544 | |
Courtney Goeltzenleuchter | 5c6cf47 | 2015-07-06 22:28:18 -0600 | [diff] [blame] | 545 | if (!fp_get_props) { |
Courtney Goeltzenleuchter | 35985f6 | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 546 | /* No EnumerateInstanceExtensionProperties defined */ |
Courtney Goeltzenleuchter | 5c6cf47 | 2015-07-06 22:28:18 -0600 | [diff] [blame] | 547 | return; |
| 548 | } |
| 549 | |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 550 | res = fp_get_props(NULL, &count, NULL); |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 551 | if (res != VK_SUCCESS) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 552 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Error getting Instance extension count from %s", lib_name); |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 553 | return; |
| 554 | } |
Jon Ashburn | 953bb3c | 2015-06-10 16:11:42 -0600 | [diff] [blame] | 555 | |
Courtney Goeltzenleuchter | 5c6cf47 | 2015-07-06 22:28:18 -0600 | [diff] [blame] | 556 | if (count == 0) { |
| 557 | /* No ExtensionProperties to report */ |
| 558 | return; |
| 559 | } |
| 560 | |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 561 | ext_props = loader_stack_alloc(count * sizeof(VkExtensionProperties)); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 562 | |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 563 | res = fp_get_props(NULL, &count, ext_props); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 564 | if (res != VK_SUCCESS) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 565 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Error getting Instance extensions from %s", lib_name); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 566 | return; |
| 567 | } |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 568 | |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 569 | for (i = 0; i < count; i++) { |
Courtney Goeltzenleuchter | 5304373 | 2015-07-12 13:20:05 -0600 | [diff] [blame] | 570 | char spec_version[64]; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 571 | |
| 572 | snprintf(spec_version, sizeof(spec_version), "%d.%d.%d", |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 573 | VK_MAJOR(ext_props[i].specVersion), |
| 574 | VK_MINOR(ext_props[i].specVersion), |
| 575 | VK_PATCH(ext_props[i].specVersion)); |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 576 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 577 | "Instance Extension: %s (%s) version %s", |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 578 | ext_props[i].extensionName, lib_name, spec_version); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 579 | loader_add_to_ext_list(inst, ext_list, 1, &ext_props[i]); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | return; |
| 583 | } |
| 584 | |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 585 | /* |
| 586 | * Initialize ext_list with the physical device extensions. |
| 587 | * The extension properties are passed as inputs in count and ext_props. |
| 588 | */ |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 589 | static VkResult loader_init_device_extensions( |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 590 | const struct loader_instance *inst, |
| 591 | struct loader_physical_device *phys_dev, |
| 592 | uint32_t count, |
| 593 | VkExtensionProperties *ext_props, |
| 594 | struct loader_extension_list *ext_list) |
| 595 | { |
| 596 | VkResult res; |
| 597 | uint32_t i; |
| 598 | |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 599 | if (!loader_init_generic_list(inst, (struct loader_generic_list *) ext_list, |
| 600 | sizeof(VkExtensionProperties))) { |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 601 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 602 | } |
| 603 | |
| 604 | for (i = 0; i < count; i++) { |
| 605 | char spec_version[64]; |
| 606 | |
| 607 | snprintf(spec_version, sizeof (spec_version), "%d.%d.%d", |
| 608 | VK_MAJOR(ext_props[i].specVersion), |
| 609 | VK_MINOR(ext_props[i].specVersion), |
| 610 | VK_PATCH(ext_props[i].specVersion)); |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 611 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 612 | "Device Extension: %s (%s) version %s", |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 613 | ext_props[i].extensionName, phys_dev->this_icd->this_icd_lib->lib_name, spec_version); |
| 614 | res = loader_add_to_ext_list(inst, ext_list, 1, &ext_props[i]); |
| 615 | if (res != VK_SUCCESS) |
| 616 | return res; |
| 617 | } |
| 618 | |
| 619 | return VK_SUCCESS; |
| 620 | } |
| 621 | |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 622 | static VkResult loader_add_device_extensions( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 623 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 624 | VkPhysicalDevice physical_device, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 625 | const char *lib_name, |
| 626 | struct loader_extension_list *ext_list) |
| 627 | { |
| 628 | uint32_t i, count; |
| 629 | VkResult res; |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 630 | VkExtensionProperties *ext_props; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 631 | |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 632 | res = loader_EnumerateDeviceExtensionProperties(physical_device, NULL, &count, NULL); |
| 633 | if (res == VK_SUCCESS && count > 0) { |
| 634 | ext_props = loader_stack_alloc(count * sizeof (VkExtensionProperties)); |
| 635 | if (!ext_props) |
| 636 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 637 | res = loader_EnumerateDeviceExtensionProperties(physical_device, NULL, &count, ext_props); |
| 638 | if (res != VK_SUCCESS) |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 639 | return res; |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 640 | for (i = 0; i < count; i++) { |
| 641 | char spec_version[64]; |
| 642 | |
| 643 | snprintf(spec_version, sizeof (spec_version), "%d.%d.%d", |
| 644 | VK_MAJOR(ext_props[i].specVersion), |
| 645 | VK_MINOR(ext_props[i].specVersion), |
| 646 | VK_PATCH(ext_props[i].specVersion)); |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 647 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 648 | "Device Extension: %s (%s) version %s", |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 649 | ext_props[i].extensionName, lib_name, spec_version); |
| 650 | res = loader_add_to_ext_list(inst, ext_list, 1, &ext_props[i]); |
| 651 | if (res != VK_SUCCESS) |
| 652 | return res; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 653 | } |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 654 | } else { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 655 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Error getting physical device extension info count from library %s", lib_name); |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 656 | return res; |
| 657 | } |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 658 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 659 | return VK_SUCCESS; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 660 | } |
| 661 | |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 662 | static bool loader_init_generic_list(const struct loader_instance *inst, |
| 663 | struct loader_generic_list *list_info, |
| 664 | size_t element_size) |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 665 | { |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 666 | list_info->capacity = 32 * element_size; |
| 667 | list_info->list = loader_heap_alloc(inst, list_info->capacity, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 668 | if (list_info->list == NULL) { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 669 | return false; |
| 670 | } |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 671 | memset(list_info->list, 0, list_info->capacity); |
| 672 | list_info->count = 0; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 673 | return true; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 674 | } |
| 675 | |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 676 | void loader_destroy_generic_list(const struct loader_instance *inst, |
| 677 | struct loader_generic_list *list) |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 678 | { |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 679 | loader_heap_free(inst, list->list); |
| 680 | list->count = 0; |
| 681 | list->capacity = 0; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 682 | } |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 683 | |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 684 | /* |
| 685 | * Append non-duplicate extension properties defined in props |
| 686 | * to the given ext_list. |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 687 | * Return |
| 688 | * Vk_SUCCESS on success |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 689 | */ |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 690 | VkResult loader_add_to_ext_list( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 691 | const struct loader_instance *inst, |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 692 | struct loader_extension_list *ext_list, |
| 693 | uint32_t prop_list_count, |
| 694 | const VkExtensionProperties *props) |
| 695 | { |
| 696 | uint32_t i; |
| 697 | const VkExtensionProperties *cur_ext; |
| 698 | |
| 699 | if (ext_list->list == NULL || ext_list->capacity == 0) { |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 700 | loader_init_generic_list(inst, (struct loader_generic_list *) ext_list, |
| 701 | sizeof(VkExtensionProperties)); |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | if (ext_list->list == NULL) |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 705 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 706 | |
| 707 | for (i = 0; i < prop_list_count; i++) { |
| 708 | cur_ext = &props[i]; |
| 709 | |
| 710 | // look for duplicates |
| 711 | if (has_vk_extension_property(cur_ext, ext_list)) { |
| 712 | continue; |
| 713 | } |
| 714 | |
| 715 | // add to list at end |
| 716 | // check for enough capacity |
| 717 | if (ext_list->count * sizeof(VkExtensionProperties) |
| 718 | >= ext_list->capacity) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 719 | |
| 720 | ext_list->list = loader_heap_realloc(inst, |
| 721 | ext_list->list, |
| 722 | ext_list->capacity, |
| 723 | ext_list->capacity * 2, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 724 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 725 | |
| 726 | if (ext_list->list == NULL) |
| 727 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 728 | |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 729 | // double capacity |
| 730 | ext_list->capacity *= 2; |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 731 | } |
| 732 | |
| 733 | memcpy(&ext_list->list[ext_list->count], cur_ext, sizeof(VkExtensionProperties)); |
| 734 | ext_list->count++; |
| 735 | } |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 736 | return VK_SUCCESS; |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 737 | } |
| 738 | |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 739 | /* |
| 740 | * Append one extension property defined in props with entrypoints |
| 741 | * defined in entrys to the given ext_list. |
| 742 | * Return |
| 743 | * Vk_SUCCESS on success |
| 744 | */ |
| 745 | VkResult loader_add_to_dev_ext_list( |
| 746 | const struct loader_instance *inst, |
| 747 | struct loader_device_extension_list *ext_list, |
| 748 | const VkExtensionProperties *props, |
| 749 | uint32_t entry_count, |
| 750 | char **entrys) |
| 751 | { |
| 752 | uint32_t idx; |
| 753 | if (ext_list->list == NULL || ext_list->capacity == 0) { |
| 754 | loader_init_generic_list(inst, (struct loader_generic_list *) ext_list, |
| 755 | sizeof(struct loader_dev_ext_props)); |
| 756 | } |
| 757 | |
| 758 | if (ext_list->list == NULL) |
| 759 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 760 | |
| 761 | idx =ext_list->count; |
| 762 | // add to list at end |
| 763 | // check for enough capacity |
| 764 | if (idx * sizeof (struct loader_dev_ext_props) |
| 765 | >= ext_list->capacity) { |
| 766 | |
| 767 | ext_list->list = loader_heap_realloc(inst, |
| 768 | ext_list->list, |
| 769 | ext_list->capacity, |
| 770 | ext_list->capacity * 2, |
| 771 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 772 | |
| 773 | if (ext_list->list == NULL) |
| 774 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 775 | |
| 776 | // double capacity |
| 777 | ext_list->capacity *= 2; |
| 778 | } |
| 779 | |
| 780 | memcpy(&ext_list->list[idx].props, props, sizeof(struct loader_dev_ext_props)); |
| 781 | ext_list->list[idx].entrypoint_count = entry_count; |
| 782 | ext_list->list[idx].entrypoints = loader_heap_alloc(inst, |
| 783 | sizeof(char *) * entry_count, |
| 784 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 785 | if (ext_list->list[idx].entrypoints == NULL) |
| 786 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 787 | for (uint32_t i = 0; i < entry_count; i++) { |
| 788 | ext_list->list[idx].entrypoints[i] = loader_heap_alloc(inst, |
| 789 | strlen(entrys[i]) + 1, |
| 790 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 791 | if (ext_list->list[idx].entrypoints[i] == NULL) |
| 792 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 793 | strcpy(ext_list->list[idx].entrypoints[i], entrys[i]); |
| 794 | } |
| 795 | ext_list->count++; |
| 796 | |
| 797 | return VK_SUCCESS; |
| 798 | } |
| 799 | |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 800 | /** |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 801 | * Search the given search_list for any layers in the props list. |
| 802 | * Add these to the output layer_list. Don't add duplicates to the output layer_list. |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 803 | */ |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 804 | static VkResult loader_add_layer_names_to_list( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 805 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 806 | struct loader_layer_list *output_list, |
| 807 | uint32_t name_count, |
| 808 | const char * const *names, |
| 809 | const struct loader_layer_list *search_list) |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 810 | { |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 811 | struct loader_layer_properties *layer_prop; |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 812 | VkResult err = VK_SUCCESS; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 813 | |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 814 | for (uint32_t i = 0; i < name_count; i++) { |
| 815 | const char *search_target = names[i]; |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 816 | layer_prop = loader_get_layer_property(search_target, search_list); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 817 | if (!layer_prop) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 818 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Unable to find layer %s", search_target); |
Courtney Goeltzenleuchter | 55659b7 | 2015-09-14 18:01:17 -0600 | [diff] [blame] | 819 | err = VK_ERROR_LAYER_NOT_PRESENT; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 820 | continue; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 821 | } |
| 822 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 823 | loader_add_to_layer_list(inst, output_list, 1, layer_prop); |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 824 | } |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 825 | |
| 826 | return err; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 827 | } |
| 828 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 829 | |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 830 | /* |
| 831 | * Manage lists of VkLayerProperties |
| 832 | */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 833 | static bool loader_init_layer_list(const struct loader_instance *inst, |
| 834 | struct loader_layer_list *list) |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 835 | { |
| 836 | list->capacity = 32 * sizeof(struct loader_layer_properties); |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 837 | list->list = loader_heap_alloc(inst, list->capacity, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 838 | if (list->list == NULL) { |
| 839 | return false; |
| 840 | } |
| 841 | memset(list->list, 0, list->capacity); |
| 842 | list->count = 0; |
| 843 | return true; |
| 844 | } |
| 845 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 846 | void loader_destroy_layer_list(const struct loader_instance *inst, |
| 847 | struct loader_layer_list *layer_list) |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 848 | { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 849 | loader_heap_free(inst, layer_list->list); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 850 | layer_list->count = 0; |
| 851 | layer_list->capacity = 0; |
| 852 | } |
| 853 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 854 | /* |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 855 | * Manage list of layer libraries (loader_lib_info) |
| 856 | */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 857 | static bool loader_init_layer_library_list(const struct loader_instance *inst, |
| 858 | struct loader_layer_library_list *list) |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 859 | { |
| 860 | list->capacity = 32 * sizeof(struct loader_lib_info); |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 861 | list->list = loader_heap_alloc(inst, list->capacity, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 862 | if (list->list == NULL) { |
| 863 | return false; |
| 864 | } |
| 865 | memset(list->list, 0, list->capacity); |
| 866 | list->count = 0; |
| 867 | return true; |
| 868 | } |
| 869 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 870 | void loader_destroy_layer_library_list(const struct loader_instance *inst, |
| 871 | struct loader_layer_library_list *list) |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 872 | { |
| 873 | for (uint32_t i = 0; i < list->count; i++) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 874 | loader_heap_free(inst, list->list[i].lib_name); |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 875 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 876 | loader_heap_free(inst, list->list); |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 877 | list->count = 0; |
| 878 | list->capacity = 0; |
| 879 | } |
| 880 | |
| 881 | void loader_add_to_layer_library_list( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 882 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 883 | struct loader_layer_library_list *list, |
| 884 | uint32_t item_count, |
| 885 | const struct loader_lib_info *new_items) |
| 886 | { |
| 887 | uint32_t i; |
| 888 | struct loader_lib_info *item; |
| 889 | |
| 890 | if (list->list == NULL || list->capacity == 0) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 891 | loader_init_layer_library_list(inst, list); |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 892 | } |
| 893 | |
| 894 | if (list->list == NULL) |
| 895 | return; |
| 896 | |
| 897 | for (i = 0; i < item_count; i++) { |
| 898 | item = (struct loader_lib_info *) &new_items[i]; |
| 899 | |
| 900 | // look for duplicates |
| 901 | for (uint32_t j = 0; j < list->count; j++) { |
| 902 | if (strcmp(list->list[i].lib_name, new_items->lib_name) == 0) { |
| 903 | continue; |
| 904 | } |
| 905 | } |
| 906 | |
| 907 | // add to list at end |
| 908 | // check for enough capacity |
| 909 | if (list->count * sizeof(struct loader_lib_info) |
| 910 | >= list->capacity) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 911 | |
| 912 | list->list = loader_heap_realloc(inst, |
| 913 | list->list, |
| 914 | list->capacity, |
| 915 | list->capacity * 2, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 916 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 917 | // double capacity |
| 918 | list->capacity *= 2; |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | memcpy(&list->list[list->count], item, sizeof(struct loader_lib_info)); |
| 922 | list->count++; |
| 923 | } |
| 924 | } |
| 925 | |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 926 | |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 927 | /* |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 928 | * Search the given layer list for a list |
| 929 | * matching the given VkLayerProperties |
| 930 | */ |
| 931 | bool has_vk_layer_property( |
| 932 | const VkLayerProperties *vk_layer_prop, |
| 933 | const struct loader_layer_list *list) |
| 934 | { |
| 935 | for (uint32_t i = 0; i < list->count; i++) { |
| 936 | if (strcmp(vk_layer_prop->layerName, list->list[i].info.layerName) == 0) |
| 937 | return true; |
| 938 | } |
| 939 | return false; |
| 940 | } |
| 941 | |
| 942 | /* |
| 943 | * Search the given layer list for a layer |
| 944 | * matching the given name |
| 945 | */ |
| 946 | bool has_layer_name( |
| 947 | const char *name, |
| 948 | const struct loader_layer_list *list) |
| 949 | { |
| 950 | for (uint32_t i = 0; i < list->count; i++) { |
| 951 | if (strcmp(name, list->list[i].info.layerName) == 0) |
| 952 | return true; |
| 953 | } |
| 954 | return false; |
| 955 | } |
| 956 | |
| 957 | /* |
| 958 | * Append non-duplicate layer properties defined in prop_list |
| 959 | * to the given layer_info list |
| 960 | */ |
| 961 | void loader_add_to_layer_list( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 962 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 963 | struct loader_layer_list *list, |
| 964 | uint32_t prop_list_count, |
| 965 | const struct loader_layer_properties *props) |
| 966 | { |
| 967 | uint32_t i; |
| 968 | struct loader_layer_properties *layer; |
| 969 | |
| 970 | if (list->list == NULL || list->capacity == 0) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 971 | loader_init_layer_list(inst, list); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | if (list->list == NULL) |
| 975 | return; |
| 976 | |
| 977 | for (i = 0; i < prop_list_count; i++) { |
| 978 | layer = (struct loader_layer_properties *) &props[i]; |
| 979 | |
| 980 | // look for duplicates |
| 981 | if (has_vk_layer_property(&layer->info, list)) { |
| 982 | continue; |
| 983 | } |
| 984 | |
| 985 | // add to list at end |
| 986 | // check for enough capacity |
| 987 | if (list->count * sizeof(struct loader_layer_properties) |
| 988 | >= list->capacity) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 989 | |
| 990 | list->list = loader_heap_realloc(inst, |
| 991 | list->list, |
| 992 | list->capacity, |
| 993 | list->capacity * 2, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 994 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 995 | // double capacity |
| 996 | list->capacity *= 2; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 997 | } |
| 998 | |
| 999 | memcpy(&list->list[list->count], layer, sizeof(struct loader_layer_properties)); |
| 1000 | list->count++; |
| 1001 | } |
| 1002 | } |
| 1003 | |
Jon Ashburn | bd332cc | 2015-07-07 10:27:45 -0600 | [diff] [blame] | 1004 | /** |
| 1005 | * Search the search_list for any layer with a name |
| 1006 | * that matches the given name and a type that matches the given type |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 1007 | * Add all matching layers to the found_list |
Jon Ashburn | bd332cc | 2015-07-07 10:27:45 -0600 | [diff] [blame] | 1008 | * Do not add if found loader_layer_properties is already |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 1009 | * on the found_list. |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1010 | */ |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 1011 | static void loader_find_layer_name_add_list( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1012 | const struct loader_instance *inst, |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 1013 | const char *name, |
Jon Ashburn | bd332cc | 2015-07-07 10:27:45 -0600 | [diff] [blame] | 1014 | const enum layer_type type, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 1015 | const struct loader_layer_list *search_list, |
| 1016 | struct loader_layer_list *found_list) |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1017 | { |
Jon Ashburn | 56151d6 | 2015-10-05 09:03:21 -0600 | [diff] [blame] | 1018 | bool found = false; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1019 | for (uint32_t i = 0; i < search_list->count; i++) { |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 1020 | struct loader_layer_properties *layer_prop = &search_list->list[i]; |
Jon Ashburn | bd332cc | 2015-07-07 10:27:45 -0600 | [diff] [blame] | 1021 | if (0 == strcmp(layer_prop->info.layerName, name) && |
| 1022 | (layer_prop->type & type)) { |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 1023 | /* Found a layer with the same name, add to found_list */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1024 | loader_add_to_layer_list(inst, found_list, 1, layer_prop); |
Jon Ashburn | 56151d6 | 2015-10-05 09:03:21 -0600 | [diff] [blame] | 1025 | found = true; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1026 | } |
| 1027 | } |
Jon Ashburn | 56151d6 | 2015-10-05 09:03:21 -0600 | [diff] [blame] | 1028 | if (!found) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1029 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Warning, couldn't find layer name %s to activate", name); |
Jon Ashburn | 56151d6 | 2015-10-05 09:03:21 -0600 | [diff] [blame] | 1030 | } |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1031 | } |
| 1032 | |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 1033 | static VkExtensionProperties *get_extension_property( |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 1034 | const char *name, |
| 1035 | const struct loader_extension_list *list) |
Jon Ashburn | fc2e38c | 2015-04-14 09:15:32 -0600 | [diff] [blame] | 1036 | { |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 1037 | for (uint32_t i = 0; i < list->count; i++) { |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 1038 | if (strcmp(name, list->list[i].extensionName) == 0) |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 1039 | return &list->list[i]; |
Jon Ashburn | fc2e38c | 2015-04-14 09:15:32 -0600 | [diff] [blame] | 1040 | } |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 1041 | return NULL; |
Jon Ashburn | fc2e38c | 2015-04-14 09:15:32 -0600 | [diff] [blame] | 1042 | } |
| 1043 | |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1044 | static VkExtensionProperties *get_dev_extension_property( |
| 1045 | const char *name, |
| 1046 | const struct loader_device_extension_list *list) |
| 1047 | { |
| 1048 | for (uint32_t i = 0; i < list->count; i++) { |
| 1049 | if (strcmp(name, list->list[i].props.extensionName) == 0) |
| 1050 | return &list->list[i].props; |
| 1051 | } |
| 1052 | return NULL; |
| 1053 | } |
| 1054 | |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 1055 | /* |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 1056 | * For Instance extensions implemented within the loader (i.e. DEBUG_REPORT |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 1057 | * the extension must provide two entry points for the loader to use: |
| 1058 | * - "trampoline" entry point - this is the address returned by GetProcAddr |
| 1059 | * and will always do what's necessary to support a global call. |
| 1060 | * - "terminator" function - this function will be put at the end of the |
Jon Ashburn | 232e3af | 2015-11-30 17:21:25 -0700 | [diff] [blame] | 1061 | * instance chain and will contain the necessary logic to call / process |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 1062 | * the extension for the appropriate ICDs that are available. |
| 1063 | * There is no generic mechanism for including these functions, the references |
| 1064 | * must be placed into the appropriate loader entry points. |
| 1065 | * GetInstanceProcAddr: call extension GetInstanceProcAddr to check for GetProcAddr requests |
| 1066 | * loader_coalesce_extensions(void) - add extension records to the list of global |
| 1067 | * extension available to the app. |
| 1068 | * instance_disp - add function pointer for terminator function to this array. |
| 1069 | * The extension itself should be in a separate file that will be |
| 1070 | * linked directly with the loader. |
| 1071 | */ |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 1072 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1073 | void loader_get_icd_loader_instance_extensions( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1074 | const struct loader_instance *inst, |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1075 | struct loader_icd_libs *icd_libs, |
| 1076 | struct loader_extension_list *inst_exts) |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 1077 | { |
Jon Ashburn | 5c6a46f | 2015-08-14 14:49:22 -0600 | [diff] [blame] | 1078 | struct loader_extension_list icd_exts; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1079 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, "Build ICD instance extension list"); |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 1080 | // traverse scanned icd list adding non-duplicate extensions to the list |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1081 | for (uint32_t i = 0; i < icd_libs->count; i++) { |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 1082 | loader_init_generic_list(inst, (struct loader_generic_list *) &icd_exts, |
| 1083 | sizeof(VkExtensionProperties)); |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 1084 | loader_add_instance_extensions(inst, icd_libs->list[i].EnumerateInstanceExtensionProperties, |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1085 | icd_libs->list[i].lib_name, |
Jon Ashburn | 5c6a46f | 2015-08-14 14:49:22 -0600 | [diff] [blame] | 1086 | &icd_exts); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1087 | loader_add_to_ext_list(inst, inst_exts, |
Jon Ashburn | 5c6a46f | 2015-08-14 14:49:22 -0600 | [diff] [blame] | 1088 | icd_exts.count, |
| 1089 | icd_exts.list); |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 1090 | loader_destroy_generic_list(inst, (struct loader_generic_list *) &icd_exts); |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 1091 | }; |
| 1092 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1093 | // Traverse loader's extensions, adding non-duplicate extensions to the list |
Ian Elliott | 954fa34 | 2015-10-30 15:28:23 -0600 | [diff] [blame] | 1094 | wsi_add_instance_extensions(inst, inst_exts); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1095 | debug_report_add_instance_extensions(inst, inst_exts); |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 1096 | } |
| 1097 | |
Jon Ashburn | 46674bf | 2015-12-11 09:41:34 -0700 | [diff] [blame] | 1098 | struct loader_physical_device *loader_get_physical_device(const VkPhysicalDevice physdev) |
| 1099 | { |
| 1100 | uint32_t i; |
| 1101 | for (struct loader_instance *inst = loader.instances; inst; inst = inst->next) { |
| 1102 | for (i = 0; i < inst->total_gpu_count; i++) { |
| 1103 | //TODO this aliases physDevices within instances, need for this |
| 1104 | // function to go away |
| 1105 | if (inst->phys_devs[i].disp == loader_get_instance_dispatch(physdev)) { |
| 1106 | return &inst->phys_devs[i]; |
| 1107 | } |
| 1108 | } |
| 1109 | } |
| 1110 | return NULL; |
| 1111 | } |
| 1112 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1113 | struct loader_icd *loader_get_icd_and_device(const VkDevice device, |
| 1114 | struct loader_device **found_dev) |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1115 | { |
| 1116 | *found_dev = NULL; |
| 1117 | for (struct loader_instance *inst = loader.instances; inst; inst = inst->next) { |
| 1118 | for (struct loader_icd *icd = inst->icds; icd; icd = icd->next) { |
| 1119 | for (struct loader_device *dev = icd->logical_device_list; dev; dev = dev->next) |
Jon Ashburn | e0e6457 | 2015-09-30 12:56:42 -0600 | [diff] [blame] | 1120 | /* Value comparison of device prevents object wrapping by layers */ |
| 1121 | if (loader_get_dispatch(dev->device) == loader_get_dispatch(device)) { |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1122 | *found_dev = dev; |
| 1123 | return icd; |
| 1124 | } |
| 1125 | } |
| 1126 | } |
| 1127 | return NULL; |
| 1128 | } |
| 1129 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1130 | static void loader_destroy_logical_device(const struct loader_instance *inst, |
| 1131 | struct loader_device *dev) |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1132 | { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1133 | loader_heap_free(inst, dev->app_extension_props); |
BogDan Vatra | 9ef0983 | 2016-01-04 14:05:49 +0200 | [diff] [blame] | 1134 | loader_destroy_layer_list(inst, &dev->activated_layer_list); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1135 | loader_heap_free(inst, dev); |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1136 | } |
| 1137 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1138 | static struct loader_device *loader_add_logical_device( |
| 1139 | const struct loader_instance *inst, |
| 1140 | const VkDevice dev, |
| 1141 | struct loader_device **device_list) |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1142 | { |
| 1143 | struct loader_device *new_dev; |
| 1144 | |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 1145 | new_dev = loader_heap_alloc(inst, sizeof(struct loader_device), VK_SYSTEM_ALLOCATION_SCOPE_DEVICE); |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1146 | if (!new_dev) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1147 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Failed to alloc struct laoder-device"); |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1148 | return NULL; |
| 1149 | } |
| 1150 | |
| 1151 | memset(new_dev, 0, sizeof(struct loader_device)); |
| 1152 | |
| 1153 | new_dev->next = *device_list; |
| 1154 | new_dev->device = dev; |
| 1155 | *device_list = new_dev; |
| 1156 | return new_dev; |
| 1157 | } |
| 1158 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1159 | void loader_remove_logical_device( |
| 1160 | const struct loader_instance *inst, |
Jon Ashburn | 781a7ae | 2015-11-19 15:43:26 -0700 | [diff] [blame] | 1161 | struct loader_icd *icd, |
| 1162 | struct loader_device *found_dev) |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1163 | { |
Jon Ashburn | 781a7ae | 2015-11-19 15:43:26 -0700 | [diff] [blame] | 1164 | struct loader_device *dev, *prev_dev; |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1165 | |
| 1166 | if (!icd || !found_dev) |
| 1167 | return; |
| 1168 | |
| 1169 | prev_dev = NULL; |
| 1170 | dev = icd->logical_device_list; |
| 1171 | while (dev && dev != found_dev) { |
| 1172 | prev_dev = dev; |
| 1173 | dev = dev->next; |
| 1174 | } |
| 1175 | |
| 1176 | if (prev_dev) |
| 1177 | prev_dev->next = found_dev->next; |
| 1178 | else |
| 1179 | icd->logical_device_list = found_dev->next; |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1180 | loader_destroy_logical_device(inst, found_dev); |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1181 | } |
| 1182 | |
| 1183 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1184 | static void loader_icd_destroy( |
| 1185 | struct loader_instance *ptr_inst, |
| 1186 | struct loader_icd *icd) |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 1187 | { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1188 | ptr_inst->total_icd_count--; |
Courtney Goeltzenleuchter | 1f157ac | 2015-06-14 19:57:15 -0600 | [diff] [blame] | 1189 | for (struct loader_device *dev = icd->logical_device_list; dev; ) { |
| 1190 | struct loader_device *next_dev = dev->next; |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1191 | loader_destroy_logical_device(ptr_inst, dev); |
Courtney Goeltzenleuchter | 1f157ac | 2015-06-14 19:57:15 -0600 | [diff] [blame] | 1192 | dev = next_dev; |
| 1193 | } |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 1194 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1195 | loader_heap_free(ptr_inst, icd); |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 1196 | } |
| 1197 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1198 | static struct loader_icd * loader_icd_create(const struct loader_instance *inst) |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 1199 | { |
| 1200 | struct loader_icd *icd; |
| 1201 | |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 1202 | icd = loader_heap_alloc(inst, sizeof(*icd), VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 1203 | if (!icd) |
| 1204 | return NULL; |
| 1205 | |
Courtney Goeltzenleuchter | 55001bb | 2014-10-28 10:29:27 -0600 | [diff] [blame] | 1206 | memset(icd, 0, sizeof(*icd)); |
| 1207 | |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 1208 | return icd; |
| 1209 | } |
| 1210 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1211 | static struct loader_icd *loader_icd_add( |
| 1212 | struct loader_instance *ptr_inst, |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 1213 | const struct loader_scanned_icds *icd_lib) |
Chia-I Wu | 13a61a5 | 2014-08-04 11:18:20 +0800 | [diff] [blame] | 1214 | { |
| 1215 | struct loader_icd *icd; |
| 1216 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1217 | icd = loader_icd_create(ptr_inst); |
Chia-I Wu | 13a61a5 | 2014-08-04 11:18:20 +0800 | [diff] [blame] | 1218 | if (!icd) |
| 1219 | return NULL; |
| 1220 | |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 1221 | icd->this_icd_lib = icd_lib; |
| 1222 | icd->this_instance = ptr_inst; |
| 1223 | |
Chia-I Wu | 13a61a5 | 2014-08-04 11:18:20 +0800 | [diff] [blame] | 1224 | /* prepend to the list */ |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 1225 | icd->next = ptr_inst->icds; |
| 1226 | ptr_inst->icds = icd; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1227 | ptr_inst->total_icd_count++; |
Chia-I Wu | 13a61a5 | 2014-08-04 11:18:20 +0800 | [diff] [blame] | 1228 | |
| 1229 | return icd; |
| 1230 | } |
| 1231 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1232 | void loader_scanned_icd_clear( |
| 1233 | const struct loader_instance *inst, |
| 1234 | struct loader_icd_libs *icd_libs) |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1235 | { |
| 1236 | if (icd_libs->capacity == 0) |
| 1237 | return; |
| 1238 | for (uint32_t i = 0; i < icd_libs->count; i++) { |
| 1239 | loader_platform_close_library(icd_libs->list[i].handle); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1240 | loader_heap_free(inst, icd_libs->list[i].lib_name); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1241 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1242 | loader_heap_free(inst, icd_libs->list); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1243 | icd_libs->capacity = 0; |
| 1244 | icd_libs->count = 0; |
| 1245 | icd_libs->list = NULL; |
| 1246 | } |
| 1247 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1248 | static void loader_scanned_icd_init(const struct loader_instance *inst, |
| 1249 | struct loader_icd_libs *icd_libs) |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1250 | { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1251 | loader_scanned_icd_clear(inst, icd_libs); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1252 | icd_libs->capacity = 8 * sizeof(struct loader_scanned_icds); |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 1253 | icd_libs->list = loader_heap_alloc(inst, icd_libs->capacity, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1254 | |
| 1255 | } |
| 1256 | |
| 1257 | static void loader_scanned_icd_add( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1258 | const struct loader_instance *inst, |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1259 | struct loader_icd_libs *icd_libs, |
Jon Ashburn | 005617f | 2015-11-17 17:35:40 -0700 | [diff] [blame] | 1260 | const char *filename, |
| 1261 | uint32_t api_version) |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1262 | { |
Ian Elliott | 2d4ab1e | 2015-01-13 17:52:38 -0700 | [diff] [blame] | 1263 | loader_platform_dl_handle handle; |
Tony Barbour | 1d2cd3f | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 1264 | PFN_vkCreateInstance fp_create_inst; |
Courtney Goeltzenleuchter | 35985f6 | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 1265 | PFN_vkEnumerateInstanceExtensionProperties fp_get_global_ext_props; |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1266 | PFN_vkGetInstanceProcAddr fp_get_proc_addr; |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1267 | struct loader_scanned_icds *new_node; |
| 1268 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1269 | /* TODO implement ref counting of libraries, for now this function leaves |
| 1270 | libraries open and the scanned_icd_clear closes them */ |
Ian Elliott | 2d4ab1e | 2015-01-13 17:52:38 -0700 | [diff] [blame] | 1271 | // Used to call: dlopen(filename, RTLD_LAZY); |
| 1272 | handle = loader_platform_open_library(filename); |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1273 | if (!handle) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1274 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, loader_platform_open_library_error(filename)); |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1275 | return; |
| 1276 | } |
| 1277 | |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1278 | #define LOOKUP_LD(func_ptr, func) do { \ |
Courtney Goeltzenleuchter | fb4efc6 | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 1279 | func_ptr = (PFN_vk ##func) loader_platform_get_proc_address(handle, "vk" #func); \ |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1280 | if (!func_ptr) { \ |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1281 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, loader_platform_get_proc_address_error("vk" #func)); \ |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1282 | return; \ |
| 1283 | } \ |
| 1284 | } while (0) |
| 1285 | |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1286 | LOOKUP_LD(fp_get_proc_addr, GetInstanceProcAddr); |
| 1287 | LOOKUP_LD(fp_create_inst, CreateInstance); |
Courtney Goeltzenleuchter | 35985f6 | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 1288 | LOOKUP_LD(fp_get_global_ext_props, EnumerateInstanceExtensionProperties); |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1289 | |
| 1290 | #undef LOOKUP_LD |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1291 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1292 | // check for enough capacity |
| 1293 | if ((icd_libs->count * sizeof(struct loader_scanned_icds)) >= icd_libs->capacity) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1294 | |
| 1295 | icd_libs->list = loader_heap_realloc(inst, |
| 1296 | icd_libs->list, |
| 1297 | icd_libs->capacity, |
| 1298 | icd_libs->capacity * 2, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 1299 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1300 | // double capacity |
| 1301 | icd_libs->capacity *= 2; |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1302 | } |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1303 | new_node = &(icd_libs->list[icd_libs->count]); |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1304 | |
| 1305 | new_node->handle = handle; |
Jon Ashburn | 005617f | 2015-11-17 17:35:40 -0700 | [diff] [blame] | 1306 | new_node->api_version = api_version; |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1307 | new_node->GetInstanceProcAddr = fp_get_proc_addr; |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 1308 | new_node->CreateInstance = fp_create_inst; |
Courtney Goeltzenleuchter | 35985f6 | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 1309 | new_node->EnumerateInstanceExtensionProperties = fp_get_global_ext_props; |
Jon Ashburn | 46d1f58 | 2015-01-28 11:01:35 -0700 | [diff] [blame] | 1310 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1311 | new_node->lib_name = (char *) loader_heap_alloc(inst, |
| 1312 | strlen(filename) + 1, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 1313 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1314 | if (!new_node->lib_name) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1315 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Out of memory can't add icd"); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 1316 | return; |
| 1317 | } |
| 1318 | strcpy(new_node->lib_name, filename); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1319 | icd_libs->count++; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 1320 | } |
Ian Elliott | 2d4ab1e | 2015-01-13 17:52:38 -0700 | [diff] [blame] | 1321 | |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1322 | static bool loader_icd_init_entrys(struct loader_icd *icd, |
| 1323 | VkInstance inst, |
| 1324 | const PFN_vkGetInstanceProcAddr fp_gipa) |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 1325 | { |
| 1326 | /* initialize entrypoint function pointers */ |
| 1327 | |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1328 | #define LOOKUP_GIPA(func, required) do { \ |
| 1329 | icd->func = (PFN_vk ##func) fp_gipa(inst, "vk" #func); \ |
| 1330 | if (!icd->func && required) { \ |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1331 | loader_log((struct loader_instance *) inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, \ |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1332 | loader_platform_get_proc_address_error("vk" #func)); \ |
| 1333 | return false; \ |
| 1334 | } \ |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 1335 | } while (0) |
| 1336 | |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1337 | LOOKUP_GIPA(GetDeviceProcAddr, true); |
| 1338 | LOOKUP_GIPA(DestroyInstance, true); |
| 1339 | LOOKUP_GIPA(EnumeratePhysicalDevices, true); |
| 1340 | LOOKUP_GIPA(GetPhysicalDeviceFeatures, true); |
| 1341 | LOOKUP_GIPA(GetPhysicalDeviceFormatProperties, true); |
Jon Ashburn | 754864f | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 1342 | LOOKUP_GIPA(GetPhysicalDeviceImageFormatProperties, true); |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1343 | LOOKUP_GIPA(CreateDevice, true); |
| 1344 | LOOKUP_GIPA(GetPhysicalDeviceProperties, true); |
| 1345 | LOOKUP_GIPA(GetPhysicalDeviceMemoryProperties, true); |
Cody Northrop | d080288 | 2015-08-03 17:04:53 -0600 | [diff] [blame] | 1346 | LOOKUP_GIPA(GetPhysicalDeviceQueueFamilyProperties, true); |
Courtney Goeltzenleuchter | 35985f6 | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 1347 | LOOKUP_GIPA(EnumerateDeviceExtensionProperties, true); |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1348 | LOOKUP_GIPA(GetPhysicalDeviceSparseImageFormatProperties, true); |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1349 | LOOKUP_GIPA(CreateDebugReportCallbackEXT, false); |
| 1350 | LOOKUP_GIPA(DestroyDebugReportCallbackEXT, false); |
Ian Elliott | 7e40db9 | 2015-08-21 15:09:33 -0600 | [diff] [blame] | 1351 | LOOKUP_GIPA(GetPhysicalDeviceSurfaceSupportKHR, false); |
Ian Elliott | 486c550 | 2015-11-19 16:05:09 -0700 | [diff] [blame] | 1352 | LOOKUP_GIPA(GetPhysicalDeviceSurfaceCapabilitiesKHR, false); |
| 1353 | LOOKUP_GIPA(GetPhysicalDeviceSurfaceFormatsKHR, false); |
| 1354 | LOOKUP_GIPA(GetPhysicalDeviceSurfacePresentModesKHR, false); |
Ian Elliott | 919fa30 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 1355 | #ifdef VK_USE_PLATFORM_WIN32_KHR |
| 1356 | LOOKUP_GIPA(GetPhysicalDeviceWin32PresentationSupportKHR, false); |
| 1357 | #endif |
| 1358 | #ifdef VK_USE_PLATFORM_XCB_KHR |
| 1359 | LOOKUP_GIPA(GetPhysicalDeviceXcbPresentationSupportKHR, false); |
| 1360 | #endif |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 1361 | |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1362 | #undef LOOKUP_GIPA |
Ian Elliott | d3ef02f | 2015-07-06 14:36:13 -0600 | [diff] [blame] | 1363 | |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 1364 | return true; |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 1365 | } |
| 1366 | |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1367 | static void loader_debug_init(void) |
| 1368 | { |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 1369 | const char *env, *orig; |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1370 | |
| 1371 | if (g_loader_debug > 0) |
| 1372 | return; |
| 1373 | |
| 1374 | g_loader_debug = 0; |
| 1375 | |
| 1376 | /* parse comma-separated debug options */ |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 1377 | orig = env = loader_getenv("VK_LOADER_DEBUG"); |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1378 | while (env) { |
| 1379 | const char *p = strchr(env, ','); |
| 1380 | size_t len; |
| 1381 | |
| 1382 | if (p) |
| 1383 | len = p - env; |
| 1384 | else |
| 1385 | len = strlen(env); |
| 1386 | |
| 1387 | if (len > 0) { |
Michael Worcester | 25c73e7 | 2015-12-10 18:06:24 +0000 | [diff] [blame] | 1388 | if (strncmp(env, "all", len) == 0) { |
| 1389 | g_loader_debug = ~0u; |
| 1390 | g_loader_log_msgs = ~0u; |
| 1391 | } else if (strncmp(env, "warn", len) == 0) { |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1392 | g_loader_debug |= LOADER_WARN_BIT; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1393 | g_loader_log_msgs |= VK_DEBUG_REPORT_WARN_BIT_EXT; |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1394 | } else if (strncmp(env, "info", len) == 0) { |
| 1395 | g_loader_debug |= LOADER_INFO_BIT; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1396 | g_loader_log_msgs |= VK_DEBUG_REPORT_INFO_BIT_EXT; |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1397 | } else if (strncmp(env, "perf", len) == 0) { |
| 1398 | g_loader_debug |= LOADER_PERF_BIT; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1399 | g_loader_log_msgs |= VK_DEBUG_REPORT_PERF_WARN_BIT_EXT; |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1400 | } else if (strncmp(env, "error", len) == 0) { |
| 1401 | g_loader_debug |= LOADER_ERROR_BIT; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1402 | g_loader_log_msgs |= VK_DEBUG_REPORT_ERROR_BIT_EXT; |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1403 | } else if (strncmp(env, "debug", len) == 0) { |
| 1404 | g_loader_debug |= LOADER_DEBUG_BIT; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1405 | g_loader_log_msgs |= VK_DEBUG_REPORT_DEBUG_BIT_EXT; |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1406 | } |
| 1407 | } |
| 1408 | |
| 1409 | if (!p) |
| 1410 | break; |
| 1411 | |
| 1412 | env = p + 1; |
| 1413 | } |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 1414 | |
| 1415 | loader_free_getenv(orig); |
Courtney Goeltzenleuchter | 880a2a7 | 2015-06-08 15:11:18 -0600 | [diff] [blame] | 1416 | } |
| 1417 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1418 | void loader_initialize(void) |
| 1419 | { |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 1420 | // initialize mutexs |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1421 | loader_platform_thread_create_mutex(&loader_lock); |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 1422 | loader_platform_thread_create_mutex(&loader_json_lock); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1423 | |
| 1424 | // initialize logging |
| 1425 | loader_debug_init(); |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 1426 | |
| 1427 | // initial cJSON to use alloc callbacks |
| 1428 | cJSON_Hooks alloc_fns = { |
| 1429 | .malloc_fn = loader_tls_heap_alloc, |
| 1430 | .free_fn = loader_tls_heap_free, |
| 1431 | }; |
| 1432 | cJSON_InitHooks(&alloc_fns); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 1433 | } |
| 1434 | |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1435 | struct loader_manifest_files { |
| 1436 | uint32_t count; |
| 1437 | char **filename_list; |
| 1438 | }; |
| 1439 | |
Courtney Goeltzenleuchter | 4af9bd1 | 2014-08-01 14:18:11 -0600 | [diff] [blame] | 1440 | /** |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1441 | * Get next file or dirname given a string list or registry key path |
Courtney Goeltzenleuchter | 4af9bd1 | 2014-08-01 14:18:11 -0600 | [diff] [blame] | 1442 | * |
| 1443 | * \returns |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1444 | * A pointer to first char in the next path. |
| 1445 | * The next path (or NULL) in the list is returned in next_path. |
| 1446 | * Note: input string is modified in some cases. PASS IN A COPY! |
| 1447 | */ |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1448 | static char *loader_get_next_path(char *path) |
| 1449 | { |
| 1450 | uint32_t len; |
| 1451 | char *next; |
| 1452 | |
| 1453 | if (path == NULL) |
| 1454 | return NULL; |
| 1455 | next = strchr(path, PATH_SEPERATOR); |
| 1456 | if (next == NULL) { |
| 1457 | len = (uint32_t) strlen(path); |
| 1458 | next = path + len; |
| 1459 | } |
| 1460 | else { |
| 1461 | *next = '\0'; |
| 1462 | next++; |
| 1463 | } |
| 1464 | |
| 1465 | return next; |
| 1466 | } |
| 1467 | |
| 1468 | /** |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 1469 | * Given a path which is absolute or relative, expand the path if relative or |
| 1470 | * leave the path unmodified if absolute. The base path to prepend to relative |
| 1471 | * paths is given in rel_base. |
Jon Ashburn | 1531517 | 2015-07-07 15:06:25 -0600 | [diff] [blame] | 1472 | * |
| 1473 | * \returns |
| 1474 | * A string in out_fullpath of the full absolute path |
Jon Ashburn | 1531517 | 2015-07-07 15:06:25 -0600 | [diff] [blame] | 1475 | */ |
| 1476 | static void loader_expand_path(const char *path, |
| 1477 | const char *rel_base, |
| 1478 | size_t out_size, |
| 1479 | char *out_fullpath) |
| 1480 | { |
| 1481 | if (loader_platform_is_path_absolute(path)) { |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 1482 | // do not prepend a base to an absolute path |
| 1483 | rel_base = ""; |
Jon Ashburn | 1531517 | 2015-07-07 15:06:25 -0600 | [diff] [blame] | 1484 | } |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 1485 | |
| 1486 | loader_platform_combine_path(out_fullpath, out_size, rel_base, path, NULL); |
Jon Ashburn | 1531517 | 2015-07-07 15:06:25 -0600 | [diff] [blame] | 1487 | } |
| 1488 | |
| 1489 | /** |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1490 | * Given a filename (file) and a list of paths (dir), try to find an existing |
| 1491 | * file in the paths. If filename already is a path then no |
| 1492 | * searching in the given paths. |
| 1493 | * |
| 1494 | * \returns |
| 1495 | * A string in out_fullpath of either the full path or file. |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1496 | */ |
| 1497 | static void loader_get_fullpath(const char *file, |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 1498 | const char *dirs, |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1499 | size_t out_size, |
| 1500 | char *out_fullpath) |
| 1501 | { |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 1502 | if (!loader_platform_is_path(file) && *dirs) { |
| 1503 | char *dirs_copy, *dir, *next_dir; |
| 1504 | |
| 1505 | dirs_copy = loader_stack_alloc(strlen(dirs) + 1); |
| 1506 | strcpy(dirs_copy, dirs); |
| 1507 | |
| 1508 | //find if file exists after prepending paths in given list |
| 1509 | for (dir = dirs_copy; |
| 1510 | *dir && (next_dir = loader_get_next_path(dir)); |
| 1511 | dir = next_dir) { |
| 1512 | loader_platform_combine_path(out_fullpath, out_size, dir, file, NULL); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1513 | if (loader_platform_file_exists(out_fullpath)) { |
| 1514 | return; |
| 1515 | } |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1516 | } |
| 1517 | } |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 1518 | |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1519 | snprintf(out_fullpath, out_size, "%s", file); |
| 1520 | } |
| 1521 | |
| 1522 | /** |
| 1523 | * Read a JSON file into a buffer. |
| 1524 | * |
| 1525 | * \returns |
| 1526 | * A pointer to a cJSON object representing the JSON parse tree. |
| 1527 | * This returned buffer should be freed by caller. |
| 1528 | */ |
Courtney Goeltzenleuchter | 7347739 | 2015-12-03 13:48:01 -0700 | [diff] [blame] | 1529 | static cJSON *loader_get_json(const struct loader_instance *inst, const char *filename) |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1530 | { |
| 1531 | FILE *file; |
| 1532 | char *json_buf; |
| 1533 | cJSON *json; |
| 1534 | uint64_t len; |
| 1535 | file = fopen(filename,"rb"); |
Jon Ashburn | aa4ea47 | 2015-08-27 08:30:50 -0600 | [diff] [blame] | 1536 | if (!file) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1537 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Couldn't open JSON file %s", filename); |
Jon Ashburn | aa4ea47 | 2015-08-27 08:30:50 -0600 | [diff] [blame] | 1538 | return NULL; |
| 1539 | } |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1540 | fseek(file, 0, SEEK_END); |
| 1541 | len = ftell(file); |
| 1542 | fseek(file, 0, SEEK_SET); |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 1543 | json_buf = (char*) loader_stack_alloc(len+1); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1544 | if (json_buf == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1545 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Out of memory can't get JSON file"); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1546 | fclose(file); |
| 1547 | return NULL; |
| 1548 | } |
| 1549 | if (fread(json_buf, sizeof(char), len, file) != len) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1550 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "fread failed can't get JSON file"); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1551 | fclose(file); |
| 1552 | return NULL; |
| 1553 | } |
| 1554 | fclose(file); |
| 1555 | json_buf[len] = '\0'; |
| 1556 | |
| 1557 | //parse text from file |
| 1558 | json = cJSON_Parse(json_buf); |
| 1559 | if (json == NULL) |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1560 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Can't parse JSON file %s", filename); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1561 | return json; |
| 1562 | } |
| 1563 | |
| 1564 | /** |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 1565 | * Do a deep copy of the loader_layer_properties structure. |
| 1566 | */ |
| 1567 | static void loader_copy_layer_properties( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1568 | const struct loader_instance *inst, |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 1569 | struct loader_layer_properties *dst, |
| 1570 | struct loader_layer_properties *src) |
| 1571 | { |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1572 | uint32_t cnt, i; |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 1573 | memcpy(dst, src, sizeof (*src)); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1574 | dst->instance_extension_list.list = loader_heap_alloc( |
| 1575 | inst, |
| 1576 | sizeof(VkExtensionProperties) * |
| 1577 | src->instance_extension_list.count, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 1578 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1579 | dst->instance_extension_list.capacity = sizeof(VkExtensionProperties) * |
| 1580 | src->instance_extension_list.count; |
| 1581 | memcpy(dst->instance_extension_list.list, src->instance_extension_list.list, |
| 1582 | dst->instance_extension_list.capacity); |
| 1583 | dst->device_extension_list.list = loader_heap_alloc( |
| 1584 | inst, |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1585 | sizeof(struct loader_dev_ext_props) * |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1586 | src->device_extension_list.count, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 1587 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1588 | |
| 1589 | dst->device_extension_list.capacity = sizeof(struct loader_dev_ext_props) * |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1590 | src->device_extension_list.count; |
| 1591 | memcpy(dst->device_extension_list.list, src->device_extension_list.list, |
| 1592 | dst->device_extension_list.capacity); |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1593 | if (src->device_extension_list.count > 0 && |
| 1594 | src->device_extension_list.list->entrypoint_count > 0) { |
| 1595 | cnt = src->device_extension_list.list->entrypoint_count; |
| 1596 | dst->device_extension_list.list->entrypoints = loader_heap_alloc( |
| 1597 | inst, |
| 1598 | sizeof(char *) * cnt, |
| 1599 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 1600 | for (i = 0; i < cnt; i++) { |
| 1601 | dst->device_extension_list.list->entrypoints[i] = loader_heap_alloc( |
| 1602 | inst, |
| 1603 | strlen(src->device_extension_list.list->entrypoints[i]) + 1, |
| 1604 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 1605 | strcpy(dst->device_extension_list.list->entrypoints[i], |
| 1606 | src->device_extension_list.list->entrypoints[i]); |
| 1607 | } |
| 1608 | } |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 1609 | } |
| 1610 | |
| 1611 | /** |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1612 | * Given a cJSON struct (json) of the top level JSON object from layer manifest |
| 1613 | * file, add entry to the layer_list. |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 1614 | * Fill out the layer_properties in this list entry from the input cJSON object. |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1615 | * |
| 1616 | * \returns |
| 1617 | * void |
| 1618 | * layer_list has a new entry and initialized accordingly. |
| 1619 | * If the json input object does not have all the required fields no entry |
| 1620 | * is added to the list. |
| 1621 | */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1622 | static void loader_add_layer_properties(const struct loader_instance *inst, |
| 1623 | struct loader_layer_list *layer_instance_list, |
Jon Ashburn | b2ef137 | 2015-07-16 17:19:31 -0600 | [diff] [blame] | 1624 | struct loader_layer_list *layer_device_list, |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1625 | cJSON *json, |
| 1626 | bool is_implicit, |
| 1627 | char *filename) |
| 1628 | { |
| 1629 | /* Fields in layer manifest file that are required: |
| 1630 | * (required) “file_format_version” |
| 1631 | * following are required in the "layer" object: |
| 1632 | * (required) "name" |
| 1633 | * (required) "type" |
| 1634 | * (required) “library_path” |
Jon Ashburn | f2a944f | 2015-11-18 16:46:48 -0700 | [diff] [blame] | 1635 | * (required) “api_version” |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1636 | * (required) “implementation_version” |
| 1637 | * (required) “description” |
| 1638 | * (required for implicit layers) “disable_environment” |
| 1639 | * |
| 1640 | * First get all required items and if any missing abort |
| 1641 | */ |
| 1642 | |
| 1643 | cJSON *item, *layer_node, *ext_item; |
| 1644 | char *temp; |
Jon Ashburn | f2a944f | 2015-11-18 16:46:48 -0700 | [diff] [blame] | 1645 | char *name, *type, *library_path, *api_version; |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1646 | char *implementation_version, *description; |
| 1647 | cJSON *disable_environment; |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1648 | int i, j; |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 1649 | VkExtensionProperties ext_prop; |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1650 | item = cJSON_GetObjectItem(json, "file_format_version"); |
| 1651 | if (item == NULL) { |
| 1652 | return; |
| 1653 | } |
| 1654 | char *file_vers = cJSON_PrintUnformatted(item); |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1655 | loader_log(inst, VK_DEBUG_REPORT_INFO_BIT_EXT, 0, "Found manifest file %s, version %s", |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1656 | filename, file_vers); |
Jon Ashburn | f2a944f | 2015-11-18 16:46:48 -0700 | [diff] [blame] | 1657 | if (strcmp(file_vers, "\"1.0.0\"") != 0) |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1658 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Unexpected manifest file version (expected 1.0.0), may cause errors"); |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 1659 | loader_tls_heap_free(file_vers); |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1660 | |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1661 | layer_node = cJSON_GetObjectItem(json, "layer"); |
| 1662 | if (layer_node == NULL) { |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 1663 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Can't find \"layer\" object in manifest JSON file, skipping this file"); |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1664 | return; |
| 1665 | } |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1666 | |
| 1667 | // loop through all "layer" objects in the file |
| 1668 | do { |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1669 | #define GET_JSON_OBJECT(node, var) { \ |
| 1670 | var = cJSON_GetObjectItem(node, #var); \ |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1671 | if (var == NULL) { \ |
| 1672 | layer_node = layer_node->next; \ |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 1673 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0,\ |
| 1674 | "Didn't find required layer object %s in manifest JSON file, skipping this layer",\ |
| 1675 | #var); \ |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1676 | continue; \ |
| 1677 | } \ |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1678 | } |
| 1679 | #define GET_JSON_ITEM(node, var) { \ |
| 1680 | item = cJSON_GetObjectItem(node, #var); \ |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1681 | if (item == NULL) { \ |
| 1682 | layer_node = layer_node->next; \ |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 1683 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0,\ |
| 1684 | "Didn't find required layer value %s in manifest JSON file, skipping this layer",\ |
| 1685 | #var); \ |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1686 | continue; \ |
| 1687 | } \ |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1688 | temp = cJSON_Print(item); \ |
| 1689 | temp[strlen(temp) - 1] = '\0'; \ |
Jon Ashburn | f73e921 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 1690 | var = loader_stack_alloc(strlen(temp) + 1); \ |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1691 | strcpy(var, &temp[1]); \ |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 1692 | loader_tls_heap_free(temp); \ |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1693 | } |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1694 | GET_JSON_ITEM(layer_node, name) |
| 1695 | GET_JSON_ITEM(layer_node, type) |
| 1696 | GET_JSON_ITEM(layer_node, library_path) |
Jon Ashburn | f2a944f | 2015-11-18 16:46:48 -0700 | [diff] [blame] | 1697 | GET_JSON_ITEM(layer_node, api_version) |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1698 | GET_JSON_ITEM(layer_node, implementation_version) |
| 1699 | GET_JSON_ITEM(layer_node, description) |
| 1700 | if (is_implicit) { |
| 1701 | GET_JSON_OBJECT(layer_node, disable_environment) |
| 1702 | } |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1703 | #undef GET_JSON_ITEM |
| 1704 | #undef GET_JSON_OBJECT |
| 1705 | |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1706 | // add list entry |
Jon Ashburn | 432d276 | 2015-09-18 12:53:16 -0600 | [diff] [blame] | 1707 | struct loader_layer_properties *props=NULL; |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1708 | if (!strcmp(type, "DEVICE")) { |
| 1709 | if (layer_device_list == NULL) { |
| 1710 | layer_node = layer_node->next; |
| 1711 | continue; |
| 1712 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1713 | props = loader_get_next_layer_property(inst, layer_device_list); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1714 | props->type = (is_implicit) ? VK_LAYER_TYPE_DEVICE_IMPLICIT : VK_LAYER_TYPE_DEVICE_EXPLICIT; |
| 1715 | } |
| 1716 | if (!strcmp(type, "INSTANCE")) { |
| 1717 | if (layer_instance_list == NULL) { |
| 1718 | layer_node = layer_node->next; |
| 1719 | continue; |
| 1720 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1721 | props = loader_get_next_layer_property(inst, layer_instance_list); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1722 | props->type = (is_implicit) ? VK_LAYER_TYPE_INSTANCE_IMPLICIT : VK_LAYER_TYPE_INSTANCE_EXPLICIT; |
| 1723 | } |
| 1724 | if (!strcmp(type, "GLOBAL")) { |
| 1725 | if (layer_instance_list != NULL) |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1726 | props = loader_get_next_layer_property(inst, layer_instance_list); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1727 | else if (layer_device_list != NULL) |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1728 | props = loader_get_next_layer_property(inst, layer_device_list); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1729 | else { |
| 1730 | layer_node = layer_node->next; |
| 1731 | continue; |
| 1732 | } |
| 1733 | props->type = (is_implicit) ? VK_LAYER_TYPE_GLOBAL_IMPLICIT : VK_LAYER_TYPE_GLOBAL_EXPLICIT; |
| 1734 | } |
Jon Ashburn | b2ef137 | 2015-07-16 17:19:31 -0600 | [diff] [blame] | 1735 | |
Jon Ashburn | 432d276 | 2015-09-18 12:53:16 -0600 | [diff] [blame] | 1736 | if (props == NULL) { |
| 1737 | layer_node = layer_node->next; |
| 1738 | continue; |
| 1739 | } |
| 1740 | |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1741 | strncpy(props->info.layerName, name, sizeof (props->info.layerName)); |
| 1742 | props->info.layerName[sizeof (props->info.layerName) - 1] = '\0'; |
Jon Ashburn | 1531517 | 2015-07-07 15:06:25 -0600 | [diff] [blame] | 1743 | |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 1744 | char *fullpath = props->lib_name; |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1745 | char *rel_base; |
Jon Ashburn | 6e08ebd | 2015-12-01 17:11:02 -0700 | [diff] [blame] | 1746 | if (loader_platform_is_path(library_path)) { |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1747 | // a relative or absolute path |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 1748 | char *name_copy = loader_stack_alloc(strlen(filename) + 1); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1749 | strcpy(name_copy, filename); |
| 1750 | rel_base = loader_platform_dirname(name_copy); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1751 | loader_expand_path(library_path, rel_base, MAX_STRING_SIZE, fullpath); |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 1752 | } else { |
| 1753 | // a filename which is assumed in a system directory |
| 1754 | loader_get_fullpath(library_path, DEFAULT_VK_LAYERS_PATH, MAX_STRING_SIZE, fullpath); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1755 | } |
Jon Ashburn | f2a944f | 2015-11-18 16:46:48 -0700 | [diff] [blame] | 1756 | props->info.specVersion = loader_make_version(api_version); |
| 1757 | props->info.implementationVersion = atoi(implementation_version); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1758 | strncpy((char *) props->info.description, description, sizeof (props->info.description)); |
| 1759 | props->info.description[sizeof (props->info.description) - 1] = '\0'; |
| 1760 | if (is_implicit) { |
| 1761 | strncpy(props->disable_env_var.name, disable_environment->child->string, sizeof (props->disable_env_var.name)); |
| 1762 | props->disable_env_var.name[sizeof (props->disable_env_var.name) - 1] = '\0'; |
| 1763 | strncpy(props->disable_env_var.value, disable_environment->child->valuestring, sizeof (props->disable_env_var.value)); |
| 1764 | props->disable_env_var.value[sizeof (props->disable_env_var.value) - 1] = '\0'; |
| 1765 | } |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1766 | |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1767 | /** |
| 1768 | * Now get all optional items and objects and put in list: |
| 1769 | * functions |
| 1770 | * instance_extensions |
| 1771 | * device_extensions |
| 1772 | * enable_environment (implicit layers only) |
| 1773 | */ |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1774 | #define GET_JSON_OBJECT(node, var) { \ |
| 1775 | var = cJSON_GetObjectItem(node, #var); \ |
| 1776 | } |
| 1777 | #define GET_JSON_ITEM(node, var) { \ |
| 1778 | item = cJSON_GetObjectItem(node, #var); \ |
Jon Ashburn | 21c21ee | 2015-09-09 11:29:24 -0600 | [diff] [blame] | 1779 | if (item != NULL) { \ |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1780 | temp = cJSON_Print(item); \ |
Jon Ashburn | 21c21ee | 2015-09-09 11:29:24 -0600 | [diff] [blame] | 1781 | temp[strlen(temp) - 1] = '\0'; \ |
| 1782 | var = loader_stack_alloc(strlen(temp) + 1);\ |
| 1783 | strcpy(var, &temp[1]); \ |
| 1784 | loader_tls_heap_free(temp); \ |
| 1785 | } \ |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1786 | } |
| 1787 | |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1788 | cJSON *instance_extensions, *device_extensions, *functions, *enable_environment; |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1789 | cJSON *entrypoints; |
| 1790 | char *vkGetInstanceProcAddr, *vkGetDeviceProcAddr, *spec_version; |
| 1791 | char **entry_array; |
| 1792 | vkGetInstanceProcAddr = NULL; |
| 1793 | vkGetDeviceProcAddr = NULL; |
| 1794 | spec_version = NULL; |
| 1795 | entrypoints = NULL; |
| 1796 | entry_array = NULL; |
| 1797 | /** |
| 1798 | * functions |
| 1799 | * vkGetInstanceProcAddr |
| 1800 | * vkGetDeviceProcAddr |
| 1801 | */ |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1802 | GET_JSON_OBJECT(layer_node, functions) |
| 1803 | if (functions != NULL) { |
| 1804 | GET_JSON_ITEM(functions, vkGetInstanceProcAddr) |
| 1805 | GET_JSON_ITEM(functions, vkGetDeviceProcAddr) |
Jon Ashburn | 21c21ee | 2015-09-09 11:29:24 -0600 | [diff] [blame] | 1806 | if (vkGetInstanceProcAddr != NULL) |
| 1807 | strncpy(props->functions.str_gipa, vkGetInstanceProcAddr, sizeof (props->functions.str_gipa)); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1808 | props->functions.str_gipa[sizeof (props->functions.str_gipa) - 1] = '\0'; |
Jon Ashburn | 21c21ee | 2015-09-09 11:29:24 -0600 | [diff] [blame] | 1809 | if (vkGetDeviceProcAddr != NULL) |
| 1810 | strncpy(props->functions.str_gdpa, vkGetDeviceProcAddr, sizeof (props->functions.str_gdpa)); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1811 | props->functions.str_gdpa[sizeof (props->functions.str_gdpa) - 1] = '\0'; |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1812 | } |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1813 | /** |
| 1814 | * instance_extensions |
| 1815 | * array of |
| 1816 | * name |
| 1817 | * spec_version |
| 1818 | */ |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1819 | GET_JSON_OBJECT(layer_node, instance_extensions) |
| 1820 | if (instance_extensions != NULL) { |
| 1821 | int count = cJSON_GetArraySize(instance_extensions); |
| 1822 | for (i = 0; i < count; i++) { |
| 1823 | ext_item = cJSON_GetArrayItem(instance_extensions, i); |
| 1824 | GET_JSON_ITEM(ext_item, name) |
Jon Ashburn | f2a944f | 2015-11-18 16:46:48 -0700 | [diff] [blame] | 1825 | GET_JSON_ITEM(ext_item, spec_version) |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1826 | if (name != NULL) { |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 1827 | strncpy(ext_prop.extensionName, name, sizeof (ext_prop.extensionName)); |
| 1828 | ext_prop.extensionName[sizeof (ext_prop.extensionName) - 1] = '\0'; |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1829 | } |
Jon Ashburn | f2a944f | 2015-11-18 16:46:48 -0700 | [diff] [blame] | 1830 | ext_prop.specVersion = atoi(spec_version); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1831 | loader_add_to_ext_list(inst, &props->instance_extension_list, 1, &ext_prop); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1832 | } |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1833 | } |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1834 | /** |
| 1835 | * device_extensions |
| 1836 | * array of |
| 1837 | * name |
| 1838 | * spec_version |
| 1839 | * entrypoints |
| 1840 | */ |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1841 | GET_JSON_OBJECT(layer_node, device_extensions) |
| 1842 | if (device_extensions != NULL) { |
| 1843 | int count = cJSON_GetArraySize(device_extensions); |
| 1844 | for (i = 0; i < count; i++) { |
| 1845 | ext_item = cJSON_GetArrayItem(device_extensions, i); |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1846 | GET_JSON_ITEM(ext_item, name) |
| 1847 | GET_JSON_ITEM(ext_item, spec_version) |
| 1848 | if (name != NULL) { |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 1849 | strncpy(ext_prop.extensionName, name, sizeof (ext_prop.extensionName)); |
| 1850 | ext_prop.extensionName[sizeof (ext_prop.extensionName) - 1] = '\0'; |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1851 | } |
Jon Ashburn | f2a944f | 2015-11-18 16:46:48 -0700 | [diff] [blame] | 1852 | ext_prop.specVersion = atoi(spec_version); |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1853 | //entrypoints = cJSON_GetObjectItem(ext_item, "entrypoints"); |
| 1854 | GET_JSON_OBJECT(ext_item, entrypoints) |
| 1855 | int entry_count; |
| 1856 | if (entrypoints == NULL) |
| 1857 | continue; |
| 1858 | entry_count = cJSON_GetArraySize(entrypoints); |
| 1859 | if (entry_count) |
| 1860 | entry_array = (char **) loader_stack_alloc(sizeof(char *) * entry_count); |
| 1861 | for (j = 0; j < entry_count; j++) { |
| 1862 | ext_item = cJSON_GetArrayItem(entrypoints, j); |
| 1863 | if (ext_item != NULL) { |
| 1864 | temp = cJSON_Print(ext_item); |
| 1865 | temp[strlen(temp) - 1] = '\0'; |
| 1866 | entry_array[j] = loader_stack_alloc(strlen(temp) + 1); |
| 1867 | strcpy(entry_array[j], &temp[1]); |
| 1868 | loader_tls_heap_free(temp); |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 1869 | } |
| 1870 | } |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 1871 | loader_add_to_dev_ext_list(inst, &props->device_extension_list, |
| 1872 | &ext_prop, entry_count, entry_array); |
| 1873 | } |
| 1874 | } |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1875 | if (is_implicit) { |
| 1876 | GET_JSON_OBJECT(layer_node, enable_environment) |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 1877 | |
| 1878 | // enable_environment is optional |
| 1879 | if (enable_environment) { |
| 1880 | strncpy(props->enable_env_var.name, enable_environment->child->string, sizeof (props->enable_env_var.name)); |
| 1881 | props->enable_env_var.name[sizeof (props->enable_env_var.name) - 1] = '\0'; |
| 1882 | strncpy(props->enable_env_var.value, enable_environment->child->valuestring, sizeof (props->enable_env_var.value)); |
| 1883 | props->enable_env_var.value[sizeof (props->enable_env_var.value) - 1] = '\0'; |
| 1884 | } |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1885 | } |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1886 | #undef GET_JSON_ITEM |
| 1887 | #undef GET_JSON_OBJECT |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1888 | // for global layers need to add them to both device and instance list |
| 1889 | if (!strcmp(type, "GLOBAL")) { |
| 1890 | struct loader_layer_properties *dev_props; |
| 1891 | if (layer_instance_list == NULL || layer_device_list == NULL) { |
| 1892 | layer_node = layer_node->next; |
| 1893 | continue; |
| 1894 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1895 | dev_props = loader_get_next_layer_property(inst, layer_device_list); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1896 | //copy into device layer list |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1897 | loader_copy_layer_properties(inst, dev_props, props); |
Jon Ashburn | fb8ac01 | 2015-08-12 16:39:32 -0600 | [diff] [blame] | 1898 | } |
| 1899 | layer_node = layer_node->next; |
| 1900 | } while (layer_node != NULL); |
| 1901 | return; |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 1902 | } |
| 1903 | |
| 1904 | /** |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1905 | * Find the Vulkan library manifest files. |
| 1906 | * |
| 1907 | * This function scans the location or env_override directories/files |
| 1908 | * for a list of JSON manifest files. If env_override is non-NULL |
| 1909 | * and has a valid value. Then the location is ignored. Otherwise |
| 1910 | * location is used to look for manifest files. The location |
| 1911 | * is interpreted as Registry path on Windows and a directory path(s) |
| 1912 | * on Linux. |
| 1913 | * |
| 1914 | * \returns |
| 1915 | * A string list of manifest files to be opened in out_files param. |
| 1916 | * List has a pointer to string for each manifest filename. |
| 1917 | * When done using the list in out_files, pointers should be freed. |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1918 | * Location or override string lists can be either files or directories as follows: |
| 1919 | * | location | override |
| 1920 | * -------------------------------- |
| 1921 | * Win ICD | files | files |
| 1922 | * Win Layer | files | dirs |
| 1923 | * Linux ICD | dirs | files |
| 1924 | * Linux Layer| dirs | dirs |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1925 | */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 1926 | static void loader_get_manifest_files(const struct loader_instance *inst, |
| 1927 | const char *env_override, |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1928 | bool is_layer, |
| 1929 | const char *location, |
| 1930 | struct loader_manifest_files *out_files) |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1931 | { |
| 1932 | char *override = NULL; |
| 1933 | char *loc; |
| 1934 | char *file, *next_file, *name; |
| 1935 | size_t alloced_count = 64; |
| 1936 | char full_path[2048]; |
| 1937 | DIR *sysdir = NULL; |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1938 | bool list_is_dirs = false; |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1939 | struct dirent *dent; |
| 1940 | |
| 1941 | out_files->count = 0; |
| 1942 | out_files->filename_list = NULL; |
| 1943 | |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 1944 | if (env_override != NULL && (override = loader_getenv(env_override))) { |
Johannes van Waveren | 9bd80501 | 2015-10-28 11:45:00 -0500 | [diff] [blame] | 1945 | #if !defined(_WIN32) |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1946 | if (geteuid() != getuid()) { |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1947 | /* Don't allow setuid apps to use the env var: */ |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 1948 | loader_free_getenv(override); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1949 | override = NULL; |
| 1950 | } |
| 1951 | #endif |
| 1952 | } |
| 1953 | |
| 1954 | if (location == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1955 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1956 | "Can't get manifest files with NULL location, env_override=%s", |
| 1957 | env_override); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1958 | return; |
| 1959 | } |
| 1960 | |
Johannes van Waveren | 9bd80501 | 2015-10-28 11:45:00 -0500 | [diff] [blame] | 1961 | #if defined(_WIN32) |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1962 | list_is_dirs = (is_layer && override != NULL) ? true : false; |
Johannes van Waveren | 9bd80501 | 2015-10-28 11:45:00 -0500 | [diff] [blame] | 1963 | #else |
| 1964 | list_is_dirs = (override == NULL || is_layer) ? true : false; |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1965 | #endif |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1966 | // Make a copy of the input we are using so it is not modified |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1967 | // Also handle getting the location(s) from registry on Windows |
| 1968 | if (override == NULL) { |
Jon Ashburn | 3b78e46 | 2015-07-31 10:11:24 -0600 | [diff] [blame] | 1969 | loc = loader_stack_alloc(strlen(location) + 1); |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1970 | if (loc == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1971 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Out of memory can't get manifest files"); |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1972 | return; |
| 1973 | } |
| 1974 | strcpy(loc, location); |
Johannes van Waveren | 9bd80501 | 2015-10-28 11:45:00 -0500 | [diff] [blame] | 1975 | #if defined(_WIN32) |
Jon Ashburn | 480a50a | 2015-08-28 14:58:46 -0700 | [diff] [blame] | 1976 | loc = loader_get_registry_files(inst, loc); |
Jon Ashburn | 24265ac | 2015-07-31 09:33:21 -0600 | [diff] [blame] | 1977 | if (loc == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1978 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Registry lookup failed can't get manifest files"); |
Jon Ashburn | 24265ac | 2015-07-31 09:33:21 -0600 | [diff] [blame] | 1979 | return; |
| 1980 | } |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1981 | #endif |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1982 | } |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1983 | else { |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 1984 | loc = loader_stack_alloc(strlen(override) + 1); |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1985 | if (loc == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1986 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Out of memory can't get manifest files"); |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1987 | return; |
| 1988 | } |
| 1989 | strcpy(loc, override); |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 1990 | loader_free_getenv(override); |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1991 | } |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1992 | |
Liam Middlebrook | 9b14e89 | 2015-07-23 18:32:20 -0700 | [diff] [blame] | 1993 | // Print out the paths being searched if debugging is enabled |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 1994 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, "Searching the following paths for manifest files: %s\n", loc); |
Liam Middlebrook | 9b14e89 | 2015-07-23 18:32:20 -0700 | [diff] [blame] | 1995 | |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 1996 | file = loc; |
| 1997 | while (*file) { |
| 1998 | next_file = loader_get_next_path(file); |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 1999 | if (list_is_dirs) { |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2000 | sysdir = opendir(file); |
| 2001 | name = NULL; |
| 2002 | if (sysdir) { |
| 2003 | dent = readdir(sysdir); |
| 2004 | if (dent == NULL) |
| 2005 | break; |
| 2006 | name = &(dent->d_name[0]); |
| 2007 | loader_get_fullpath(name, file, sizeof(full_path), full_path); |
| 2008 | name = full_path; |
| 2009 | } |
| 2010 | } |
| 2011 | else { |
Johannes van Waveren | 9bd80501 | 2015-10-28 11:45:00 -0500 | [diff] [blame] | 2012 | #if defined(_WIN32) |
| 2013 | name = file; |
| 2014 | #else |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 2015 | // only Linux has relative paths |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2016 | char *dir; |
| 2017 | // make a copy of location so it isn't modified |
Jason Ekstrand | cc7550e | 2015-10-10 08:33:37 -0700 | [diff] [blame] | 2018 | dir = loader_stack_alloc(strlen(loc) + 1); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2019 | if (dir == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2020 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Out of memory can't get manifest files"); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2021 | return; |
| 2022 | } |
Jason Ekstrand | cc7550e | 2015-10-10 08:33:37 -0700 | [diff] [blame] | 2023 | strcpy(dir, loc); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2024 | |
| 2025 | loader_get_fullpath(file, dir, sizeof(full_path), full_path); |
| 2026 | |
| 2027 | name = full_path; |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 2028 | #endif |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2029 | } |
| 2030 | while (name) { |
| 2031 | /* Look for files ending with ".json" suffix */ |
| 2032 | uint32_t nlen = (uint32_t) strlen(name); |
| 2033 | const char *suf = name + nlen - 5; |
| 2034 | if ((nlen > 5) && !strncmp(suf, ".json", 5)) { |
| 2035 | if (out_files->count == 0) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2036 | out_files->filename_list = loader_heap_alloc(inst, |
| 2037 | alloced_count * sizeof(char *), |
Chia-I Wu | cf804e8 | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 2038 | VK_SYSTEM_ALLOCATION_SCOPE_COMMAND); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2039 | } |
| 2040 | else if (out_files->count == alloced_count) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2041 | out_files->filename_list = loader_heap_realloc(inst, |
| 2042 | out_files->filename_list, |
| 2043 | alloced_count * sizeof(char *), |
| 2044 | alloced_count * sizeof(char *) * 2, |
Chia-I Wu | cf804e8 | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 2045 | VK_SYSTEM_ALLOCATION_SCOPE_COMMAND); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2046 | alloced_count *= 2; |
| 2047 | } |
| 2048 | if (out_files->filename_list == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2049 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Out of memory can't alloc manifest file list"); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2050 | return; |
| 2051 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2052 | out_files->filename_list[out_files->count] = loader_heap_alloc( |
| 2053 | inst, |
| 2054 | strlen(name) + 1, |
Chia-I Wu | cf804e8 | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 2055 | VK_SYSTEM_ALLOCATION_SCOPE_COMMAND); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2056 | if (out_files->filename_list[out_files->count] == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2057 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Out of memory can't get manifest files"); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2058 | return; |
| 2059 | } |
| 2060 | strcpy(out_files->filename_list[out_files->count], name); |
| 2061 | out_files->count++; |
Jon Ashburn | f70f361 | 2015-07-02 10:08:47 -0600 | [diff] [blame] | 2062 | } else if (!list_is_dirs) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2063 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Skipping manifest file %s, file name must end in .json", name); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2064 | } |
Jon Ashburn | ffad94d | 2015-06-30 14:46:22 -0700 | [diff] [blame] | 2065 | if (list_is_dirs) { |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2066 | dent = readdir(sysdir); |
| 2067 | if (dent == NULL) |
| 2068 | break; |
| 2069 | name = &(dent->d_name[0]); |
| 2070 | loader_get_fullpath(name, file, sizeof(full_path), full_path); |
| 2071 | name = full_path; |
| 2072 | } |
| 2073 | else { |
| 2074 | break; |
| 2075 | } |
| 2076 | } |
| 2077 | if (sysdir) |
| 2078 | closedir(sysdir); |
| 2079 | file = next_file; |
| 2080 | } |
| 2081 | return; |
| 2082 | } |
| 2083 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 2084 | void loader_init_icd_lib_list() |
| 2085 | { |
| 2086 | |
| 2087 | } |
| 2088 | |
| 2089 | void loader_destroy_icd_lib_list() |
| 2090 | { |
| 2091 | |
| 2092 | } |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2093 | /** |
| 2094 | * Try to find the Vulkan ICD driver(s). |
| 2095 | * |
| 2096 | * This function scans the default system loader path(s) or path |
| 2097 | * specified by the \c VK_ICD_FILENAMES environment variable in |
| 2098 | * order to find loadable VK ICDs manifest files. From these |
| 2099 | * manifest files it finds the ICD libraries. |
| 2100 | * |
| 2101 | * \returns |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 2102 | * a list of icds that were discovered |
Courtney Goeltzenleuchter | 4af9bd1 | 2014-08-01 14:18:11 -0600 | [diff] [blame] | 2103 | */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2104 | void loader_icd_scan( |
| 2105 | const struct loader_instance *inst, |
| 2106 | struct loader_icd_libs *icds) |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 2107 | { |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2108 | char *file_str; |
| 2109 | struct loader_manifest_files manifest_files; |
| 2110 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2111 | loader_scanned_icd_init(inst, icds); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2112 | // Get a list of manifest files for ICDs |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2113 | loader_get_manifest_files(inst, "VK_ICD_FILENAMES", false, |
| 2114 | DEFAULT_VK_DRIVERS_INFO, &manifest_files); |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2115 | if (manifest_files.count == 0) |
| 2116 | return; |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 2117 | loader_platform_thread_lock_mutex(&loader_json_lock); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2118 | for (uint32_t i = 0; i < manifest_files.count; i++) { |
| 2119 | file_str = manifest_files.filename_list[i]; |
| 2120 | if (file_str == NULL) |
| 2121 | continue; |
| 2122 | |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2123 | cJSON *json; |
Courtney Goeltzenleuchter | 7347739 | 2015-12-03 13:48:01 -0700 | [diff] [blame] | 2124 | json = loader_get_json(inst, file_str); |
Jon Ashburn | aa4ea47 | 2015-08-27 08:30:50 -0600 | [diff] [blame] | 2125 | if (!json) |
| 2126 | continue; |
Jon Ashburn | 005617f | 2015-11-17 17:35:40 -0700 | [diff] [blame] | 2127 | cJSON *item, *itemICD; |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2128 | item = cJSON_GetObjectItem(json, "file_format_version"); |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 2129 | if (item == NULL) { |
| 2130 | loader_platform_thread_unlock_mutex(&loader_json_lock); |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2131 | return; |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 2132 | } |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2133 | char *file_vers = cJSON_Print(item); |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2134 | loader_log(inst, VK_DEBUG_REPORT_INFO_BIT_EXT, 0, "Found manifest file %s, version %s", |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2135 | file_str, file_vers); |
| 2136 | if (strcmp(file_vers, "\"1.0.0\"") != 0) |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2137 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Unexpected manifest file version (expected 1.0.0), may cause errors"); |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 2138 | loader_tls_heap_free(file_vers); |
Jon Ashburn | 005617f | 2015-11-17 17:35:40 -0700 | [diff] [blame] | 2139 | itemICD = cJSON_GetObjectItem(json, "ICD"); |
| 2140 | if (itemICD != NULL) { |
| 2141 | item = cJSON_GetObjectItem(itemICD, "library_path"); |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2142 | if (item != NULL) { |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2143 | char *temp= cJSON_Print(item); |
| 2144 | if (!temp || strlen(temp) == 0) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2145 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Can't find \"library_path\" in ICD JSON file %s, skipping", file_str); |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 2146 | loader_tls_heap_free(temp); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2147 | loader_heap_free(inst, file_str); |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2148 | cJSON_Delete(json); |
| 2149 | continue; |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2150 | } |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2151 | //strip out extra quotes |
| 2152 | temp[strlen(temp) - 1] = '\0'; |
| 2153 | char *library_path = loader_stack_alloc(strlen(temp) + 1); |
| 2154 | strcpy(library_path, &temp[1]); |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 2155 | loader_tls_heap_free(temp); |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2156 | if (!library_path || strlen(library_path) == 0) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2157 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Can't find \"library_path\" in ICD JSON file %s, skipping", file_str); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2158 | loader_heap_free(inst, file_str); |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2159 | cJSON_Delete(json); |
| 2160 | continue; |
| 2161 | } |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 2162 | char fullpath[MAX_STRING_SIZE]; |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2163 | // Print out the paths being searched if debugging is enabled |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2164 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, "Searching for ICD drivers named %s default dir %s\n", library_path, DEFAULT_VK_DRIVERS_PATH); |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 2165 | if (loader_platform_is_path(library_path)) { |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2166 | // a relative or absolute path |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 2167 | char *name_copy = loader_stack_alloc(strlen(file_str) + 1); |
| 2168 | char *rel_base; |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2169 | strcpy(name_copy, file_str); |
| 2170 | rel_base = loader_platform_dirname(name_copy); |
Daniel Dadap | 00b4aba | 2015-09-30 11:50:51 -0500 | [diff] [blame] | 2171 | loader_expand_path(library_path, rel_base, sizeof(fullpath), fullpath); |
| 2172 | } else { |
| 2173 | // a filename which is assumed in a system directory |
| 2174 | loader_get_fullpath(library_path, DEFAULT_VK_DRIVERS_PATH, sizeof(fullpath), fullpath); |
Jon Ashburn | 8625130 | 2015-08-25 16:48:24 -0600 | [diff] [blame] | 2175 | } |
Jon Ashburn | 005617f | 2015-11-17 17:35:40 -0700 | [diff] [blame] | 2176 | |
| 2177 | uint32_t vers = 0; |
| 2178 | item = cJSON_GetObjectItem(itemICD, "api_version"); |
| 2179 | if (item != NULL) { |
| 2180 | temp= cJSON_Print(item); |
| 2181 | vers = loader_make_version(temp); |
| 2182 | loader_tls_heap_free(temp); |
| 2183 | } |
| 2184 | loader_scanned_icd_add(inst, icds, fullpath, vers); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2185 | } |
Jon Ashburn | 005617f | 2015-11-17 17:35:40 -0700 | [diff] [blame] | 2186 | else |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2187 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Can't find \"library_path\" object in ICD JSON file %s, skipping", file_str); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2188 | } |
| 2189 | else |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2190 | loader_log(inst, VK_DEBUG_REPORT_WARN_BIT_EXT, 0, "Can't find \"ICD\" object in ICD JSON file %s, skipping", file_str); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2191 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2192 | loader_heap_free(inst, file_str); |
Jon Ashburn | 2077e38 | 2015-06-29 11:25:34 -0600 | [diff] [blame] | 2193 | cJSON_Delete(json); |
| 2194 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2195 | loader_heap_free(inst, manifest_files.filename_list); |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 2196 | loader_platform_thread_unlock_mutex(&loader_json_lock); |
Chia-I Wu | 5f72d0f | 2014-08-01 11:21:23 +0800 | [diff] [blame] | 2197 | } |
| 2198 | |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2199 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2200 | void loader_layer_scan( |
| 2201 | const struct loader_instance *inst, |
| 2202 | struct loader_layer_list *instance_layers, |
| 2203 | struct loader_layer_list *device_layers) |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2204 | { |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2205 | char *file_str; |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2206 | struct loader_manifest_files manifest_files[2]; // [0] = explicit, [1] = implicit |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2207 | cJSON *json; |
| 2208 | uint32_t i; |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2209 | uint32_t implicit; |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2210 | |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2211 | // Get a list of manifest files for layers |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2212 | loader_get_manifest_files(inst, LAYERS_PATH_ENV, true, DEFAULT_VK_ELAYERS_INFO, |
| 2213 | &manifest_files[0]); |
Jon Ashburn | b1a03e0 | 2015-12-24 13:58:35 -0700 | [diff] [blame] | 2214 | // Pass NULL for environment variable override - implicit layers are not overridden by LAYERS_PATH_ENV |
| 2215 | loader_get_manifest_files(inst, NULL, true, DEFAULT_VK_ILAYERS_INFO, |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2216 | &manifest_files[1]); |
| 2217 | if (manifest_files[0].count == 0 && manifest_files[1].count == 0) |
Courtney Goeltzenleuchter | 57985ce | 2014-12-01 09:29:42 -0700 | [diff] [blame] | 2218 | return; |
Jon Ashburn | 90c6a0e | 2015-06-04 15:30:58 -0600 | [diff] [blame] | 2219 | |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 2220 | #if 0 //TODO |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2221 | /** |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 2222 | * We need a list of the layer libraries, not just a list of |
| 2223 | * the layer properties (a layer library could expose more than |
| 2224 | * one layer property). This list of scanned layers would be |
| 2225 | * used to check for global and physicaldevice layer properties. |
| 2226 | */ |
| 2227 | if (!loader_init_layer_library_list(&loader.scanned_layer_libraries)) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2228 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2229 | "Alloc for layer list failed: %s line: %d", __FILE__, __LINE__); |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 2230 | return; |
Jon Ashburn | 5ef2060 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 2231 | } |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2232 | #endif |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2233 | |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 2234 | /* cleanup any previously scanned libraries */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2235 | loader_delete_layer_properties(inst, instance_layers); |
| 2236 | loader_delete_layer_properties(inst, device_layers); |
Jon Ashburn | b2ef137 | 2015-07-16 17:19:31 -0600 | [diff] [blame] | 2237 | |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 2238 | loader_platform_thread_lock_mutex(&loader_json_lock); |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2239 | for (implicit = 0; implicit < 2; implicit++) { |
| 2240 | for (i = 0; i < manifest_files[implicit].count; i++) { |
| 2241 | file_str = manifest_files[implicit].filename_list[i]; |
| 2242 | if (file_str == NULL) |
| 2243 | continue; |
Courtney Goeltzenleuchter | a9e4af4 | 2015-06-01 14:49:17 -0600 | [diff] [blame] | 2244 | |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2245 | // parse file into JSON struct |
| 2246 | json = loader_get_json(inst, file_str); |
| 2247 | if (!json) { |
| 2248 | continue; |
| 2249 | } |
| 2250 | |
| 2251 | //TODO error if device layers expose instance_extensions |
| 2252 | //TODO error if instance layers expose device extensions |
| 2253 | loader_add_layer_properties(inst, |
| 2254 | instance_layers, |
| 2255 | device_layers, |
| 2256 | json, |
| 2257 | (implicit == 1), |
| 2258 | file_str); |
| 2259 | |
| 2260 | loader_heap_free(inst, file_str); |
| 2261 | cJSON_Delete(json); |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2262 | } |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2263 | } |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2264 | if (manifest_files[0].count != 0) |
| 2265 | loader_heap_free(inst, manifest_files[0].filename_list); |
| 2266 | |
| 2267 | if (manifest_files[1].count != 0) |
| 2268 | loader_heap_free(inst, manifest_files[1].filename_list); |
Jon Ashburn | 6461ef2 | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 2269 | loader_platform_thread_unlock_mutex(&loader_json_lock); |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2270 | } |
| 2271 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 2272 | static VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL loader_gpa_instance_internal(VkInstance inst, const char * pName) |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2273 | { |
| 2274 | // inst is not wrapped |
| 2275 | if (inst == VK_NULL_HANDLE) { |
| 2276 | return NULL; |
| 2277 | } |
| 2278 | VkLayerInstanceDispatchTable* disp_table = * (VkLayerInstanceDispatchTable **) inst; |
| 2279 | void *addr; |
| 2280 | |
Jon Ashburn | 8fd0825 | 2015-05-28 16:25:02 -0600 | [diff] [blame] | 2281 | if (!strcmp(pName, "vkGetInstanceProcAddr")) |
| 2282 | return (void *) loader_gpa_instance_internal; |
| 2283 | |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2284 | if (disp_table == NULL) |
| 2285 | return NULL; |
| 2286 | |
| 2287 | addr = loader_lookup_instance_dispatch_table(disp_table, pName); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2288 | if (addr) { |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2289 | return addr; |
Jon Ashburn | 3d526cb | 2015-04-13 18:10:06 -0600 | [diff] [blame] | 2290 | } |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2291 | |
| 2292 | if (disp_table->GetInstanceProcAddr == NULL) { |
| 2293 | return NULL; |
| 2294 | } |
| 2295 | return disp_table->GetInstanceProcAddr(inst, pName); |
Jon Ashburn | 3d526cb | 2015-04-13 18:10:06 -0600 | [diff] [blame] | 2296 | } |
| 2297 | |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 2298 | /** |
| 2299 | * Initialize device_ext dispatch table entry as follows: |
| 2300 | * If dev == NULL find all logical devices created within this instance and |
| 2301 | * init the entry (given by idx) in the ext dispatch table. |
| 2302 | * If dev != NULL only initialize the entry in the given dev's dispatch table. |
| 2303 | * The initialization value is gotten by calling down the device chain with GDPA. |
| 2304 | * If GDPA returns NULL then don't initialize the dispatch table entry. |
| 2305 | */ |
| 2306 | static void loader_init_dispatch_dev_ext_entry(struct loader_instance *inst, |
| 2307 | struct loader_device *dev, |
| 2308 | uint32_t idx, |
| 2309 | const char *funcName) |
| 2310 | |
| 2311 | { |
| 2312 | void *gdpa_value; |
| 2313 | if (dev != NULL) { |
| 2314 | gdpa_value = dev->loader_dispatch.core_dispatch.GetDeviceProcAddr( |
| 2315 | dev->device, funcName); |
| 2316 | if (gdpa_value != NULL) |
| 2317 | dev->loader_dispatch.ext_dispatch.DevExt[idx] = (PFN_vkDevExt) gdpa_value; |
| 2318 | } else { |
| 2319 | for (uint32_t i = 0; i < inst->total_icd_count; i++) { |
| 2320 | struct loader_icd *icd = &inst->icds[i]; |
| 2321 | struct loader_device *dev = icd->logical_device_list; |
| 2322 | while (dev) { |
| 2323 | gdpa_value = dev->loader_dispatch.core_dispatch.GetDeviceProcAddr( |
| 2324 | dev->device, funcName); |
| 2325 | if (gdpa_value != NULL) |
| 2326 | dev->loader_dispatch.ext_dispatch.DevExt[idx] = |
| 2327 | (PFN_vkDevExt) gdpa_value; |
| 2328 | dev = dev->next; |
| 2329 | } |
| 2330 | } |
| 2331 | } |
| 2332 | |
| 2333 | } |
| 2334 | |
| 2335 | /** |
| 2336 | * Find all dev extension in the hash table and initialize the dispatch table |
| 2337 | * for dev for each of those extension entrypoints found in hash table. |
| 2338 | |
| 2339 | */ |
| 2340 | static void loader_init_dispatch_dev_ext(struct loader_instance *inst, |
| 2341 | struct loader_device *dev) |
| 2342 | { |
| 2343 | for (uint32_t i = 0; i < MAX_NUM_DEV_EXTS; i++) { |
| 2344 | if (inst->disp_hash[i].func_name != NULL) |
| 2345 | loader_init_dispatch_dev_ext_entry(inst, dev, i, |
| 2346 | inst->disp_hash[i].func_name); |
| 2347 | } |
| 2348 | } |
| 2349 | |
| 2350 | static bool loader_check_icds_for_address(struct loader_instance *inst, |
| 2351 | const char *funcName) |
| 2352 | { |
| 2353 | struct loader_icd *icd; |
| 2354 | icd = inst->icds; |
| 2355 | while (icd) { |
| 2356 | if (icd->this_icd_lib->GetInstanceProcAddr(icd->instance, funcName)) |
| 2357 | // this icd supports funcName |
| 2358 | return true; |
| 2359 | icd = icd->next; |
| 2360 | } |
| 2361 | |
| 2362 | return false; |
| 2363 | } |
| 2364 | |
| 2365 | static void loader_free_dev_ext_table(struct loader_instance *inst) |
| 2366 | { |
| 2367 | for (uint32_t i = 0; i < MAX_NUM_DEV_EXTS; i++) { |
| 2368 | loader_heap_free(inst, inst->disp_hash[i].func_name); |
| 2369 | loader_heap_free(inst, inst->disp_hash[i].list.index); |
| 2370 | |
| 2371 | } |
| 2372 | memset(inst->disp_hash, 0, sizeof(inst->disp_hash)); |
| 2373 | } |
| 2374 | |
| 2375 | static bool loader_add_dev_ext_table(struct loader_instance *inst, |
| 2376 | uint32_t *ptr_idx, |
| 2377 | const char *funcName) |
| 2378 | { |
| 2379 | uint32_t i; |
| 2380 | uint32_t idx = *ptr_idx; |
| 2381 | struct loader_dispatch_hash_list *list = &inst->disp_hash[idx].list; |
| 2382 | |
| 2383 | if (!inst->disp_hash[idx].func_name) { |
| 2384 | // no entry here at this idx, so use it |
| 2385 | assert(list->capacity == 0); |
| 2386 | inst->disp_hash[idx].func_name = (char *) loader_heap_alloc(inst, |
| 2387 | strlen(funcName) + 1, |
| 2388 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 2389 | if (inst->disp_hash[idx].func_name == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2390 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 2391 | "loader_add_dev_ext_table() can't allocate memory for func_name"); |
| 2392 | return false; |
| 2393 | } |
| 2394 | strncpy(inst->disp_hash[idx].func_name, funcName, strlen(funcName) + 1); |
| 2395 | return true; |
| 2396 | } |
| 2397 | |
| 2398 | // check for enough capacity |
| 2399 | if (list->capacity == 0) { |
| 2400 | list->index = loader_heap_alloc(inst, 8 * sizeof(*(list->index)), |
| 2401 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 2402 | if (list->index == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2403 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 2404 | "loader_add_dev_ext_table() can't allocate list memory"); |
| 2405 | return false; |
| 2406 | } |
| 2407 | list->capacity = 8 * sizeof(*(list->index)); |
| 2408 | } else if (list->capacity < (list->count + 1) * sizeof(*(list->index))) { |
| 2409 | list->index = loader_heap_realloc(inst, list->index, list->capacity, |
| 2410 | list->capacity * 2, |
| 2411 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 2412 | if (list->index == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2413 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 2414 | "loader_add_dev_ext_table() can't reallocate list memory"); |
| 2415 | return false; |
| 2416 | } |
| 2417 | list->capacity *= 2; |
| 2418 | } |
| 2419 | |
| 2420 | //find an unused index in the hash table and use it |
| 2421 | i = (idx + 1) % MAX_NUM_DEV_EXTS; |
| 2422 | do { |
| 2423 | if (!inst->disp_hash[i].func_name) { |
| 2424 | assert(inst->disp_hash[i].list.capacity == 0); |
| 2425 | inst->disp_hash[i].func_name = (char *) loader_heap_alloc(inst, |
| 2426 | strlen(funcName) + 1, |
| 2427 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 2428 | if (inst->disp_hash[i].func_name == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2429 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 2430 | "loader_add_dev_ext_table() can't rallocate func_name memory"); |
| 2431 | return false; |
| 2432 | } |
| 2433 | strncpy(inst->disp_hash[i].func_name, funcName, strlen(funcName) + 1); |
| 2434 | list->index[list->count] = i; |
| 2435 | list->count++; |
| 2436 | *ptr_idx = i; |
| 2437 | return true; |
| 2438 | } |
| 2439 | i = (i + 1) % MAX_NUM_DEV_EXTS; |
| 2440 | } while (i != idx); |
| 2441 | |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2442 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 2443 | "loader_add_dev_ext_table() couldn't insert into hash table; is it full?"); |
| 2444 | return false; |
| 2445 | } |
| 2446 | |
| 2447 | static bool loader_name_in_dev_ext_table(struct loader_instance *inst, |
| 2448 | uint32_t *idx, |
| 2449 | const char *funcName) |
| 2450 | { |
| 2451 | uint32_t alt_idx; |
| 2452 | if (inst->disp_hash[*idx].func_name && !strcmp( |
| 2453 | inst->disp_hash[*idx].func_name, |
| 2454 | funcName)) |
| 2455 | return true; |
| 2456 | |
| 2457 | // funcName wasn't at the primary spot in the hash table |
| 2458 | // search the list of secondary locations (shallow search, not deep search) |
| 2459 | for (uint32_t i = 0; i < inst->disp_hash[*idx].list.count; i++) { |
| 2460 | alt_idx = inst->disp_hash[*idx].list.index[i]; |
| 2461 | if (!strcmp(inst->disp_hash[*idx].func_name, funcName)) { |
| 2462 | *idx = alt_idx; |
| 2463 | return true; |
| 2464 | } |
| 2465 | } |
| 2466 | |
| 2467 | return false; |
| 2468 | } |
| 2469 | |
| 2470 | /** |
| 2471 | * This function returns generic trampoline code address for unknown entry points. |
| 2472 | * Presumably, these unknown entry points (as given by funcName) are device |
| 2473 | * extension entrypoints. A hash table is used to keep a list of unknown entry |
| 2474 | * points and their mapping to the device extension dispatch table |
| 2475 | * (struct loader_dev_ext_dispatch_table). |
| 2476 | * \returns |
| 2477 | * For a given entry point string (funcName), if an existing mapping is found the |
| 2478 | * trampoline address for that mapping is returned. Otherwise, this unknown entry point |
| 2479 | * has not been seen yet. Next check if a layer or ICD supports it. If so then a |
| 2480 | * new entry in the hash table is initialized and that trampoline address for |
| 2481 | * the new entry is returned. Null is returned if the hash table is full or |
| 2482 | * if no discovered layer or ICD returns a non-NULL GetProcAddr for it. |
| 2483 | */ |
| 2484 | void *loader_dev_ext_gpa(struct loader_instance *inst, |
| 2485 | const char *funcName) |
| 2486 | { |
| 2487 | uint32_t idx; |
| 2488 | uint32_t seed = 0; |
| 2489 | |
| 2490 | idx = murmurhash(funcName, strlen(funcName), seed) % MAX_NUM_DEV_EXTS; |
| 2491 | |
| 2492 | if (loader_name_in_dev_ext_table(inst, &idx, funcName)) |
| 2493 | // found funcName already in hash |
| 2494 | return loader_get_dev_ext_trampoline(idx); |
| 2495 | |
| 2496 | // Check if funcName is supported in either ICDs or a layer library |
| 2497 | if (!loader_check_icds_for_address(inst, funcName)) { |
| 2498 | // TODO Add check in layer libraries for support of address |
| 2499 | // if support found in layers continue on |
| 2500 | return NULL; |
| 2501 | } |
| 2502 | |
| 2503 | if (loader_add_dev_ext_table(inst, &idx, funcName)) { |
| 2504 | // successfully added new table entry |
| 2505 | // init any dev dispatch table entrys as needed |
| 2506 | loader_init_dispatch_dev_ext_entry(inst, NULL, idx, funcName); |
| 2507 | return loader_get_dev_ext_trampoline(idx); |
| 2508 | } |
| 2509 | |
| 2510 | return NULL; |
| 2511 | } |
| 2512 | |
Jon Ashburn | e0e6457 | 2015-09-30 12:56:42 -0600 | [diff] [blame] | 2513 | struct loader_instance *loader_get_instance(const VkInstance instance) |
| 2514 | { |
| 2515 | /* look up the loader_instance in our list by comparing dispatch tables, as |
| 2516 | * there is no guarantee the instance is still a loader_instance* after any |
| 2517 | * layers which wrap the instance object. |
| 2518 | */ |
| 2519 | const VkLayerInstanceDispatchTable *disp; |
| 2520 | struct loader_instance *ptr_instance = NULL; |
| 2521 | disp = loader_get_instance_dispatch(instance); |
| 2522 | for (struct loader_instance *inst = loader.instances; inst; inst = inst->next) { |
| 2523 | if (inst->disp == disp) { |
| 2524 | ptr_instance = inst; |
| 2525 | break; |
| 2526 | } |
| 2527 | } |
| 2528 | return ptr_instance; |
| 2529 | } |
| 2530 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2531 | static loader_platform_dl_handle loader_add_layer_lib( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2532 | const struct loader_instance *inst, |
Jon Ashburn | 4f67d74 | 2015-05-27 13:19:22 -0600 | [diff] [blame] | 2533 | const char *chain_type, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2534 | struct loader_layer_properties *layer_prop) |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2535 | { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2536 | struct loader_lib_info *new_layer_lib_list, *my_lib; |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2537 | size_t new_alloc_size; |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 2538 | /* |
| 2539 | * TODO: We can now track this information in the |
| 2540 | * scanned_layer_libraries list. |
| 2541 | */ |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2542 | for (uint32_t i = 0; i < loader.loaded_layer_lib_count; i++) { |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 2543 | if (strcmp(loader.loaded_layer_lib_list[i].lib_name, layer_prop->lib_name) == 0) { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2544 | /* Have already loaded this library, just increment ref count */ |
| 2545 | loader.loaded_layer_lib_list[i].ref_count++; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2546 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 2547 | "%s Chain: Increment layer reference count for layer library %s", |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 2548 | chain_type, layer_prop->lib_name); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2549 | return loader.loaded_layer_lib_list[i].lib_handle; |
| 2550 | } |
| 2551 | } |
| 2552 | |
| 2553 | /* Haven't seen this library so load it */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2554 | new_alloc_size = 0; |
| 2555 | if (loader.loaded_layer_lib_capacity == 0) |
| 2556 | new_alloc_size = 8 * sizeof(struct loader_lib_info); |
| 2557 | else if (loader.loaded_layer_lib_capacity <= loader.loaded_layer_lib_count * |
| 2558 | sizeof(struct loader_lib_info)) |
| 2559 | new_alloc_size = loader.loaded_layer_lib_capacity * 2; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2560 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2561 | if (new_alloc_size) { |
| 2562 | new_layer_lib_list = loader_heap_realloc( |
| 2563 | inst, loader.loaded_layer_lib_list, |
| 2564 | loader.loaded_layer_lib_capacity, |
| 2565 | new_alloc_size, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 2566 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2567 | if (!new_layer_lib_list) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2568 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "loader: realloc failed in loader_add_layer_lib"); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2569 | return NULL; |
| 2570 | } |
| 2571 | loader.loaded_layer_lib_capacity = new_alloc_size; |
Courtney Goeltzenleuchter | 54ce81a | 2015-12-09 12:26:34 -0700 | [diff] [blame] | 2572 | loader.loaded_layer_lib_list = new_layer_lib_list; |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2573 | } else |
| 2574 | new_layer_lib_list = loader.loaded_layer_lib_list; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2575 | my_lib = &new_layer_lib_list[loader.loaded_layer_lib_count]; |
| 2576 | |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 2577 | strncpy(my_lib->lib_name, layer_prop->lib_name, sizeof(my_lib->lib_name)); |
| 2578 | my_lib->lib_name[sizeof(my_lib->lib_name) - 1] = '\0'; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2579 | my_lib->ref_count = 0; |
| 2580 | my_lib->lib_handle = NULL; |
| 2581 | |
| 2582 | if ((my_lib->lib_handle = loader_platform_open_library(my_lib->lib_name)) == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2583 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2584 | loader_platform_open_library_error(my_lib->lib_name)); |
| 2585 | return NULL; |
| 2586 | } else { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2587 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 2588 | "Chain: %s: Loading layer library %s", |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 2589 | chain_type, layer_prop->lib_name); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2590 | } |
| 2591 | loader.loaded_layer_lib_count++; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2592 | my_lib->ref_count++; |
| 2593 | |
| 2594 | return my_lib->lib_handle; |
| 2595 | } |
| 2596 | |
| 2597 | static void loader_remove_layer_lib( |
| 2598 | struct loader_instance *inst, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2599 | struct loader_layer_properties *layer_prop) |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2600 | { |
Courtney Goeltzenleuchter | 80bfd0e | 2015-12-17 09:51:22 -0700 | [diff] [blame] | 2601 | uint32_t idx = loader.loaded_layer_lib_count; |
Tony Barbour | b5d2c94 | 2015-07-14 13:34:05 -0600 | [diff] [blame] | 2602 | struct loader_lib_info *new_layer_lib_list, *my_lib = NULL; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2603 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2604 | for (uint32_t i = 0; i < loader.loaded_layer_lib_count; i++) { |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 2605 | if (strcmp(loader.loaded_layer_lib_list[i].lib_name, layer_prop->lib_name) == 0) { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2606 | /* found matching library */ |
| 2607 | idx = i; |
| 2608 | my_lib = &loader.loaded_layer_lib_list[i]; |
| 2609 | break; |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2610 | } |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2611 | } |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2612 | |
Courtney Goeltzenleuchter | 80bfd0e | 2015-12-17 09:51:22 -0700 | [diff] [blame] | 2613 | if (idx == loader.loaded_layer_lib_count) { |
Jon Ashburn | 6766ae9 | 2015-12-17 14:30:21 -0700 | [diff] [blame] | 2614 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Courtney Goeltzenleuchter | 80bfd0e | 2015-12-17 09:51:22 -0700 | [diff] [blame] | 2615 | "Unable to unref library %s", layer_prop->lib_name); |
| 2616 | return; |
| 2617 | } |
| 2618 | |
Tony Barbour | b5d2c94 | 2015-07-14 13:34:05 -0600 | [diff] [blame] | 2619 | if (my_lib) { |
| 2620 | my_lib->ref_count--; |
| 2621 | if (my_lib->ref_count > 0) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2622 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 2623 | "Decrement reference count for layer library %s", layer_prop->lib_name); |
Tony Barbour | b5d2c94 | 2015-07-14 13:34:05 -0600 | [diff] [blame] | 2624 | return; |
| 2625 | } |
Courtney Goeltzenleuchter | 499b3ba | 2015-02-27 15:19:33 -0700 | [diff] [blame] | 2626 | } |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 2627 | loader_platform_close_library(my_lib->lib_handle); |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2628 | loader_log(inst, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 2629 | "Unloading layer library %s", layer_prop->lib_name); |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 2630 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2631 | /* Need to remove unused library from list */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2632 | new_layer_lib_list = loader_heap_alloc(inst, |
| 2633 | loader.loaded_layer_lib_capacity, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 2634 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2635 | if (!new_layer_lib_list) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2636 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "loader: heap alloc failed loader_remove_layer_library"); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2637 | return; |
| 2638 | } |
| 2639 | |
| 2640 | if (idx > 0) { |
| 2641 | /* Copy records before idx */ |
| 2642 | memcpy(new_layer_lib_list, &loader.loaded_layer_lib_list[0], |
| 2643 | sizeof(struct loader_lib_info) * idx); |
| 2644 | } |
| 2645 | if (idx < (loader.loaded_layer_lib_count - 1)) { |
| 2646 | /* Copy records after idx */ |
| 2647 | memcpy(&new_layer_lib_list[idx], &loader.loaded_layer_lib_list[idx+1], |
| 2648 | sizeof(struct loader_lib_info) * (loader.loaded_layer_lib_count - idx - 1)); |
| 2649 | } |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 2650 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2651 | loader_heap_free(inst, loader.loaded_layer_lib_list); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2652 | loader.loaded_layer_lib_count--; |
| 2653 | loader.loaded_layer_lib_list = new_layer_lib_list; |
Jon Ashburn | b835805 | 2014-11-18 09:06:04 -0700 | [diff] [blame] | 2654 | } |
| 2655 | |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2656 | |
| 2657 | /** |
| 2658 | * Go through the search_list and find any layers which match type. If layer |
| 2659 | * type match is found in then add it to ext_list. |
| 2660 | */ |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2661 | static void loader_add_layer_implicit( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2662 | const struct loader_instance *inst, |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2663 | const enum layer_type type, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2664 | struct loader_layer_list *list, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2665 | const struct loader_layer_list *search_list) |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2666 | { |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2667 | bool enable; |
| 2668 | char *env_value; |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2669 | uint32_t i; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2670 | for (i = 0; i < search_list->count; i++) { |
| 2671 | const struct loader_layer_properties *prop = &search_list->list[i]; |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2672 | if (prop->type & type) { |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2673 | /* Found an implicit layer, see if it should be enabled */ |
| 2674 | enable = false; |
| 2675 | |
| 2676 | // if no enable_environment variable is specified, this implicit layer |
| 2677 | // should always be enabled. Otherwise check if the variable is set |
| 2678 | if (prop->enable_env_var.name[0] == 0) { |
| 2679 | enable = true; |
| 2680 | } else { |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 2681 | env_value = loader_getenv(prop->enable_env_var.name); |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2682 | if (env_value && !strcmp(prop->enable_env_var.value, env_value)) |
| 2683 | enable = true; |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 2684 | loader_free_getenv(env_value); |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2685 | } |
| 2686 | |
| 2687 | // disable_environment has priority, i.e. if both enable and disable |
| 2688 | // environment variables are set, the layer is disabled. Implicit layers |
| 2689 | // are required to have a disable_environment variables |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 2690 | env_value = loader_getenv(prop->disable_env_var.name); |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2691 | if (env_value) |
| 2692 | enable = false; |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 2693 | loader_free_getenv(env_value); |
Jon Ashburn | 075ce43 | 2015-12-17 17:38:24 -0700 | [diff] [blame] | 2694 | |
| 2695 | if (enable) |
| 2696 | loader_add_to_layer_list(inst, list, 1, prop); |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2697 | } |
| 2698 | } |
| 2699 | |
| 2700 | } |
| 2701 | |
| 2702 | /** |
| 2703 | * Get the layer name(s) from the env_name environment variable. If layer |
Jon Ashburn | bd332cc | 2015-07-07 10:27:45 -0600 | [diff] [blame] | 2704 | * is found in search_list then add it to layer_list. But only add it to |
| 2705 | * layer_list if type matches. |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2706 | */ |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2707 | static void loader_add_layer_env( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2708 | const struct loader_instance *inst, |
Jon Ashburn | bd332cc | 2015-07-07 10:27:45 -0600 | [diff] [blame] | 2709 | const enum layer_type type, |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2710 | const char *env_name, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2711 | struct loader_layer_list *layer_list, |
| 2712 | const struct loader_layer_list *search_list) |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2713 | { |
Ian Elliott | 4470a30 | 2015-02-17 10:33:47 -0700 | [diff] [blame] | 2714 | char *layerEnv; |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2715 | char *next, *name; |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2716 | |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 2717 | layerEnv = loader_getenv(env_name); |
Ian Elliott | 4470a30 | 2015-02-17 10:33:47 -0700 | [diff] [blame] | 2718 | if (layerEnv == NULL) { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2719 | return; |
Ian Elliott | 4470a30 | 2015-02-17 10:33:47 -0700 | [diff] [blame] | 2720 | } |
Courtney Goeltzenleuchter | 7f5aafc | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 2721 | name = loader_stack_alloc(strlen(layerEnv) + 1); |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2722 | if (name == NULL) { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2723 | return; |
Ian Elliott | 4470a30 | 2015-02-17 10:33:47 -0700 | [diff] [blame] | 2724 | } |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2725 | strcpy(name, layerEnv); |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2726 | |
Jon Ashburn | 38a497f | 2016-01-04 14:01:38 -0700 | [diff] [blame] | 2727 | loader_free_getenv(layerEnv); |
| 2728 | |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2729 | while (name && *name ) { |
| 2730 | next = loader_get_next_path(name); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2731 | loader_find_layer_name_add_list(inst, name, type, search_list, layer_list); |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2732 | name = next; |
Courtney Goeltzenleuchter | 499b3ba | 2015-02-27 15:19:33 -0700 | [diff] [blame] | 2733 | } |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2734 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2735 | return; |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 2736 | } |
| 2737 | |
Courtney Goeltzenleuchter | 7d0023c | 2015-06-08 15:09:22 -0600 | [diff] [blame] | 2738 | void loader_deactivate_instance_layers(struct loader_instance *instance) |
Jon Ashburn | 6b4d70c | 2014-10-22 18:13:16 -0600 | [diff] [blame] | 2739 | { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2740 | /* Create instance chain of enabled layers */ |
Courtney Goeltzenleuchter | 7d0023c | 2015-06-08 15:09:22 -0600 | [diff] [blame] | 2741 | for (uint32_t i = 0; i < instance->activated_layer_list.count; i++) { |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2742 | struct loader_layer_properties *layer_prop = &instance->activated_layer_list.list[i]; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2743 | |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2744 | loader_remove_layer_lib(instance, layer_prop); |
Jon Ashburn | 6b4d70c | 2014-10-22 18:13:16 -0600 | [diff] [blame] | 2745 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2746 | loader_destroy_layer_list(instance, &instance->activated_layer_list); |
Jon Ashburn | 6b4d70c | 2014-10-22 18:13:16 -0600 | [diff] [blame] | 2747 | } |
| 2748 | |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2749 | VkResult loader_enable_instance_layers( |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2750 | struct loader_instance *inst, |
| 2751 | const VkInstanceCreateInfo *pCreateInfo, |
| 2752 | const struct loader_layer_list *instance_layers) |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2753 | { |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2754 | VkResult err; |
| 2755 | |
Courtney Goeltzenleuchter | 55659b7 | 2015-09-14 18:01:17 -0600 | [diff] [blame] | 2756 | assert(inst && "Cannot have null instance"); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2757 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2758 | if (!loader_init_layer_list(inst, &inst->activated_layer_list)) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2759 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Failed to alloc Instance activated layer list"); |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2760 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2761 | } |
| 2762 | |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2763 | /* Add any implicit layers first */ |
| 2764 | loader_add_layer_implicit( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2765 | inst, |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2766 | VK_LAYER_TYPE_INSTANCE_IMPLICIT, |
| 2767 | &inst->activated_layer_list, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2768 | instance_layers); |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2769 | |
Jon Ashburn | 2d0c4bb | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 2770 | /* Add any layers specified via environment variable next */ |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2771 | loader_add_layer_env( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2772 | inst, |
Jon Ashburn | bd332cc | 2015-07-07 10:27:45 -0600 | [diff] [blame] | 2773 | VK_LAYER_TYPE_INSTANCE_EXPLICIT, |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2774 | "VK_INSTANCE_LAYERS", |
| 2775 | &inst->activated_layer_list, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2776 | instance_layers); |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2777 | |
| 2778 | /* Add layers specified by the application */ |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2779 | err = loader_add_layer_names_to_list( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2780 | inst, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2781 | &inst->activated_layer_list, |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 2782 | pCreateInfo->enabledLayerNameCount, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2783 | pCreateInfo->ppEnabledLayerNames, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2784 | instance_layers); |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2785 | |
| 2786 | return err; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2787 | } |
| 2788 | |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2789 | uint32_t loader_activate_instance_layers(struct loader_instance *inst) |
| 2790 | { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2791 | uint32_t layer_idx; |
Jon Ashburn | 128f942 | 2015-05-28 19:16:58 -0600 | [diff] [blame] | 2792 | VkBaseLayerObject *wrappedInstance; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2793 | |
David Pinedo | a0a8a24 | 2015-06-24 15:29:18 -0600 | [diff] [blame] | 2794 | if (inst == NULL) { |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2795 | return 0; |
David Pinedo | a0a8a24 | 2015-06-24 15:29:18 -0600 | [diff] [blame] | 2796 | } |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2797 | |
| 2798 | // NOTE inst is unwrapped at this point in time |
Tony Barbour | 1d2cd3f | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 2799 | void* baseObj = (void*) inst; |
| 2800 | void* nextObj = (void*) inst; |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2801 | VkBaseLayerObject *nextInstObj; |
| 2802 | PFN_vkGetInstanceProcAddr nextGPA = loader_gpa_instance_internal; |
| 2803 | |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2804 | if (!inst->activated_layer_list.count) { |
Courtney Goeltzenleuchter | ed1a8dd | 2015-08-07 09:53:18 -0600 | [diff] [blame] | 2805 | loader_init_instance_core_dispatch_table(inst->disp, nextGPA, (VkInstance) nextObj, (VkInstance) baseObj); |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2806 | return 0; |
| 2807 | } |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2808 | |
Courtney Goeltzenleuchter | 6f460c5 | 2015-07-06 09:04:55 -0600 | [diff] [blame] | 2809 | wrappedInstance = loader_stack_alloc(sizeof(VkBaseLayerObject) |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2810 | * inst->activated_layer_list.count); |
Jon Ashburn | 128f942 | 2015-05-28 19:16:58 -0600 | [diff] [blame] | 2811 | if (!wrappedInstance) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2812 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Failed to alloc Instance objects for layer"); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2813 | return 0; |
| 2814 | } |
| 2815 | |
| 2816 | /* Create instance chain of enabled layers */ |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2817 | layer_idx = inst->activated_layer_list.count - 1; |
Courtney Goeltzenleuchter | 0f1d8eb | 2015-06-07 17:28:17 -0600 | [diff] [blame] | 2818 | for (int32_t i = inst->activated_layer_list.count - 1; i >= 0; i--) { |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2819 | struct loader_layer_properties *layer_prop = &inst->activated_layer_list.list[i]; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2820 | loader_platform_dl_handle lib_handle; |
| 2821 | |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2822 | /* |
Courtney Goeltzenleuchter | ee3b16a | 2015-06-01 14:12:42 -0600 | [diff] [blame] | 2823 | * Note: An extension's Get*ProcAddr should not return a function pointer for |
| 2824 | * any extension entry points until the extension has been enabled. |
| 2825 | * To do this requires a different behavior from Get*ProcAddr functions implemented |
| 2826 | * in layers. |
| 2827 | * The very first call to a layer will be it's Get*ProcAddr function requesting |
Tobin Ehlis | 1cb7f57 | 2015-10-06 09:09:24 -0600 | [diff] [blame] | 2828 | * the layer's vkGet*ProcAddr. The layer should initialize its internal dispatch table |
Courtney Goeltzenleuchter | ee3b16a | 2015-06-01 14:12:42 -0600 | [diff] [blame] | 2829 | * with the wrapped object given (either Instance or Device) and return the layer's |
| 2830 | * Get*ProcAddr function. The layer should also use this opportunity to record the |
| 2831 | * baseObject so that it can find the correct local dispatch table on future calls. |
| 2832 | * Subsequent calls to Get*ProcAddr, CreateInstance, CreateDevice |
| 2833 | * will not use a wrapped object and must look up their local dispatch table from |
| 2834 | * the given baseObject. |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2835 | */ |
Jon Ashburn | 128f942 | 2015-05-28 19:16:58 -0600 | [diff] [blame] | 2836 | nextInstObj = (wrappedInstance + layer_idx); |
Tony Barbour | 1d2cd3f | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 2837 | nextInstObj->pGPA = (PFN_vkGPA) nextGPA; |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2838 | nextInstObj->baseObject = baseObj; |
| 2839 | nextInstObj->nextObject = nextObj; |
Tony Barbour | 1d2cd3f | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 2840 | nextObj = (void*) nextInstObj; |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2841 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2842 | lib_handle = loader_add_layer_lib(inst, "instance", layer_prop); |
Jon Ashburn | f72a04b | 2015-11-25 17:55:49 -0700 | [diff] [blame] | 2843 | if (!lib_handle) |
| 2844 | continue; // TODO what should we do in this case |
Jon Ashburn | 21c21ee | 2015-09-09 11:29:24 -0600 | [diff] [blame] | 2845 | if ((nextGPA = layer_prop->functions.get_instance_proc_addr) == NULL) { |
| 2846 | if (layer_prop->functions.str_gipa == NULL || strlen(layer_prop->functions.str_gipa) == 0) { |
| 2847 | nextGPA = (PFN_vkGetInstanceProcAddr) loader_platform_get_proc_address(lib_handle, "vkGetInstanceProcAddr"); |
| 2848 | layer_prop->functions.get_instance_proc_addr = nextGPA; |
| 2849 | } else |
| 2850 | nextGPA = (PFN_vkGetInstanceProcAddr) loader_platform_get_proc_address(lib_handle, layer_prop->functions.str_gipa); |
| 2851 | if (!nextGPA) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2852 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Failed to find vkGetInstanceProcAddr in layer %s", layer_prop->lib_name); |
Courtney Goeltzenleuchter | a9e4af4 | 2015-06-01 14:49:17 -0600 | [diff] [blame] | 2853 | |
Jon Ashburn | 21c21ee | 2015-09-09 11:29:24 -0600 | [diff] [blame] | 2854 | /* TODO: Should we return nextObj, nextGPA to previous? or decrement layer_list count*/ |
| 2855 | continue; |
| 2856 | } |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2857 | } |
| 2858 | |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2859 | loader_log(inst, VK_DEBUG_REPORT_INFO_BIT_EXT, 0, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2860 | "Insert instance layer %s (%s)", |
| 2861 | layer_prop->info.layerName, |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 2862 | layer_prop->lib_name); |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 2863 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2864 | layer_idx--; |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2865 | } |
| 2866 | |
Jon Ashburn | 8fd0825 | 2015-05-28 16:25:02 -0600 | [diff] [blame] | 2867 | loader_init_instance_core_dispatch_table(inst->disp, nextGPA, (VkInstance) nextObj, (VkInstance) baseObj); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2868 | |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2869 | return inst->activated_layer_list.count; |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 2870 | } |
| 2871 | |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 2872 | void loader_activate_instance_layer_extensions(struct loader_instance *inst) |
| 2873 | { |
| 2874 | |
| 2875 | loader_init_instance_extension_dispatch_table(inst->disp, |
| 2876 | inst->disp->GetInstanceProcAddr, |
Jon Ashburn | 128f942 | 2015-05-28 19:16:58 -0600 | [diff] [blame] | 2877 | (VkInstance) inst); |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 2878 | } |
| 2879 | |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2880 | static VkResult loader_enable_device_layers( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2881 | const struct loader_instance *inst, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2882 | struct loader_icd *icd, |
| 2883 | struct loader_device *dev, |
| 2884 | const VkDeviceCreateInfo *pCreateInfo, |
| 2885 | const struct loader_layer_list *device_layers) |
| 2886 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2887 | { |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2888 | VkResult err; |
| 2889 | |
Courtney Goeltzenleuchter | 55659b7 | 2015-09-14 18:01:17 -0600 | [diff] [blame] | 2890 | assert(dev && "Cannot have null device"); |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2891 | |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2892 | if (dev->activated_layer_list.list == NULL || dev->activated_layer_list.capacity == 0) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2893 | loader_init_layer_list(inst, &dev->activated_layer_list); |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2894 | } |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2895 | |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2896 | if (dev->activated_layer_list.list == NULL) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2897 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Failed to alloc device activated layer list"); |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2898 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2899 | } |
| 2900 | |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2901 | /* Add any implicit layers first */ |
| 2902 | loader_add_layer_implicit( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2903 | inst, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2904 | VK_LAYER_TYPE_DEVICE_IMPLICIT, |
| 2905 | &dev->activated_layer_list, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2906 | device_layers); |
Jon Ashburn | 0c26e71 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 2907 | |
| 2908 | /* Add any layers specified via environment variable next */ |
Jon Ashburn | eb6d568 | 2015-07-02 14:10:53 -0600 | [diff] [blame] | 2909 | loader_add_layer_env( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2910 | inst, |
Jon Ashburn | bd332cc | 2015-07-07 10:27:45 -0600 | [diff] [blame] | 2911 | VK_LAYER_TYPE_DEVICE_EXPLICIT, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2912 | "VK_DEVICE_LAYERS", |
| 2913 | &dev->activated_layer_list, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2914 | device_layers); |
Jon Ashburn | bd6c488 | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 2915 | |
| 2916 | /* Add layers specified by the application */ |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2917 | err = loader_add_layer_names_to_list( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2918 | inst, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2919 | &dev->activated_layer_list, |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 2920 | pCreateInfo->enabledLayerNameCount, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2921 | pCreateInfo->ppEnabledLayerNames, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 2922 | device_layers); |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 2923 | |
| 2924 | return err; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 2925 | } |
| 2926 | |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2927 | /* |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 2928 | * This function terminates the device chain for CreateDevice. |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2929 | * CreateDevice is a special case and so the loader call's |
| 2930 | * the ICD's CreateDevice before creating the chain. Since |
| 2931 | * we can't call CreateDevice twice we must terminate the |
| 2932 | * device chain with something else. |
| 2933 | */ |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 2934 | static VKAPI_ATTR VkResult VKAPI_CALL scratch_vkCreateDevice( |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 2935 | VkPhysicalDevice physicalDevice, |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2936 | const VkDeviceCreateInfo *pCreateInfo, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 2937 | const VkAllocationCallbacks* pAllocator, |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2938 | VkDevice *pDevice) |
| 2939 | { |
| 2940 | return VK_SUCCESS; |
| 2941 | } |
| 2942 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 2943 | static VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL loader_GetDeviceChainProcAddr(VkDevice device, const char * name) |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2944 | { |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2945 | if (!strcmp(name, "vkGetDeviceProcAddr")) |
Courtney Goeltzenleuchter | 2d3ba63 | 2015-07-12 14:35:22 -0600 | [diff] [blame] | 2946 | return (PFN_vkVoidFunction) loader_GetDeviceChainProcAddr; |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2947 | if (!strcmp(name, "vkCreateDevice")) |
Courtney Goeltzenleuchter | 2d3ba63 | 2015-07-12 14:35:22 -0600 | [diff] [blame] | 2948 | return (PFN_vkVoidFunction) scratch_vkCreateDevice; |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2949 | |
Courtney Goeltzenleuchter | 3e029d1 | 2015-06-29 16:09:23 -0600 | [diff] [blame] | 2950 | struct loader_device *found_dev; |
| 2951 | struct loader_icd *icd = loader_get_icd_and_device(device, &found_dev); |
| 2952 | return icd->GetDeviceProcAddr(device, name); |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2953 | } |
| 2954 | |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 2955 | static uint32_t loader_activate_device_layers( |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2956 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2957 | struct loader_device *dev, |
Courtney Goeltzenleuchter | 371de70 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 2958 | VkDevice device) |
Jon Ashburn | 6b4d70c | 2014-10-22 18:13:16 -0600 | [diff] [blame] | 2959 | { |
David Pinedo | a0a8a24 | 2015-06-24 15:29:18 -0600 | [diff] [blame] | 2960 | if (!dev) { |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 2961 | return 0; |
David Pinedo | a0a8a24 | 2015-06-24 15:29:18 -0600 | [diff] [blame] | 2962 | } |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2963 | |
Jon Ashburn | 6b4d70c | 2014-10-22 18:13:16 -0600 | [diff] [blame] | 2964 | /* activate any layer libraries */ |
Tony Barbour | 1d2cd3f | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 2965 | void* nextObj = (void*) device; |
| 2966 | void* baseObj = nextObj; |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2967 | VkBaseLayerObject *nextGpuObj; |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2968 | PFN_vkGetDeviceProcAddr nextGPA = loader_GetDeviceChainProcAddr; |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2969 | VkBaseLayerObject *wrappedGpus; |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2970 | |
Courtney Goeltzenleuchter | ed1a8dd | 2015-08-07 09:53:18 -0600 | [diff] [blame] | 2971 | if (!dev->activated_layer_list.count) { |
| 2972 | loader_init_device_dispatch_table(&dev->loader_dispatch, nextGPA, |
| 2973 | (VkDevice) nextObj, (VkDevice) baseObj); |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2974 | return 0; |
Courtney Goeltzenleuchter | ed1a8dd | 2015-08-07 09:53:18 -0600 | [diff] [blame] | 2975 | } |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2976 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2977 | wrappedGpus = loader_heap_alloc(inst, |
| 2978 | sizeof (VkBaseLayerObject) * dev->activated_layer_list.count, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 2979 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2980 | if (!wrappedGpus) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 2981 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Failed to alloc Gpu objects for layer"); |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2982 | return 0; |
| 2983 | } |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 2984 | |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2985 | for (int32_t i = dev->activated_layer_list.count - 1; i >= 0; i--) { |
| 2986 | |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 2987 | struct loader_layer_properties *layer_prop = &dev->activated_layer_list.list[i]; |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2988 | loader_platform_dl_handle lib_handle; |
| 2989 | |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2990 | nextGpuObj = (wrappedGpus + i); |
Tony Barbour | 1d2cd3f | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 2991 | nextGpuObj->pGPA = (PFN_vkGPA)nextGPA; |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2992 | nextGpuObj->baseObject = baseObj; |
| 2993 | nextGpuObj->nextObject = nextObj; |
Tony Barbour | 1d2cd3f | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 2994 | nextObj = (void*) nextGpuObj; |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 2995 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 2996 | lib_handle = loader_add_layer_lib(inst, "device", layer_prop); |
Jon Ashburn | 21c21ee | 2015-09-09 11:29:24 -0600 | [diff] [blame] | 2997 | if ((nextGPA = layer_prop->functions.get_device_proc_addr) == NULL) { |
| 2998 | if (layer_prop->functions.str_gdpa == NULL || strlen(layer_prop->functions.str_gdpa) == 0) { |
| 2999 | nextGPA = (PFN_vkGetDeviceProcAddr) loader_platform_get_proc_address(lib_handle, "vkGetDeviceProcAddr"); |
| 3000 | layer_prop->functions.get_device_proc_addr = nextGPA; |
| 3001 | } else |
| 3002 | nextGPA = (PFN_vkGetDeviceProcAddr) loader_platform_get_proc_address(lib_handle, layer_prop->functions.str_gdpa); |
| 3003 | if (!nextGPA) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 3004 | loader_log(inst, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, "Failed to find vkGetDeviceProcAddr in layer %s", layer_prop->lib_name); |
Jon Ashburn | 21c21ee | 2015-09-09 11:29:24 -0600 | [diff] [blame] | 3005 | continue; |
| 3006 | } |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 3007 | } |
| 3008 | |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 3009 | loader_log(inst, VK_DEBUG_REPORT_INFO_BIT_EXT, 0, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3010 | "Insert device layer library %s (%s)", |
| 3011 | layer_prop->info.layerName, |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 3012 | layer_prop->lib_name); |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 3013 | |
| 3014 | } |
| 3015 | |
| 3016 | loader_init_device_dispatch_table(&dev->loader_dispatch, nextGPA, |
Tony Barbour | 1d2cd3f | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 3017 | (VkDevice) nextObj, (VkDevice) baseObj); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3018 | loader_heap_free(inst, wrappedGpus); |
Jon Ashburn | 94e7049 | 2015-06-10 10:13:10 -0600 | [diff] [blame] | 3019 | |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 3020 | return dev->activated_layer_list.count; |
Jon Ashburn | 6b4d70c | 2014-10-22 18:13:16 -0600 | [diff] [blame] | 3021 | } |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 3022 | |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3023 | VkResult loader_validate_layers( |
| 3024 | const uint32_t layer_count, |
| 3025 | const char * const *ppEnabledLayerNames, |
Jon Ashburn | 3d00233 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 3026 | const struct loader_layer_list *list) |
Courtney Goeltzenleuchter | 3b8c5ff | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 3027 | { |
| 3028 | struct loader_layer_properties *prop; |
| 3029 | |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3030 | for (uint32_t i = 0; i < layer_count; i++) { |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 3031 | prop = loader_get_layer_property(ppEnabledLayerNames[i], |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3032 | list); |
Courtney Goeltzenleuchter | 3b8c5ff | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 3033 | if (!prop) { |
Courtney Goeltzenleuchter | 55659b7 | 2015-09-14 18:01:17 -0600 | [diff] [blame] | 3034 | return VK_ERROR_LAYER_NOT_PRESENT; |
Courtney Goeltzenleuchter | 3b8c5ff | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 3035 | } |
| 3036 | } |
| 3037 | |
| 3038 | return VK_SUCCESS; |
| 3039 | } |
| 3040 | |
| 3041 | VkResult loader_validate_instance_extensions( |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 3042 | const struct loader_extension_list *icd_exts, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3043 | const struct loader_layer_list *instance_layer, |
| 3044 | const VkInstanceCreateInfo *pCreateInfo) |
Courtney Goeltzenleuchter | 3b8c5ff | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 3045 | { |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 3046 | VkExtensionProperties *extension_prop; |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3047 | struct loader_layer_properties *layer_prop; |
| 3048 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3049 | for (uint32_t i = 0; i < pCreateInfo->enabledExtensionNameCount; i++) { |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3050 | extension_prop = get_extension_property(pCreateInfo->ppEnabledExtensionNames[i], |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 3051 | icd_exts); |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3052 | |
| 3053 | if (extension_prop) { |
| 3054 | continue; |
| 3055 | } |
| 3056 | |
| 3057 | extension_prop = NULL; |
| 3058 | |
| 3059 | /* Not in global list, search layer extension lists */ |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3060 | for (uint32_t j = 0; j < pCreateInfo->enabledLayerNameCount; j++) { |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 3061 | layer_prop = loader_get_layer_property(pCreateInfo->ppEnabledLayerNames[i], |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3062 | instance_layer); |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3063 | if (!layer_prop) { |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3064 | /* Should NOT get here, loader_validate_layers |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3065 | * should have already filtered this case out. |
| 3066 | */ |
| 3067 | continue; |
| 3068 | } |
| 3069 | |
| 3070 | extension_prop = get_extension_property(pCreateInfo->ppEnabledExtensionNames[i], |
| 3071 | &layer_prop->instance_extension_list); |
| 3072 | if (extension_prop) { |
| 3073 | /* Found the extension in one of the layers enabled by the app. */ |
| 3074 | break; |
| 3075 | } |
| 3076 | } |
| 3077 | |
| 3078 | if (!extension_prop) { |
| 3079 | /* Didn't find extension name in any of the global layers, error out */ |
Courtney Goeltzenleuchter | 55659b7 | 2015-09-14 18:01:17 -0600 | [diff] [blame] | 3080 | return VK_ERROR_EXTENSION_NOT_PRESENT; |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3081 | } |
| 3082 | } |
| 3083 | return VK_SUCCESS; |
| 3084 | } |
| 3085 | |
| 3086 | VkResult loader_validate_device_extensions( |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3087 | struct loader_physical_device *phys_dev, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3088 | const struct loader_layer_list *device_layer, |
| 3089 | const VkDeviceCreateInfo *pCreateInfo) |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3090 | { |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 3091 | VkExtensionProperties *extension_prop; |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3092 | struct loader_layer_properties *layer_prop; |
| 3093 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3094 | for (uint32_t i = 0; i < pCreateInfo->enabledExtensionNameCount; i++) { |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3095 | const char *extension_name = pCreateInfo->ppEnabledExtensionNames[i]; |
| 3096 | extension_prop = get_extension_property(extension_name, |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3097 | &phys_dev->device_extension_cache); |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3098 | |
| 3099 | if (extension_prop) { |
| 3100 | continue; |
| 3101 | } |
| 3102 | |
| 3103 | /* Not in global list, search layer extension lists */ |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3104 | for (uint32_t j = 0; j < pCreateInfo->enabledLayerNameCount; j++) { |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3105 | const char *layer_name = pCreateInfo->ppEnabledLayerNames[j]; |
Jon Ashburn | e13ecc9 | 2015-08-03 17:19:30 -0600 | [diff] [blame] | 3106 | layer_prop = loader_get_layer_property(layer_name, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3107 | device_layer); |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3108 | |
| 3109 | if (!layer_prop) { |
| 3110 | /* Should NOT get here, loader_validate_instance_layers |
| 3111 | * should have already filtered this case out. |
| 3112 | */ |
| 3113 | continue; |
| 3114 | } |
| 3115 | |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 3116 | extension_prop = get_dev_extension_property(extension_name, |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3117 | &layer_prop->device_extension_list); |
| 3118 | if (extension_prop) { |
| 3119 | /* Found the extension in one of the layers enabled by the app. */ |
| 3120 | break; |
| 3121 | } |
| 3122 | } |
| 3123 | |
| 3124 | if (!extension_prop) { |
| 3125 | /* Didn't find extension name in any of the device layers, error out */ |
Courtney Goeltzenleuchter | 55659b7 | 2015-09-14 18:01:17 -0600 | [diff] [blame] | 3126 | return VK_ERROR_EXTENSION_NOT_PRESENT; |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3127 | } |
| 3128 | } |
Courtney Goeltzenleuchter | 3b8c5ff | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 3129 | return VK_SUCCESS; |
| 3130 | } |
| 3131 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3132 | VKAPI_ATTR VkResult VKAPI_CALL loader_CreateInstance( |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 3133 | const VkInstanceCreateInfo* pCreateInfo, |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 3134 | const VkAllocationCallbacks* pAllocator, |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 3135 | VkInstance* pInstance) |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3136 | { |
Jon Ashburn | eed0c00 | 2015-05-21 17:42:17 -0600 | [diff] [blame] | 3137 | struct loader_instance *ptr_instance = *(struct loader_instance **) pInstance; |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 3138 | struct loader_icd *icd; |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 3139 | VkExtensionProperties *prop; |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 3140 | char **filtered_extension_names = NULL; |
| 3141 | VkInstanceCreateInfo icd_create_info; |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 3142 | VkResult res = VK_SUCCESS; |
Jon Ashburn | 7e18de0 | 2015-11-19 09:29:51 -0700 | [diff] [blame] | 3143 | bool success = false; |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3144 | |
Tony Barbour | 3c78ff4 | 2015-12-04 13:24:39 -0700 | [diff] [blame] | 3145 | memcpy(&icd_create_info, pCreateInfo, sizeof(icd_create_info)); |
| 3146 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3147 | icd_create_info.enabledLayerNameCount = 0; |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 3148 | icd_create_info.ppEnabledLayerNames = NULL; |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 3149 | |
| 3150 | /* |
| 3151 | * NOTE: Need to filter the extensions to only those |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3152 | * supported by the ICD. |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 3153 | * No ICD will advertise support for layers. An ICD |
| 3154 | * library could support a layer, but it would be |
| 3155 | * independent of the actual ICD, just in the same library. |
| 3156 | */ |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3157 | filtered_extension_names = loader_stack_alloc(pCreateInfo->enabledExtensionNameCount * sizeof(char *)); |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 3158 | if (!filtered_extension_names) { |
| 3159 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 3160 | } |
| 3161 | icd_create_info.ppEnabledExtensionNames = (const char * const *) filtered_extension_names; |
| 3162 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 3163 | for (uint32_t i = 0; i < ptr_instance->icd_libs.count; i++) { |
| 3164 | icd = loader_icd_add(ptr_instance, &ptr_instance->icd_libs.list[i]); |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 3165 | if (icd) { |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3166 | icd_create_info.enabledExtensionNameCount = 0; |
Courtney Goeltzenleuchter | 36eeb74 | 2015-12-21 16:41:47 -0700 | [diff] [blame] | 3167 | struct loader_extension_list icd_exts; |
| 3168 | |
| 3169 | loader_log(ptr_instance, VK_DEBUG_REPORT_DEBUG_BIT_EXT, 0, "Build ICD instance extension list"); |
| 3170 | // traverse scanned icd list adding non-duplicate extensions to the list |
| 3171 | loader_init_generic_list(ptr_instance, (struct loader_generic_list *) &icd_exts, |
| 3172 | sizeof(VkExtensionProperties)); |
| 3173 | loader_add_instance_extensions(ptr_instance, |
| 3174 | icd->this_icd_lib->EnumerateInstanceExtensionProperties, |
| 3175 | icd->this_icd_lib->lib_name, |
| 3176 | &icd_exts); |
| 3177 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3178 | for (uint32_t i = 0; i < pCreateInfo->enabledExtensionNameCount; i++) { |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 3179 | prop = get_extension_property(pCreateInfo->ppEnabledExtensionNames[i], |
Courtney Goeltzenleuchter | 36eeb74 | 2015-12-21 16:41:47 -0700 | [diff] [blame] | 3180 | &icd_exts); |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 3181 | if (prop) { |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3182 | filtered_extension_names[icd_create_info.enabledExtensionNameCount] = (char *) pCreateInfo->ppEnabledExtensionNames[i]; |
| 3183 | icd_create_info.enabledExtensionNameCount++; |
Courtney Goeltzenleuchter | 746db73 | 2015-07-06 17:42:01 -0600 | [diff] [blame] | 3184 | } |
| 3185 | } |
| 3186 | |
Courtney Goeltzenleuchter | 36eeb74 | 2015-12-21 16:41:47 -0700 | [diff] [blame] | 3187 | loader_destroy_generic_list(ptr_instance, (struct loader_generic_list *) &icd_exts); |
| 3188 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 3189 | res = ptr_instance->icd_libs.list[i].CreateInstance(&icd_create_info, |
Chia-I Wu | f7458c5 | 2015-10-26 21:10:41 +0800 | [diff] [blame] | 3190 | pAllocator, |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 3191 | &(icd->instance)); |
Jon Ashburn | 7e18de0 | 2015-11-19 09:29:51 -0700 | [diff] [blame] | 3192 | if (res == VK_SUCCESS) |
| 3193 | success = loader_icd_init_entrys( |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 3194 | icd, |
| 3195 | icd->instance, |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 3196 | ptr_instance->icd_libs.list[i].GetInstanceProcAddr); |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 3197 | |
| 3198 | if (res != VK_SUCCESS || !success) |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 3199 | { |
| 3200 | ptr_instance->icds = ptr_instance->icds->next; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 3201 | loader_icd_destroy(ptr_instance, icd); |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 3202 | icd->instance = VK_NULL_HANDLE; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 3203 | loader_log(ptr_instance, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0, |
Jon Ashburn | c624c88 | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 3204 | "ICD ignored: failed to CreateInstance and find entrypoints with ICD"); |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 3205 | } |
| 3206 | } |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 3207 | } |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3208 | |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 3209 | /* |
| 3210 | * If no ICDs were added to instance list and res is unchanged |
| 3211 | * from it's initial value, the loader was unable to find |
| 3212 | * a suitable ICD. |
| 3213 | */ |
Ian Elliott | eb45076 | 2015-02-05 15:19:15 -0700 | [diff] [blame] | 3214 | if (ptr_instance->icds == NULL) { |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 3215 | if (res == VK_SUCCESS) { |
| 3216 | return VK_ERROR_INCOMPATIBLE_DRIVER; |
| 3217 | } else { |
| 3218 | return res; |
| 3219 | } |
Ian Elliott | eb45076 | 2015-02-05 15:19:15 -0700 | [diff] [blame] | 3220 | } |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 3221 | |
Courtney Goeltzenleuchter | 40caf0b | 2015-07-06 09:06:34 -0600 | [diff] [blame] | 3222 | return VK_SUCCESS; |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3223 | } |
| 3224 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3225 | VKAPI_ATTR void VKAPI_CALL loader_DestroyInstance( |
Chia-I Wu | f7458c5 | 2015-10-26 21:10:41 +0800 | [diff] [blame] | 3226 | VkInstance instance, |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 3227 | const VkAllocationCallbacks* pAllocator) |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3228 | { |
Courtney Goeltzenleuchter | deceded | 2015-06-08 15:04:02 -0600 | [diff] [blame] | 3229 | struct loader_instance *ptr_instance = loader_instance(instance); |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 3230 | struct loader_icd *icds = ptr_instance->icds; |
Jon Ashburn | a6fd261 | 2015-06-16 14:43:19 -0600 | [diff] [blame] | 3231 | struct loader_icd *next_icd; |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3232 | |
| 3233 | // Remove this instance from the list of instances: |
| 3234 | struct loader_instance *prev = NULL; |
| 3235 | struct loader_instance *next = loader.instances; |
| 3236 | while (next != NULL) { |
| 3237 | if (next == ptr_instance) { |
| 3238 | // Remove this instance from the list: |
| 3239 | if (prev) |
| 3240 | prev->next = next->next; |
Jon Ashburn | c5c4960 | 2015-02-03 09:26:59 -0700 | [diff] [blame] | 3241 | else |
| 3242 | loader.instances = next->next; |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3243 | break; |
| 3244 | } |
| 3245 | prev = next; |
| 3246 | next = next->next; |
| 3247 | } |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3248 | |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 3249 | while (icds) { |
| 3250 | if (icds->instance) { |
Chia-I Wu | f7458c5 | 2015-10-26 21:10:41 +0800 | [diff] [blame] | 3251 | icds->DestroyInstance(icds->instance, pAllocator); |
Tony Barbour | f20f87b | 2015-04-22 09:02:32 -0600 | [diff] [blame] | 3252 | } |
Jon Ashburn | a6fd261 | 2015-06-16 14:43:19 -0600 | [diff] [blame] | 3253 | next_icd = icds->next; |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 3254 | icds->instance = VK_NULL_HANDLE; |
Jon Ashburn | a6fd261 | 2015-06-16 14:43:19 -0600 | [diff] [blame] | 3255 | loader_icd_destroy(ptr_instance, icds); |
| 3256 | |
| 3257 | icds = next_icd; |
Jon Ashburn | 4688839 | 2015-01-29 15:45:51 -0700 | [diff] [blame] | 3258 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3259 | loader_delete_layer_properties(ptr_instance, &ptr_instance->device_layer_list); |
| 3260 | loader_delete_layer_properties(ptr_instance, &ptr_instance->instance_layer_list); |
| 3261 | loader_scanned_icd_clear(ptr_instance, &ptr_instance->icd_libs); |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 3262 | loader_destroy_generic_list(ptr_instance, (struct loader_generic_list *) |
| 3263 | &ptr_instance->ext_list); |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3264 | for (uint32_t i = 0; i < ptr_instance->total_gpu_count; i++) |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 3265 | loader_destroy_generic_list(ptr_instance, (struct loader_generic_list *) |
| 3266 | &ptr_instance->phys_devs[i].device_extension_cache); |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3267 | loader_heap_free(ptr_instance, ptr_instance->phys_devs); |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 3268 | loader_free_dev_ext_table(ptr_instance); |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3269 | } |
| 3270 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3271 | VkResult loader_init_physical_device_info(struct loader_instance *ptr_instance) |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3272 | { |
| 3273 | struct loader_icd *icd; |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3274 | uint32_t i, j, idx, count = 0; |
Courtney Goeltzenleuchter | 55659b7 | 2015-09-14 18:01:17 -0600 | [diff] [blame] | 3275 | VkResult res; |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3276 | struct loader_phys_dev_per_icd *phys_devs; |
| 3277 | |
| 3278 | ptr_instance->total_gpu_count = 0; |
| 3279 | phys_devs = (struct loader_phys_dev_per_icd *) loader_stack_alloc( |
| 3280 | sizeof(struct loader_phys_dev_per_icd) * |
| 3281 | ptr_instance->total_icd_count); |
| 3282 | if (!phys_devs) |
| 3283 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3284 | |
| 3285 | icd = ptr_instance->icds; |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3286 | for (i = 0; i < ptr_instance->total_icd_count; i++) { |
| 3287 | assert(icd); |
| 3288 | res = icd->EnumeratePhysicalDevices(icd->instance, &phys_devs[i].count, NULL); |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3289 | if (res != VK_SUCCESS) |
| 3290 | return res; |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3291 | count += phys_devs[i].count; |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3292 | icd = icd->next; |
| 3293 | } |
| 3294 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3295 | ptr_instance->phys_devs = (struct loader_physical_device *) loader_heap_alloc( |
| 3296 | ptr_instance, |
| 3297 | count * sizeof(struct loader_physical_device), |
| 3298 | VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE); |
| 3299 | if (!ptr_instance->phys_devs) |
| 3300 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3301 | |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3302 | icd = ptr_instance->icds; |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3303 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3304 | struct loader_physical_device *inst_phys_devs = ptr_instance->phys_devs; |
| 3305 | idx = 0; |
| 3306 | for (i = 0; i < ptr_instance->total_icd_count; i++) { |
| 3307 | assert(icd); |
| 3308 | |
| 3309 | phys_devs[i].phys_devs = (VkPhysicalDevice *) loader_stack_alloc( |
| 3310 | phys_devs[i].count * sizeof(VkPhysicalDevice)); |
| 3311 | if (!phys_devs[i].phys_devs) { |
Jon Ashburn | 093ce20 | 2015-11-02 17:59:02 -0700 | [diff] [blame] | 3312 | loader_heap_free(ptr_instance, ptr_instance->phys_devs); |
| 3313 | ptr_instance->phys_devs = NULL; |
Jon Ashburn | 128f942 | 2015-05-28 19:16:58 -0600 | [diff] [blame] | 3314 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 3315 | } |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3316 | res = icd->EnumeratePhysicalDevices( |
| 3317 | icd->instance, |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3318 | &(phys_devs[i].count), |
| 3319 | phys_devs[i].phys_devs); |
| 3320 | if ((res == VK_SUCCESS)) { |
| 3321 | ptr_instance->total_gpu_count += phys_devs[i].count; |
| 3322 | for (j = 0; j < phys_devs[i].count; j++) { |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3323 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3324 | // initialize the loader's physicalDevice object |
| 3325 | loader_set_dispatch((void *) &inst_phys_devs[idx], ptr_instance->disp); |
| 3326 | inst_phys_devs[idx].this_instance = ptr_instance; |
| 3327 | inst_phys_devs[idx].this_icd = icd; |
| 3328 | inst_phys_devs[idx].phys_dev = phys_devs[i].phys_devs[j]; |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 3329 | memset(&inst_phys_devs[idx].device_extension_cache, 0, sizeof(struct loader_extension_list)); |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3330 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3331 | idx++; |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3332 | } |
Jon Ashburn | 093ce20 | 2015-11-02 17:59:02 -0700 | [diff] [blame] | 3333 | } else { |
| 3334 | loader_heap_free(ptr_instance, ptr_instance->phys_devs); |
| 3335 | ptr_instance->phys_devs = NULL; |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3336 | return res; |
Jon Ashburn | 093ce20 | 2015-11-02 17:59:02 -0700 | [diff] [blame] | 3337 | } |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3338 | |
| 3339 | icd = icd->next; |
| 3340 | } |
| 3341 | |
| 3342 | return VK_SUCCESS; |
| 3343 | } |
| 3344 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3345 | VKAPI_ATTR VkResult VKAPI_CALL loader_EnumeratePhysicalDevices( |
Courtney Goeltzenleuchter | 5e41f1d | 2015-04-20 12:48:54 -0600 | [diff] [blame] | 3346 | VkInstance instance, |
| 3347 | uint32_t* pPhysicalDeviceCount, |
| 3348 | VkPhysicalDevice* pPhysicalDevices) |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3349 | { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3350 | uint32_t i; |
Jon Ashburn | 4c392fb | 2015-01-28 19:57:09 -0700 | [diff] [blame] | 3351 | struct loader_instance *ptr_instance = (struct loader_instance *) instance; |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3352 | VkResult res = VK_SUCCESS; |
Jon Ashburn | 4c392fb | 2015-01-28 19:57:09 -0700 | [diff] [blame] | 3353 | |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3354 | if (ptr_instance->total_gpu_count == 0) { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3355 | res = loader_init_physical_device_info(ptr_instance); |
Jon Ashburn | 4c392fb | 2015-01-28 19:57:09 -0700 | [diff] [blame] | 3356 | } |
| 3357 | |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3358 | *pPhysicalDeviceCount = ptr_instance->total_gpu_count; |
| 3359 | if (!pPhysicalDevices) { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3360 | return res; |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3361 | } |
Jon Ashburn | 4c392fb | 2015-01-28 19:57:09 -0700 | [diff] [blame] | 3362 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3363 | for (i = 0; i < ptr_instance->total_gpu_count; i++) { |
| 3364 | pPhysicalDevices[i] = (VkPhysicalDevice) &ptr_instance->phys_devs[i]; |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3365 | } |
| 3366 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3367 | return res; |
Jon Ashburn | 1beab2d | 2015-01-26 14:51:40 -0700 | [diff] [blame] | 3368 | } |
| 3369 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3370 | VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceProperties( |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3371 | VkPhysicalDevice physicalDevice, |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3372 | VkPhysicalDeviceProperties* pProperties) |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 3373 | { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3374 | struct loader_physical_device *phys_dev = (struct loader_physical_device *) physicalDevice; |
| 3375 | struct loader_icd *icd = phys_dev->this_icd; |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 3376 | |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3377 | if (icd->GetPhysicalDeviceProperties) |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3378 | icd->GetPhysicalDeviceProperties(phys_dev->phys_dev, pProperties); |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3379 | } |
| 3380 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3381 | VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceQueueFamilyProperties ( |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3382 | VkPhysicalDevice physicalDevice, |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3383 | uint32_t* pQueueFamilyPropertyCount, |
Cody Northrop | d080288 | 2015-08-03 17:04:53 -0600 | [diff] [blame] | 3384 | VkQueueFamilyProperties* pProperties) |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3385 | { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3386 | struct loader_physical_device *phys_dev = (struct loader_physical_device *) physicalDevice; |
| 3387 | struct loader_icd *icd = phys_dev->this_icd; |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3388 | |
Cody Northrop | d080288 | 2015-08-03 17:04:53 -0600 | [diff] [blame] | 3389 | if (icd->GetPhysicalDeviceQueueFamilyProperties) |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3390 | icd->GetPhysicalDeviceQueueFamilyProperties(phys_dev->phys_dev, pQueueFamilyPropertyCount, pProperties); |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3391 | } |
| 3392 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3393 | VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceMemoryProperties ( |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3394 | VkPhysicalDevice physicalDevice, |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3395 | VkPhysicalDeviceMemoryProperties* pProperties) |
| 3396 | { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3397 | struct loader_physical_device *phys_dev = (struct loader_physical_device *) physicalDevice; |
| 3398 | struct loader_icd *icd = phys_dev->this_icd; |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3399 | |
| 3400 | if (icd->GetPhysicalDeviceMemoryProperties) |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3401 | icd->GetPhysicalDeviceMemoryProperties(phys_dev->phys_dev, pProperties); |
Jon Ashburn | 3da71f2 | 2015-05-14 12:43:38 -0600 | [diff] [blame] | 3402 | } |
| 3403 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3404 | VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceFeatures( |
Chris Forbes | bc0bb77 | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 3405 | VkPhysicalDevice physicalDevice, |
| 3406 | VkPhysicalDeviceFeatures* pFeatures) |
| 3407 | { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3408 | struct loader_physical_device *phys_dev = (struct loader_physical_device *) physicalDevice; |
| 3409 | struct loader_icd *icd = phys_dev->this_icd; |
Chris Forbes | bc0bb77 | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 3410 | |
| 3411 | if (icd->GetPhysicalDeviceFeatures) |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3412 | icd->GetPhysicalDeviceFeatures(phys_dev->phys_dev, pFeatures); |
Chris Forbes | bc0bb77 | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 3413 | } |
| 3414 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3415 | VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceFormatProperties( |
Chris Forbes | bc0bb77 | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 3416 | VkPhysicalDevice physicalDevice, |
| 3417 | VkFormat format, |
| 3418 | VkFormatProperties* pFormatInfo) |
| 3419 | { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3420 | struct loader_physical_device *phys_dev = (struct loader_physical_device *) physicalDevice; |
| 3421 | struct loader_icd *icd = phys_dev->this_icd; |
Chris Forbes | bc0bb77 | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 3422 | |
Courtney Goeltzenleuchter | 2caec86 | 2015-07-12 12:52:09 -0600 | [diff] [blame] | 3423 | if (icd->GetPhysicalDeviceFormatProperties) |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3424 | icd->GetPhysicalDeviceFormatProperties(phys_dev->phys_dev, format, pFormatInfo); |
Chris Forbes | bc0bb77 | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 3425 | } |
| 3426 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3427 | VKAPI_ATTR VkResult VKAPI_CALL loader_GetPhysicalDeviceImageFormatProperties( |
Jon Ashburn | 754864f | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 3428 | VkPhysicalDevice physicalDevice, |
| 3429 | VkFormat format, |
| 3430 | VkImageType type, |
| 3431 | VkImageTiling tiling, |
| 3432 | VkImageUsageFlags usage, |
Courtney Goeltzenleuchter | a22097a | 2015-09-10 13:44:12 -0600 | [diff] [blame] | 3433 | VkImageCreateFlags flags, |
Jon Ashburn | 754864f | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 3434 | VkImageFormatProperties* pImageFormatProperties) |
| 3435 | { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3436 | struct loader_physical_device *phys_dev = (struct loader_physical_device *) physicalDevice; |
| 3437 | struct loader_icd *icd = phys_dev->this_icd; |
Jon Ashburn | 754864f | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 3438 | |
Chia-I Wu | 1724104 | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 3439 | if (!icd->GetPhysicalDeviceImageFormatProperties) |
| 3440 | return VK_ERROR_INITIALIZATION_FAILED; |
| 3441 | |
| 3442 | return icd->GetPhysicalDeviceImageFormatProperties(phys_dev->phys_dev, format, |
| 3443 | type, tiling, usage, flags, pImageFormatProperties); |
Jon Ashburn | 754864f | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 3444 | } |
| 3445 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3446 | VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceSparseImageFormatProperties( |
Mark Lobodzinski | 16e8bef | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 3447 | VkPhysicalDevice physicalDevice, |
| 3448 | VkFormat format, |
| 3449 | VkImageType type, |
Chia-I Wu | 5c17c96 | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 3450 | VkSampleCountFlagBits samples, |
Mark Lobodzinski | 16e8bef | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 3451 | VkImageUsageFlags usage, |
| 3452 | VkImageTiling tiling, |
| 3453 | uint32_t* pNumProperties, |
| 3454 | VkSparseImageFormatProperties* pProperties) |
| 3455 | { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3456 | struct loader_physical_device *phys_dev = (struct loader_physical_device *) physicalDevice; |
| 3457 | struct loader_icd *icd = phys_dev->this_icd; |
Mark Lobodzinski | 16e8bef | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 3458 | |
| 3459 | if (icd->GetPhysicalDeviceSparseImageFormatProperties) |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3460 | icd->GetPhysicalDeviceSparseImageFormatProperties(phys_dev->phys_dev, format, type, samples, usage, tiling, pNumProperties, pProperties); |
Mark Lobodzinski | 16e8bef | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 3461 | } |
| 3462 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3463 | VKAPI_ATTR VkResult VKAPI_CALL loader_CreateDevice( |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3464 | VkPhysicalDevice physicalDevice, |
Jon Ashburn | 95a77ba | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 3465 | const VkDeviceCreateInfo* pCreateInfo, |
Jon Ashburn | 46674bf | 2015-12-11 09:41:34 -0700 | [diff] [blame] | 3466 | const VkAllocationCallbacks* pAllocator, |
Jon Ashburn | 95a77ba | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 3467 | VkDevice* pDevice) |
| 3468 | { |
Jon Ashburn | 46674bf | 2015-12-11 09:41:34 -0700 | [diff] [blame] | 3469 | struct loader_physical_device *phys_dev; |
| 3470 | struct loader_icd *icd; |
Jon Ashburn | dc6fcad | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 3471 | struct loader_device *dev; |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 3472 | struct loader_instance *inst; |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3473 | VkDeviceCreateInfo device_create_info; |
| 3474 | char **filtered_extension_names = NULL; |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 3475 | VkResult res; |
Jon Ashburn | 95a77ba | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 3476 | |
Chia-I Wu | 0212448 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3477 | assert(pCreateInfo->queueCreateInfoCount >= 1); |
Mark Lobodzinski | 0c29b92 | 2015-09-17 15:17:34 -0600 | [diff] [blame] | 3478 | |
Jon Ashburn | 46674bf | 2015-12-11 09:41:34 -0700 | [diff] [blame] | 3479 | //TODO this only works for one physical device per instance |
| 3480 | // once CreateDevice layer bootstrapping is done via DeviceCreateInfo |
| 3481 | // hopefully don't need this anymore in trampoline code |
| 3482 | phys_dev = loader_get_physical_device(physicalDevice); |
| 3483 | icd = phys_dev->this_icd; |
Jon Ashburn | a4cf12b | 2015-10-26 16:54:51 -0600 | [diff] [blame] | 3484 | if (!icd) |
| 3485 | return VK_ERROR_INITIALIZATION_FAILED; |
| 3486 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3487 | inst = phys_dev->this_instance; |
Jon Ashburn | a4cf12b | 2015-10-26 16:54:51 -0600 | [diff] [blame] | 3488 | |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 3489 | if (!icd->CreateDevice) { |
| 3490 | return VK_ERROR_INITIALIZATION_FAILED; |
Jon Ashburn | 95a77ba | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 3491 | } |
| 3492 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3493 | /* validate any app enabled layers are available */ |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3494 | if (pCreateInfo->enabledLayerNameCount > 0) { |
| 3495 | res = loader_validate_layers(pCreateInfo->enabledLayerNameCount, |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3496 | pCreateInfo->ppEnabledLayerNames, |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3497 | &inst->device_layer_list); |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3498 | if (res != VK_SUCCESS) { |
| 3499 | return res; |
| 3500 | } |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3501 | } |
| 3502 | |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 3503 | /* Get the physical device extensions if they haven't been retrieved yet */ |
| 3504 | if (phys_dev->device_extension_cache.capacity == 0) { |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 3505 | if (!loader_init_generic_list(inst, (struct loader_generic_list *) |
| 3506 | &phys_dev->device_extension_cache, |
| 3507 | sizeof(VkExtensionProperties))) { |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 3508 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 3509 | } |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 3510 | res = loader_add_device_extensions( |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 3511 | inst, physicalDevice, |
| 3512 | phys_dev->this_icd->this_icd_lib->lib_name, |
| 3513 | &phys_dev->device_extension_cache); |
| 3514 | if (res != VK_SUCCESS) { |
| 3515 | return res; |
| 3516 | } |
| 3517 | } |
| 3518 | /* make sure requested extensions to be enabled are supported */ |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3519 | res = loader_validate_device_extensions(phys_dev, &inst->device_layer_list, pCreateInfo); |
Courtney Goeltzenleuchter | 366b27a | 2015-07-06 20:14:18 -0600 | [diff] [blame] | 3520 | if (res != VK_SUCCESS) { |
| 3521 | return res; |
| 3522 | } |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3523 | |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3524 | /* |
| 3525 | * NOTE: Need to filter the extensions to only those |
| 3526 | * supported by the ICD. |
| 3527 | * No ICD will advertise support for layers. An ICD |
| 3528 | * library could support a layer, but it would be |
| 3529 | * independent of the actual ICD, just in the same library. |
| 3530 | */ |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3531 | filtered_extension_names = loader_stack_alloc(pCreateInfo->enabledExtensionNameCount * sizeof(char *)); |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3532 | if (!filtered_extension_names) { |
| 3533 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 3534 | } |
| 3535 | |
| 3536 | /* Copy user's data */ |
| 3537 | memcpy(&device_create_info, pCreateInfo, sizeof(VkDeviceCreateInfo)); |
| 3538 | |
| 3539 | /* ICD's do not use layers */ |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3540 | device_create_info.enabledLayerNameCount = 0; |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3541 | device_create_info.ppEnabledLayerNames = NULL; |
| 3542 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3543 | device_create_info.enabledExtensionNameCount = 0; |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3544 | device_create_info.ppEnabledExtensionNames = (const char * const *) filtered_extension_names; |
| 3545 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3546 | for (uint32_t i = 0; i < pCreateInfo->enabledExtensionNameCount; i++) { |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3547 | const char *extension_name = pCreateInfo->ppEnabledExtensionNames[i]; |
Jon Ashburn | 5c042ea | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 3548 | VkExtensionProperties *prop = get_extension_property(extension_name, |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3549 | &phys_dev->device_extension_cache); |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3550 | if (prop) { |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3551 | filtered_extension_names[device_create_info.enabledExtensionNameCount] = (char *) extension_name; |
| 3552 | device_create_info.enabledExtensionNameCount++; |
Courtney Goeltzenleuchter | 6f5b00c | 2015-07-06 20:46:50 -0600 | [diff] [blame] | 3553 | } |
| 3554 | } |
| 3555 | |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3556 | // since physicalDevice object maybe wrapped by a layer need to get unwrapped version |
Jon Ashburn | e0e6457 | 2015-09-30 12:56:42 -0600 | [diff] [blame] | 3557 | // we haven't yet called down the chain for the layer to unwrap the object |
Jon Ashburn | 0704af9 | 2015-12-24 10:50:08 -0700 | [diff] [blame] | 3558 | res = icd->CreateDevice(phys_dev->phys_dev, &device_create_info, pAllocator, pDevice); |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 3559 | if (res != VK_SUCCESS) { |
| 3560 | return res; |
| 3561 | } |
| 3562 | |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3563 | dev = loader_add_logical_device(inst, *pDevice, &icd->logical_device_list); |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 3564 | if (dev == NULL) { |
| 3565 | return VK_ERROR_OUT_OF_HOST_MEMORY; |
| 3566 | } |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 3567 | |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 3568 | loader_init_dispatch(*pDevice, &dev->loader_dispatch); |
| 3569 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3570 | /* activate any layers on device chain which terminates with device*/ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3571 | res = loader_enable_device_layers(inst, icd, dev, pCreateInfo, &inst->device_layer_list); |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3572 | if (res != VK_SUCCESS) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3573 | loader_destroy_logical_device(inst, dev); |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3574 | return res; |
| 3575 | } |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3576 | loader_activate_device_layers(inst, dev, *pDevice); |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 3577 | |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 3578 | /* finally can call down the chain */ |
| 3579 | res = dev->loader_dispatch.core_dispatch.CreateDevice(physicalDevice, pCreateInfo, pAllocator, pDevice); |
| 3580 | |
Jon Ashburn | 5497859 | 2015-12-11 10:45:00 -0700 | [diff] [blame] | 3581 | /* initialize any device extension dispatch entry's from the instance list*/ |
| 3582 | loader_init_dispatch_dev_ext(inst, dev); |
| 3583 | |
Jon Ashburn | 232e3af | 2015-11-30 17:21:25 -0700 | [diff] [blame] | 3584 | /* initialize WSI device extensions as part of core dispatch since loader has |
| 3585 | * dedicated trampoline code for these*/ |
| 3586 | loader_init_device_extension_dispatch_table(&dev->loader_dispatch, |
| 3587 | dev->loader_dispatch.core_dispatch.GetDeviceProcAddr, |
| 3588 | *pDevice); |
Jon Ashburn | fc1031e | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 3589 | dev->loader_dispatch.core_dispatch.CreateDevice = icd->CreateDevice; |
Courtney Goeltzenleuchter | ca173b8 | 2015-06-25 18:01:43 -0600 | [diff] [blame] | 3590 | |
Jon Ashburn | 95a77ba | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 3591 | return res; |
| 3592 | } |
| 3593 | |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3594 | /** |
| 3595 | * Get an instance level or global level entry point address. |
| 3596 | * @param instance |
| 3597 | * @param pName |
| 3598 | * @return |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3599 | * If instance == NULL returns a global level functions only |
| 3600 | * If instance is valid returns a trampoline entry point for all dispatchable Vulkan |
| 3601 | * functions both core and extensions. |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3602 | */ |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3603 | LOADER_EXPORT VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vkGetInstanceProcAddr(VkInstance instance, const char * pName) |
Jon Ashburn | b0fbe91 | 2015-05-06 10:15:07 -0600 | [diff] [blame] | 3604 | { |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 3605 | |
Jon Ashburn | 07daee7 | 2015-05-21 18:13:33 -0600 | [diff] [blame] | 3606 | void *addr; |
Jon Ashburn | b0fbe91 | 2015-05-06 10:15:07 -0600 | [diff] [blame] | 3607 | |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3608 | addr = globalGetProcAddr(pName); |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3609 | if (instance == VK_NULL_HANDLE) { |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3610 | // get entrypoint addresses that are global (no dispatchable object) |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3611 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 3612 | return addr; |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3613 | } else { |
| 3614 | // if a global entrypoint return NULL |
| 3615 | if (addr) |
| 3616 | return NULL; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 3617 | } |
| 3618 | |
Jon Ashburn | e0e6457 | 2015-09-30 12:56:42 -0600 | [diff] [blame] | 3619 | struct loader_instance *ptr_instance = loader_get_instance(instance); |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3620 | if (ptr_instance == NULL) |
Jon Ashburn | 07daee7 | 2015-05-21 18:13:33 -0600 | [diff] [blame] | 3621 | return NULL; |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3622 | // Return trampoline code for non-global entrypoints including any extensions. |
| 3623 | // Device extensions are returned if a layer or ICD supports the extension. |
| 3624 | // Instance extensions are returned if the extension is enabled and the loader |
| 3625 | // or someone else supports the extension |
| 3626 | return trampolineGetProcAddr(ptr_instance, pName); |
Jon Ashburn | 07daee7 | 2015-05-21 18:13:33 -0600 | [diff] [blame] | 3627 | |
Jon Ashburn | b0fbe91 | 2015-05-06 10:15:07 -0600 | [diff] [blame] | 3628 | } |
| 3629 | |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3630 | /** |
| 3631 | * Get a device level or global level entry point address. |
| 3632 | * @param device |
| 3633 | * @param pName |
| 3634 | * @return |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3635 | * If device is valid, returns a device relative entry point for device level |
| 3636 | * entry points both core and extensions. |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3637 | * Device relative means call down the device chain. |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3638 | */ |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3639 | LOADER_EXPORT VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vkGetDeviceProcAddr(VkDevice device, const char * pName) |
Courtney Goeltzenleuchter | 9ec39ac | 2015-06-22 17:45:21 -0600 | [diff] [blame] | 3640 | { |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3641 | void *addr; |
Courtney Goeltzenleuchter | 9ec39ac | 2015-06-22 17:45:21 -0600 | [diff] [blame] | 3642 | |
Jon Ashburn | 3d526cb | 2015-04-13 18:10:06 -0600 | [diff] [blame] | 3643 | /* for entrypoints that loader must handle (ie non-dispatchable or create object) |
| 3644 | make sure the loader entrypoint is returned */ |
Jon Ashburn | 69e9ea2 | 2015-09-28 16:15:00 -0600 | [diff] [blame] | 3645 | addr = loader_non_passthrough_gdpa(pName); |
Ian Elliott | e19c915 | 2015-04-15 12:53:19 -0600 | [diff] [blame] | 3646 | if (addr) { |
Jon Ashburn | 3d526cb | 2015-04-13 18:10:06 -0600 | [diff] [blame] | 3647 | return addr; |
Ian Elliott | e19c915 | 2015-04-15 12:53:19 -0600 | [diff] [blame] | 3648 | } |
Jon Ashburn | 3d526cb | 2015-04-13 18:10:06 -0600 | [diff] [blame] | 3649 | |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3650 | /* Although CreateDevice is on device chain it's dispatchable object isn't |
| 3651 | * a VkDevice or child of VkDevice so return NULL. |
| 3652 | */ |
| 3653 | if (!strcmp(pName, "CreateDevice")) |
| 3654 | return NULL; |
| 3655 | |
Jon Ashburn | 3d526cb | 2015-04-13 18:10:06 -0600 | [diff] [blame] | 3656 | /* return the dispatch table entrypoint for the fastest case */ |
Jon Ashburn | 8d1b0b5 | 2015-05-18 13:20:15 -0600 | [diff] [blame] | 3657 | const VkLayerDispatchTable *disp_table = * (VkLayerDispatchTable **) device; |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 3658 | if (disp_table == NULL) |
| 3659 | return NULL; |
| 3660 | |
Jon Ashburn | 27cd584 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 3661 | addr = loader_lookup_device_dispatch_table(disp_table, pName); |
Chia-I Wu | f46b81a | 2015-01-04 11:12:47 +0800 | [diff] [blame] | 3662 | if (addr) |
| 3663 | return addr; |
Jon Ashburn | 8a39efc | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 3664 | |
| 3665 | if (disp_table->GetDeviceProcAddr == NULL) |
| 3666 | return NULL; |
| 3667 | return disp_table->GetDeviceProcAddr(device, pName); |
Jon Ashburn | d38bfb1 | 2014-10-14 19:15:22 -0600 | [diff] [blame] | 3668 | } |
| 3669 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3670 | LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceExtensionProperties( |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3671 | const char* pLayerName, |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3672 | uint32_t* pPropertyCount, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3673 | VkExtensionProperties* pProperties) |
| 3674 | { |
Jon Ashburn | 432d276 | 2015-09-18 12:53:16 -0600 | [diff] [blame] | 3675 | struct loader_extension_list *global_ext_list=NULL; |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3676 | struct loader_layer_list instance_layers; |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 3677 | struct loader_extension_list icd_extensions; |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 3678 | struct loader_icd_libs icd_libs; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3679 | uint32_t copy_size; |
| 3680 | |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 3681 | tls_instance = NULL; |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 3682 | memset(&icd_extensions, 0, sizeof(icd_extensions)); |
Mike Stroyan | 09c06c7 | 2015-10-01 15:23:48 -0600 | [diff] [blame] | 3683 | memset(&instance_layers, 0, sizeof(instance_layers)); |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 3684 | loader_platform_thread_once(&once_init, loader_initialize); |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 3685 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3686 | /* get layer libraries if needed */ |
| 3687 | if (pLayerName && strlen(pLayerName) != 0) { |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3688 | loader_layer_scan(NULL, &instance_layers, NULL); |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3689 | for (uint32_t i = 0; i < instance_layers.count; i++) { |
| 3690 | struct loader_layer_properties *props = &instance_layers.list[i]; |
| 3691 | if (strcmp(props->info.layerName, pLayerName) == 0) { |
| 3692 | global_ext_list = &props->instance_extension_list; |
| 3693 | } |
| 3694 | } |
| 3695 | } |
| 3696 | else { |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 3697 | /* Scan/discover all ICD libraries */ |
| 3698 | memset(&icd_libs, 0 , sizeof(struct loader_icd_libs)); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3699 | loader_icd_scan(NULL, &icd_libs); |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 3700 | /* get extensions from all ICD's, merge so no duplicates */ |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3701 | loader_get_icd_loader_instance_extensions(NULL, &icd_libs, &icd_extensions); |
| 3702 | loader_scanned_icd_clear(NULL, &icd_libs); |
Jon Ashburn | 9a4c6aa | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 3703 | global_ext_list = &icd_extensions; |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3704 | } |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3705 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3706 | if (global_ext_list == NULL) { |
Mike Stroyan | 09c06c7 | 2015-10-01 15:23:48 -0600 | [diff] [blame] | 3707 | loader_destroy_layer_list(NULL, &instance_layers); |
Courtney Goeltzenleuchter | 55659b7 | 2015-09-14 18:01:17 -0600 | [diff] [blame] | 3708 | return VK_ERROR_LAYER_NOT_PRESENT; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3709 | } |
| 3710 | |
| 3711 | if (pProperties == NULL) { |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3712 | *pPropertyCount = global_ext_list->count; |
Mike Stroyan | 09c06c7 | 2015-10-01 15:23:48 -0600 | [diff] [blame] | 3713 | loader_destroy_layer_list(NULL, &instance_layers); |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 3714 | loader_destroy_generic_list(NULL, (struct loader_generic_list *) |
| 3715 | &icd_extensions); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3716 | return VK_SUCCESS; |
| 3717 | } |
| 3718 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3719 | copy_size = *pPropertyCount < global_ext_list->count ? *pPropertyCount : global_ext_list->count; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3720 | for (uint32_t i = 0; i < copy_size; i++) { |
| 3721 | memcpy(&pProperties[i], |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3722 | &global_ext_list->list[i], |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3723 | sizeof(VkExtensionProperties)); |
| 3724 | } |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3725 | *pPropertyCount = copy_size; |
Jon Ashburn | 6e6a216 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 3726 | loader_destroy_generic_list(NULL, (struct loader_generic_list *) |
| 3727 | &icd_extensions); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3728 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3729 | if (copy_size < global_ext_list->count) { |
Mike Stroyan | 09c06c7 | 2015-10-01 15:23:48 -0600 | [diff] [blame] | 3730 | loader_destroy_layer_list(NULL, &instance_layers); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3731 | return VK_INCOMPLETE; |
| 3732 | } |
| 3733 | |
Mike Stroyan | 09c06c7 | 2015-10-01 15:23:48 -0600 | [diff] [blame] | 3734 | loader_destroy_layer_list(NULL, &instance_layers); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3735 | return VK_SUCCESS; |
| 3736 | } |
| 3737 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3738 | LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceLayerProperties( |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3739 | uint32_t* pPropertyCount, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3740 | VkLayerProperties* pProperties) |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3741 | { |
Jon Ashburn | 6301a0f | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 3742 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3743 | struct loader_layer_list instance_layer_list; |
Jon Ashburn | 87d6aa9 | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 3744 | tls_instance = NULL; |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3745 | |
Jon Ashburn | 8810c5f | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 3746 | loader_platform_thread_once(&once_init, loader_initialize); |
Courtney Goeltzenleuchter | 499b3ba | 2015-02-27 15:19:33 -0700 | [diff] [blame] | 3747 | |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3748 | uint32_t copy_size; |
Jon Ashburn | 9fd4cc4 | 2015-04-10 14:33:07 -0600 | [diff] [blame] | 3749 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3750 | /* get layer libraries */ |
| 3751 | memset(&instance_layer_list, 0, sizeof(instance_layer_list)); |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3752 | loader_layer_scan(NULL, &instance_layer_list, NULL); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3753 | |
| 3754 | if (pProperties == NULL) { |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3755 | *pPropertyCount = instance_layer_list.count; |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3756 | loader_destroy_layer_list(NULL, &instance_layer_list); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3757 | return VK_SUCCESS; |
| 3758 | } |
| 3759 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3760 | copy_size = (*pPropertyCount < instance_layer_list.count) ? *pPropertyCount : instance_layer_list.count; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3761 | for (uint32_t i = 0; i < copy_size; i++) { |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3762 | memcpy(&pProperties[i], &instance_layer_list.list[i].info, sizeof(VkLayerProperties)); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3763 | } |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3764 | *pPropertyCount = copy_size; |
Jon Ashburn | e39a4f8 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 3765 | loader_destroy_layer_list(NULL, &instance_layer_list); |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3766 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3767 | if (copy_size < instance_layer_list.count) { |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3768 | return VK_INCOMPLETE; |
| 3769 | } |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3770 | |
| 3771 | return VK_SUCCESS; |
| 3772 | } |
| 3773 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3774 | VKAPI_ATTR VkResult VKAPI_CALL loader_EnumerateDeviceExtensionProperties( |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3775 | VkPhysicalDevice physicalDevice, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3776 | const char* pLayerName, |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3777 | uint32_t* pPropertyCount, |
Tony Barbour | 59a4732 | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 3778 | VkExtensionProperties* pProperties) |
| 3779 | { |
Jon Ashburn | a760a51 | 2015-12-14 08:52:14 -0700 | [diff] [blame] | 3780 | struct loader_physical_device *phys_dev; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3781 | uint32_t copy_size; |
Courtney Goeltzenleuchter | 499b3ba | 2015-02-27 15:19:33 -0700 | [diff] [blame] | 3782 | |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3783 | uint32_t count; |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 3784 | struct loader_device_extension_list *dev_ext_list=NULL; |
Jon Ashburn | a760a51 | 2015-12-14 08:52:14 -0700 | [diff] [blame] | 3785 | //TODO fix this aliases physical devices |
| 3786 | phys_dev = loader_get_physical_device(physicalDevice); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3787 | |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3788 | /* get layer libraries if needed */ |
| 3789 | if (pLayerName && strlen(pLayerName) != 0) { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3790 | for (uint32_t i = 0; i < phys_dev->this_instance->device_layer_list.count; i++) { |
| 3791 | struct loader_layer_properties *props = &phys_dev->this_instance->device_layer_list.list[i]; |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3792 | if (strcmp(props->info.layerName, pLayerName) == 0) { |
| 3793 | dev_ext_list = &props->device_extension_list; |
| 3794 | } |
| 3795 | } |
| 3796 | } |
| 3797 | else { |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 3798 | /* this case is during the call down the instance chain */ |
| 3799 | struct loader_icd *icd = phys_dev->this_icd; |
| 3800 | VkResult res; |
| 3801 | res = icd->EnumerateDeviceExtensionProperties(phys_dev->phys_dev, NULL, pPropertyCount, pProperties); |
| 3802 | if (pProperties != NULL && res == VK_SUCCESS) { |
| 3803 | /* initialize dev_extension list within the physicalDevice object */ |
Courtney Goeltzenleuchter | f538ef7 | 2015-12-02 14:00:19 -0700 | [diff] [blame] | 3804 | res = loader_init_device_extensions(phys_dev->this_instance, |
Jon Ashburn | 00eb6c0 | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 3805 | phys_dev, *pPropertyCount, pProperties, |
| 3806 | &phys_dev->device_extension_cache); |
| 3807 | } |
| 3808 | return res; |
Jon Ashburn | b82c185 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 3809 | } |
| 3810 | |
Jon Ashburn | 432d276 | 2015-09-18 12:53:16 -0600 | [diff] [blame] | 3811 | count = (dev_ext_list == NULL) ? 0: dev_ext_list->count; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3812 | if (pProperties == NULL) { |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3813 | *pPropertyCount = count; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3814 | return VK_SUCCESS; |
| 3815 | } |
| 3816 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3817 | copy_size = *pPropertyCount < count ? *pPropertyCount : count; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3818 | for (uint32_t i = 0; i < copy_size; i++) { |
| 3819 | memcpy(&pProperties[i], |
Jon Ashburn | 39fbd4e | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 3820 | &dev_ext_list->list[i].props, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3821 | sizeof(VkExtensionProperties)); |
| 3822 | } |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3823 | *pPropertyCount = copy_size; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3824 | |
| 3825 | if (copy_size < count) { |
| 3826 | return VK_INCOMPLETE; |
| 3827 | } |
| 3828 | |
| 3829 | return VK_SUCCESS; |
| 3830 | } |
| 3831 | |
Chia-I Wu | 9ab6150 | 2015-11-06 06:42:02 +0800 | [diff] [blame] | 3832 | VKAPI_ATTR VkResult VKAPI_CALL loader_EnumerateDeviceLayerProperties( |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3833 | VkPhysicalDevice physicalDevice, |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3834 | uint32_t* pPropertyCount, |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3835 | VkLayerProperties* pProperties) |
| 3836 | { |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3837 | uint32_t copy_size; |
Jon Ashburn | a760a51 | 2015-12-14 08:52:14 -0700 | [diff] [blame] | 3838 | struct loader_physical_device *phys_dev; |
| 3839 | //TODO fix this, aliases physical devices |
| 3840 | phys_dev = loader_get_physical_device(physicalDevice); |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3841 | uint32_t count = phys_dev->this_instance->device_layer_list.count; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3842 | |
| 3843 | if (pProperties == NULL) { |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3844 | *pPropertyCount = count; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3845 | return VK_SUCCESS; |
| 3846 | } |
| 3847 | |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3848 | copy_size = (*pPropertyCount < count) ? *pPropertyCount : count; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3849 | for (uint32_t i = 0; i < copy_size; i++) { |
Jon Ashburn | 24cd4be | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 3850 | memcpy(&pProperties[i], &(phys_dev->this_instance->device_layer_list.list[i].info), sizeof(VkLayerProperties)); |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3851 | } |
Chia-I Wu | d50a7d7 | 2015-10-26 20:48:51 +0800 | [diff] [blame] | 3852 | *pPropertyCount = copy_size; |
Courtney Goeltzenleuchter | 110fdf9 | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 3853 | |
| 3854 | if (copy_size < count) { |
| 3855 | return VK_INCOMPLETE; |
| 3856 | } |
Courtney Goeltzenleuchter | d971b61 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 3857 | |
| 3858 | return VK_SUCCESS; |
Jon Ashburn | 95a77ba | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 3859 | } |