diff --git a/bin/system-info.c b/bin/system-info.c index 83b0059f63688149051b2986cda575278f9a09b3..11e49cf450862bd9429414df5895fa08a3805e2f 100644 --- a/bin/system-info.c +++ b/bin/system-info.c @@ -197,6 +197,13 @@ jsonify_graphics_issues (JsonBuilder *builder, jsonify_flags (builder, SRT_TYPE_GRAPHICS_ISSUES, issues); } +static void +jsonify_loadable_issues (JsonBuilder *builder, + SrtLoadableIssues issues) +{ + jsonify_flags (builder, SRT_TYPE_LOADABLE_ISSUES, issues); +} + static void jsonify_enum (JsonBuilder *builder, GType type, @@ -710,6 +717,7 @@ print_layer_details (JsonBuilder *builder, const gchar *member_name; const gchar *library_path; const gchar *const *component_layers; + SrtLoadableIssues loadable_issues = SRT_LOADABLE_ISSUES_NONE; if (explicit) member_name = "explicit_layers"; @@ -773,6 +781,11 @@ print_layer_details (JsonBuilder *builder, json_builder_set_member_name (builder, "error"); json_builder_add_string_value (builder, error->message); } + json_builder_set_member_name (builder, "issues"); + json_builder_begin_array (builder); + loadable_issues = srt_vulkan_layer_get_issues (iter->data); + jsonify_loadable_issues (builder, loadable_issues); + json_builder_end_array (builder); json_builder_end_object (builder); } } @@ -798,6 +811,7 @@ main (int argc, SrtSteamIssues steam_issues = SRT_STEAM_ISSUES_NONE; SrtRuntimeIssues runtime_issues = SRT_RUNTIME_ISSUES_NONE; SrtLocaleIssues locale_issues = SRT_LOCALE_ISSUES_NONE; + SrtLoadableIssues loadable_issues = SRT_LOADABLE_ISSUES_NONE; SrtXdgPortalIssues xdg_portal_issues = SRT_XDG_PORTAL_ISSUES_NONE; SrtX86FeatureFlags x86_features = SRT_X86_FEATURE_NONE; SrtX86FeatureFlags known_x86_features = SRT_X86_FEATURE_NONE; @@ -1198,6 +1212,12 @@ main (int argc, g_clear_error (&error); } + json_builder_set_member_name (builder, "issues"); + json_builder_begin_array (builder); + loadable_issues = srt_egl_icd_get_issues (icd_iter->data); + jsonify_loadable_issues (builder, loadable_issues); + json_builder_end_array (builder); + json_builder_end_object (builder); } @@ -1246,6 +1266,12 @@ main (int argc, g_clear_error (&error); } + json_builder_set_member_name (builder, "issues"); + json_builder_begin_array (builder); + loadable_issues = srt_vulkan_icd_get_issues (icd_iter->data); + jsonify_loadable_issues (builder, loadable_issues); + json_builder_end_array (builder); + json_builder_end_object (builder); } diff --git a/bin/system-info.md b/bin/system-info.md index 117fd6dca29df2e696e0227831410682b30b37d9..9b9e705173bb62fcd66a1837e311e80d22431a90 100644 --- a/bin/system-info.md +++ b/bin/system-info.md @@ -687,12 +687,31 @@ keys: **egl** : An object describing EGL support. Currently the only key is **icds**. Its value is an array of objects describing ICDs, - with the following keys and values if the metadata was loaded - successfully: + with the following keys and values: **json_path** : Absolute path to the JSON file describing the ICD + **issues** + : An array of strings representing problems with the ICD. + If empty, no problems were found. + + **unknown** + : There was an unknown, or internal, error while checking the ICD. + + **unsupported** + : The API version of the ICD is not supported yet. + + **cannot-load** + : Unable to correctly load the ICD. + + **duplicated** + : This ICD, and another one, have a **library_path** that points to + the same library. + + and additionally the following keys and values if the metadata was + loaded successfully: + **library_path** : The library as described in the JSON file: either an absolute path, a path relative to the JSON file containing at least one **/**, @@ -709,9 +728,6 @@ keys: or the following keys and values if the metadata failed to load: - **json_path** - : Absolute path to the JSON file describing the ICD - **error-domain** : A machine-readable string indicating a category of errors. @@ -736,8 +752,10 @@ keys: array of objects, where the former describes external Vulkan layers and the latter describes internal Vulkan layers. They have the same keys and values as for Vulkan ICDs, with the differences that **library_path** - might be omitted, if it is not present, and they have the following extra - keys: + might be omitted, if it is not present, and the **duplicated** issues + signals that two layers not only have a **library_path** that points to + the same library, but also that their **name** is the same. + And finally they also have the following extra keys: **name** : The name that uniquely identify this layer to applications diff --git a/steam-runtime-tools/graphics-internal.h b/steam-runtime-tools/graphics-internal.h index 4ab5ac8026083ed943a6d146fd4f4ac5032a87ca..537050275c6da7b9b558509bf17dce8fe22b07ac 100644 --- a/steam-runtime-tools/graphics-internal.h +++ b/steam-runtime-tools/graphics-internal.h @@ -278,11 +278,13 @@ typedef enum } SrtGraphicsModule; G_GNUC_INTERNAL -GList *_srt_load_egl_icds (const char *sysroot, +GList *_srt_load_egl_icds (const char *helpers_path, + const char *sysroot, gchar **envp, const char * const *multiarch_tuples); G_GNUC_INTERNAL -GList *_srt_load_vulkan_icds (const char *sysroot, +GList *_srt_load_vulkan_icds (const char *helpers_path, + const char *sysroot, gchar **envp, const char * const *multiarch_tuples); @@ -293,6 +295,13 @@ GList *_srt_list_graphics_modules (const gchar *sysroot, const char *multiarch_tuple, SrtGraphicsModule which); +G_GNUC_INTERNAL +GList *_srt_load_vulkan_layers_extended (const char *helpers_path, + const char *sysroot, + gchar **envp, + const char * const *multiarch_tuples, + gboolean explicit); + void _srt_graphics_get_from_report (JsonObject *json_obj, const gchar *multiarch_tuple, GHashTable **cached_graphics); diff --git a/steam-runtime-tools/graphics.c b/steam-runtime-tools/graphics.c index 6192501095260a63e6f508dbeb08036cfdf46614..47fee41ba3f9af0e2dbd098c4796d6679add3ed1 100644 --- a/steam-runtime-tools/graphics.c +++ b/steam-runtime-tools/graphics.c @@ -2167,6 +2167,7 @@ typedef struct typedef struct { GError *error; + SrtLoadableIssues issues; gchar *api_version; /* Always NULL when found in a SrtEglIcd */ gchar *json_path; gchar *library_path; @@ -2673,6 +2674,8 @@ load_json_dirs (const char *sysroot, * API version for %SRT_TYPE_VULKAN_ICD * @library_path_out: (out) (type utf8) (transfer full): Used to return * shared library path + * @issues_out: (out) (optional): Used to return problems with this ICD. + * Note that this is set even if this function fails. * @error: Used to raise an error on failure * * Try to load an EGL or Vulkan ICD from a JSON file. @@ -2684,6 +2687,7 @@ load_json (GType type, const char *path, gchar **api_version_out, gchar **library_path_out, + SrtLoadableIssues *issues_out, GError **error) { JsonParser *parser = NULL; @@ -2696,6 +2700,7 @@ load_json (GType type, const char *file_format_version; const char *api_version = NULL; const char *library_path; + SrtLoadableIssues issues = SRT_LOADABLE_ISSUES_NONE; g_return_val_if_fail (type == SRT_TYPE_VULKAN_ICD || type == SRT_TYPE_EGL_ICD, @@ -2712,7 +2717,10 @@ load_json (GType type, parser = json_parser_new (); if (!json_parser_load_from_file (parser, path, error)) - goto out; + { + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; + goto out; + } node = json_parser_get_root (parser); @@ -2720,6 +2728,7 @@ load_json (GType type, { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "Expected to find a JSON object in \"%s\"", path); + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; goto out; } @@ -2733,6 +2742,7 @@ load_json (GType type, g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "file_format_version in \"%s\" missing or not a value", path); + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; goto out; } @@ -2742,6 +2752,7 @@ load_json (GType type, { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "file_format_version in \"%s\" not a string", path); + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; goto out; } @@ -2763,6 +2774,7 @@ load_json (GType type, g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "Vulkan file_format_version in \"%s\" is not 1.0.x", path); + issues |= SRT_LOADABLE_ISSUES_UNSUPPORTED; goto out; } } @@ -2779,6 +2791,7 @@ load_json (GType type, g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "EGL file_format_version in \"%s\" is not 1.0.x", path); + issues |= SRT_LOADABLE_ISSUES_UNSUPPORTED; goto out; } } @@ -2790,6 +2803,7 @@ load_json (GType type, { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "No \"ICD\" object in \"%s\"", path); + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; goto out; } @@ -2805,6 +2819,7 @@ load_json (GType type, g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "ICD.api_version in \"%s\" missing or not a value", path); + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; goto out; } @@ -2814,6 +2829,7 @@ load_json (GType type, { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "ICD.api_version in \"%s\" not a string", path); + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; goto out; } } @@ -2826,6 +2842,7 @@ load_json (GType type, g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "ICD.library_path in \"%s\" missing or not a value", path); + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; goto out; } @@ -2835,6 +2852,7 @@ load_json (GType type, { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "ICD.library_path in \"%s\" not a string", path); + issues |= SRT_LOADABLE_ISSUES_CANNOT_LOAD; goto out; } @@ -2848,6 +2866,10 @@ load_json (GType type, out: g_clear_object (&parser); + + if (issues_out != NULL) + *issues_out = issues; + return ret; } @@ -2874,6 +2896,7 @@ enum { EGL_ICD_PROP_0, EGL_ICD_PROP_ERROR, + EGL_ICD_PROP_ISSUES, EGL_ICD_PROP_JSON_PATH, EGL_ICD_PROP_LIBRARY_PATH, EGL_ICD_PROP_RESOLVED_LIBRARY_PATH, @@ -2901,6 +2924,10 @@ srt_egl_icd_get_property (GObject *object, g_value_set_boxed (value, self->icd.error); break; + case EGL_ICD_PROP_ISSUES: + g_value_set_flags (value, self->icd.issues); + break; + case EGL_ICD_PROP_JSON_PATH: g_value_set_string (value, self->icd.json_path); break; @@ -2934,6 +2961,11 @@ srt_egl_icd_set_property (GObject *object, self->icd.error = g_value_dup_boxed (value); break; + case EGL_ICD_PROP_ISSUES: + g_return_if_fail (self->icd.issues == 0); + self->icd.issues = g_value_get_flags (value); + break; + case EGL_ICD_PROP_JSON_PATH: g_return_if_fail (self->icd.json_path == NULL); tmp = g_value_get_string (value); @@ -2994,6 +3026,12 @@ srt_egl_icd_class_init (SrtEglIcdClass *cls) G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); + egl_icd_properties[EGL_ICD_PROP_ISSUES] = + g_param_spec_flags ("issues", "Issues", "Problems with this ICD", + SRT_TYPE_LOADABLE_ISSUES, SRT_LOADABLE_ISSUES_NONE, + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_STRINGS); + egl_icd_properties[EGL_ICD_PROP_JSON_PATH] = g_param_spec_string ("json-path", "JSON path", "Absolute path to JSON file describing this ICD. " @@ -3034,12 +3072,14 @@ srt_egl_icd_class_init (SrtEglIcdClass *cls) * srt_egl_icd_new: * @json_path: (transfer none): the absolute path to the JSON file * @library_path: (transfer none): the path to the library + * @issues: problems with this ICD * * Returns: (transfer full): a new ICD */ static SrtEglIcd * srt_egl_icd_new (const gchar *json_path, - const gchar *library_path) + const gchar *library_path, + SrtLoadableIssues issues) { g_return_val_if_fail (json_path != NULL, NULL); g_return_val_if_fail (library_path != NULL, NULL); @@ -3047,17 +3087,20 @@ srt_egl_icd_new (const gchar *json_path, return g_object_new (SRT_TYPE_EGL_ICD, "json-path", json_path, "library-path", library_path, + "issues", issues, NULL); } /** * srt_egl_icd_new_error: + * @issues: problems with this ICD * @error: (transfer none): Error that occurred when loading the ICD * * Returns: (transfer full): a new ICD */ static SrtEglIcd * srt_egl_icd_new_error (const gchar *json_path, + SrtLoadableIssues issues, const GError *error) { g_return_val_if_fail (json_path != NULL, NULL); @@ -3066,6 +3109,7 @@ srt_egl_icd_new_error (const gchar *json_path, return g_object_new (SRT_TYPE_EGL_ICD, "error", error, "json-path", json_path, + "issues", issues, NULL); } @@ -3125,6 +3169,39 @@ srt_egl_icd_get_library_path (SrtEglIcd *self) return self->icd.library_path; } +/** + * srt_egl_icd_get_issues: + * @self: The ICD + * + * Return the problems found when parsing and loading @self. + * + * Returns: A bitfield containing problems, or %SRT_LOADABLE_ISSUES_NONE + * if no problems were found + */ +SrtLoadableIssues +srt_egl_icd_get_issues (SrtEglIcd *self) +{ + g_return_val_if_fail (SRT_IS_EGL_ICD (self), SRT_LOADABLE_ISSUES_UNKNOWN); + return self->icd.issues; +} + +/* + * @self: The ICD + * @is_duplicated: if %TRUE, this ICD is a duplicated of another ICD + * + * @self issues is adjusted accordingly to the @is_duplicated value. + */ +static void +_srt_egl_icd_set_is_duplicated (SrtEglIcd *self, + gboolean is_duplicated) +{ + g_return_if_fail (SRT_IS_EGL_ICD (self)); + if (is_duplicated) + self->icd.issues |= SRT_LOADABLE_ISSUES_DUPLICATED; + else + self->icd.issues &= ~SRT_LOADABLE_ISSUES_DUPLICATED; +} + /* * egl_icd_load_json: * @sysroot: (not nullable): The root directory, usually `/` @@ -3143,6 +3220,7 @@ egl_icd_load_json (const char *sysroot, g_autofree gchar *canon = NULL; g_autofree gchar *in_sysroot = NULL; g_autofree gchar *library_path = NULL; + SrtLoadableIssues issues = SRT_LOADABLE_ISSUES_NONE; g_return_if_fail (sysroot != NULL); g_return_if_fail (list != NULL); @@ -3156,19 +3234,19 @@ egl_icd_load_json (const char *sysroot, in_sysroot = g_build_filename (sysroot, filename, NULL); if (load_json (SRT_TYPE_EGL_ICD, in_sysroot, - NULL, &library_path, &error)) + NULL, &library_path, &issues, &error)) { g_assert (library_path != NULL); g_assert (error == NULL); *list = g_list_prepend (*list, - srt_egl_icd_new (filename, library_path)); + srt_egl_icd_new (filename, library_path, issues)); } else { g_assert (library_path == NULL); g_assert (error != NULL); *list = g_list_prepend (*list, - srt_egl_icd_new_error (filename, error)); + srt_egl_icd_new_error (filename, issues, error)); } } @@ -3224,7 +3302,7 @@ srt_egl_icd_new_replace_library_path (SrtEglIcd *self, if (self->icd.error != NULL) return g_object_ref (self); - return srt_egl_icd_new (self->icd.json_path, path); + return srt_egl_icd_new (self->icd.json_path, path, self->icd.issues); } /** @@ -3281,14 +3359,215 @@ get_glvnd_datadir (void) return "/usr/share"; } +static void _srt_vulkan_icd_set_is_duplicated (SrtVulkanIcd *self, + gboolean is_duplicated); +static void _srt_vulkan_layer_set_is_duplicated (SrtVulkanLayer *self, + gboolean is_duplicated); + +static void +_update_duplicated_value (GType which, + GHashTable *loadable_seen, + const gchar *key, + void *loadable_to_check) +{ + if (key == NULL) + return; + + if (g_hash_table_contains (loadable_seen, key)) + { + if (which == SRT_TYPE_VULKAN_ICD) + { + SrtVulkanIcd *vulkan_icd = g_hash_table_lookup (loadable_seen, key); + _srt_vulkan_icd_set_is_duplicated (vulkan_icd, TRUE); + _srt_vulkan_icd_set_is_duplicated (loadable_to_check, TRUE); + } + else if (which == SRT_TYPE_EGL_ICD) + { + SrtEglIcd *egl_icd = g_hash_table_lookup (loadable_seen, key); + _srt_egl_icd_set_is_duplicated (egl_icd, TRUE); + _srt_egl_icd_set_is_duplicated (loadable_to_check, TRUE); + } + else if (which == SRT_TYPE_VULKAN_LAYER) + { + SrtVulkanLayer *vulkan_layer = g_hash_table_lookup (loadable_seen, key); + _srt_vulkan_layer_set_is_duplicated (vulkan_layer, TRUE); + _srt_vulkan_layer_set_is_duplicated (loadable_to_check, TRUE); + } + else + { + g_return_if_reached (); + } + } + else + { + g_hash_table_replace (loadable_seen, + g_strdup (key), + loadable_to_check); + } +} + +/* + * Use 'inspect-library' to get the absolute path of @library_path, + * resolving also its eventual symbolic links. + */ +static gchar * +_get_library_canonical_path (gchar **envp, + const char *helpers_path, + const char *multiarch, + const gchar *library_path) +{ + g_autoptr(SrtLibrary) library = NULL; + _srt_check_library_presence (helpers_path, library_path, multiarch, NULL, + NULL, envp, + SRT_LIBRARY_SYMBOLS_FORMAT_PLAIN, &library); + + /* Use realpath() because the path might still be a symbolic link or it can + * contains ./ or ../ + * The absolute path is gathered using 'inspect-library', so we don't have + * to worry about still having special tokens, like ${LIB}, in the path. */ + return realpath (srt_library_get_absolute_path (library), NULL); +} + +/* + * @helpers_path: (nullable): An optional path to find "inspect-library" + * helper, PATH is used if %NULL + * @loadable: (inout) (element-type SrtVulkanLayer): + * + * Iterate the provided @loadable list and update their "issues" property + * to include the SRT_LOADABLE_ISSUES_DUPLICATED bit if they are duplicated. + * Two ICDs are considered to be duplicated if they have the same absolute + * library path. + * Two Vulkan layers are considered to be duplicated if they have the same + * name and absolute library path. + */ +static void +_srt_loadable_flag_duplicates (GType which, + gchar **envp, + const char *helpers_path, + const char * const *multiarch_tuples, + GList *loadable) +{ + g_autoptr(GHashTable) loadable_seen = NULL; + gsize i; + GList *l; + + g_return_if_fail (which == SRT_TYPE_VULKAN_ICD + || which == SRT_TYPE_EGL_ICD + || which == SRT_TYPE_VULKAN_LAYER); + + loadable_seen = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); + + for (l = loadable; l != NULL; l = l->next) + { + g_autofree gchar *resolved_path = NULL; + const gchar *name = NULL; + + if (which == SRT_TYPE_VULKAN_ICD || which == SRT_TYPE_EGL_ICD) + { + if (which == SRT_TYPE_VULKAN_ICD) + resolved_path = srt_vulkan_icd_resolve_library_path (l->data); + else + resolved_path = srt_egl_icd_resolve_library_path (l->data); + + if (resolved_path == NULL) + continue; + + if (multiarch_tuples == NULL) + { + /* If we don't have the multiarch_tuples just use the + * resolved_path as is */ + _update_duplicated_value (which, loadable_seen, resolved_path, l->data); + } + else + { + for (i = 0; multiarch_tuples[i] != NULL; i++) + { + g_autofree gchar *canonical_path = NULL; + canonical_path = _get_library_canonical_path (envp, helpers_path, + multiarch_tuples[i], + resolved_path); + + if (canonical_path == NULL) + { + /* Either the library is of a different ELF class or it is missing */ + g_debug ("Unable to get the absolute path of \"%s\" via inspect-library", + resolved_path); + continue; + } + + _update_duplicated_value (which, loadable_seen, canonical_path, l->data); + } + } + } + else if (which == SRT_TYPE_VULKAN_LAYER) + { + resolved_path = srt_vulkan_layer_resolve_library_path (l->data); + name = srt_vulkan_layer_get_name (l->data); + + if (resolved_path == NULL && name == NULL) + continue; + + if (multiarch_tuples == NULL || resolved_path == NULL) + { + g_autofree gchar *hash_key = NULL; + /* We need a key for the hashtable that includes the name and + * the path in it. We use '//' as a separator between the two + * values, because we don't expect to have '//' in the + * path, nor in the name. In the very unlikely event where + * a collision happens, we will just consider two layers + * as duplicated when in reality they weren't. */ + hash_key = g_strdup_printf ("%s//%s", name, resolved_path); + _update_duplicated_value (which, loadable_seen, hash_key, l->data); + } + else + { + for (i = 0; multiarch_tuples[i] != NULL; i++) + { + g_autofree gchar *canonical_path = NULL; + g_autofree gchar *hash_key = NULL; + canonical_path = _get_library_canonical_path (envp, helpers_path, + multiarch_tuples[i], + resolved_path); + + if (canonical_path == NULL) + { + /* Either the library is of a different ELF class or it is missing */ + g_debug ("Unable to get the absolute path of \"%s\" via inspect-library", + resolved_path); + continue; + } + + /* We need a key for the hashtable that includes the name and + * the canonical path in it. We use '//' as a separator + * between the two values, because we don't expect to have + * '//' in the path, nor in the name. In the very unlikely + * event where a collision happens, we will just consider + * two layers as duplicated when in reality they weren't. */ + hash_key = g_strdup_printf ("%s//%s", name, canonical_path); + _update_duplicated_value (which, loadable_seen, hash_key, l->data); + } + } + } + else + { + g_return_if_reached (); + } + } +} + /* * _srt_load_egl_icds: + * @helpers_path: (nullable): An optional path to find "inspect-library" + * helper, PATH is used if %NULL * @sysroot: (not nullable): The root directory, usually `/` * @envp: (array zero-terminated=1) (not nullable): Behave as though `environ` * was this array * @multiarch_tuples: (nullable): If not %NULL, and a Flatpak environment * is detected, assume a freedesktop-sdk-based runtime and look for - * GL extensions for these multiarch tuples + * GL extensions for these multiarch tuples. Also if not %NULL, duplicated + * EGL ICDs are searched by their absolute path, obtained using + * "inspect-library" in the provided multiarch tuples, instead of just their + * resolved library path. * * Implementation of srt_system_info_list_egl_icds(). * @@ -3296,7 +3575,8 @@ get_glvnd_datadir (void) * most-important first */ GList * -_srt_load_egl_icds (const char *sysroot, +_srt_load_egl_icds (const char *helpers_path, + const char *sysroot, gchar **envp, const char * const *multiarch_tuples) { @@ -3369,6 +3649,9 @@ _srt_load_egl_icds (const char *sysroot, g_free (flatpak_info); } + _srt_loadable_flag_duplicates (SRT_TYPE_EGL_ICD, envp, helpers_path, + multiarch_tuples, ret); + return g_list_reverse (ret); } @@ -5160,6 +5443,7 @@ enum VULKAN_ICD_PROP_0, VULKAN_ICD_PROP_API_VERSION, VULKAN_ICD_PROP_ERROR, + VULKAN_ICD_PROP_ISSUES, VULKAN_ICD_PROP_JSON_PATH, VULKAN_ICD_PROP_LIBRARY_PATH, VULKAN_ICD_PROP_RESOLVED_LIBRARY_PATH, @@ -5191,6 +5475,10 @@ srt_vulkan_icd_get_property (GObject *object, g_value_set_boxed (value, self->icd.error); break; + case VULKAN_ICD_PROP_ISSUES: + g_value_set_flags (value, self->icd.issues); + break; + case VULKAN_ICD_PROP_JSON_PATH: g_value_set_string (value, self->icd.json_path); break; @@ -5229,6 +5517,11 @@ srt_vulkan_icd_set_property (GObject *object, self->icd.error = g_value_dup_boxed (value); break; + case VULKAN_ICD_PROP_ISSUES: + g_return_if_fail (self->icd.issues == 0); + self->icd.issues = g_value_get_flags (value); + break; + case VULKAN_ICD_PROP_JSON_PATH: g_return_if_fail (self->icd.json_path == NULL); tmp = g_value_get_string (value); @@ -5301,6 +5594,12 @@ srt_vulkan_icd_class_init (SrtVulkanIcdClass *cls) G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); + vulkan_icd_properties[VULKAN_ICD_PROP_ISSUES] = + g_param_spec_flags ("issues", "Issues", "Problems with this ICD", + SRT_TYPE_LOADABLE_ISSUES, SRT_LOADABLE_ISSUES_NONE, + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_STRINGS); + vulkan_icd_properties[VULKAN_ICD_PROP_JSON_PATH] = g_param_spec_string ("json-path", "JSON path", "Absolute path to JSON file describing this ICD. " @@ -5342,13 +5641,15 @@ srt_vulkan_icd_class_init (SrtVulkanIcdClass *cls) * @json_path: (transfer none): the absolute path to the JSON file * @api_version: (transfer none): the API version * @library_path: (transfer none): the path to the library + * @issues: problems with this ICD * * Returns: (transfer full): a new ICD */ static SrtVulkanIcd * srt_vulkan_icd_new (const gchar *json_path, const gchar *api_version, - const gchar *library_path) + const gchar *library_path, + SrtLoadableIssues issues) { g_return_val_if_fail (json_path != NULL, NULL); g_return_val_if_fail (api_version != NULL, NULL); @@ -5358,17 +5659,20 @@ srt_vulkan_icd_new (const gchar *json_path, "api-version", api_version, "json-path", json_path, "library-path", library_path, + "issues", issues, NULL); } /** * srt_vulkan_icd_new_error: + * @issues: problems with this ICD * @error: (transfer none): Error that occurred when loading the ICD * * Returns: (transfer full): a new ICD */ static SrtVulkanIcd * srt_vulkan_icd_new_error (const gchar *json_path, + SrtLoadableIssues issues, const GError *error) { g_return_val_if_fail (json_path != NULL, NULL); @@ -5377,6 +5681,7 @@ srt_vulkan_icd_new_error (const gchar *json_path, return g_object_new (SRT_TYPE_VULKAN_ICD, "error", error, "json-path", json_path, + "issues", issues, NULL); } @@ -5453,6 +5758,39 @@ srt_vulkan_icd_get_library_path (SrtVulkanIcd *self) return self->icd.library_path; } +/** + * srt_vulkan_icd_get_issues: + * @self: The ICD + * + * Return the problems found when parsing and loading @self. + * + * Returns: A bitfield containing problems, or %SRT_LOADABLE_ISSUES_NONE + * if no problems were found + */ +SrtLoadableIssues +srt_vulkan_icd_get_issues (SrtVulkanIcd *self) +{ + g_return_val_if_fail (SRT_IS_VULKAN_ICD (self), SRT_LOADABLE_ISSUES_UNKNOWN); + return self->icd.issues; +} + +/* + * @self: The ICD + * @is_duplicated: if %TRUE, this ICD is a duplicated of another ICD + * + * @self issues is adjusted accordingly to the @is_duplicated value. + */ +static void +_srt_vulkan_icd_set_is_duplicated (SrtVulkanIcd *self, + gboolean is_duplicated) +{ + g_return_if_fail (SRT_IS_VULKAN_ICD (self)); + if (is_duplicated) + self->icd.issues |= SRT_LOADABLE_ISSUES_DUPLICATED; + else + self->icd.issues &= ~SRT_LOADABLE_ISSUES_DUPLICATED; +} + /** * srt_vulkan_icd_resolve_library_path: * @self: An ICD @@ -5512,6 +5850,9 @@ srt_vulkan_icd_write_to_file (SrtVulkanIcd *self, * * If @self is in an error state, this returns a new reference to @self. * + * Note that @self issues are copied to the new #SrtVulkanIcd copy, including + * the eventual %SRT_LOADABLE_ISSUES_DUPLICATED. + * * Returns: (transfer full): A new reference to a #SrtVulkanIcd. Free with * g_object_unref(). */ @@ -5526,7 +5867,8 @@ srt_vulkan_icd_new_replace_library_path (SrtVulkanIcd *self, return srt_vulkan_icd_new (self->icd.json_path, self->icd.api_version, - path); + path, + self->icd.issues); } /* @@ -5548,6 +5890,7 @@ vulkan_icd_load_json (const char *sysroot, g_autofree gchar *in_sysroot = NULL; g_autofree gchar *api_version = NULL; g_autofree gchar *library_path = NULL; + SrtLoadableIssues issues = SRT_LOADABLE_ISSUES_NONE; g_return_if_fail (list != NULL); @@ -5560,7 +5903,7 @@ vulkan_icd_load_json (const char *sysroot, in_sysroot = g_build_filename (sysroot, filename, NULL); if (load_json (SRT_TYPE_VULKAN_ICD, in_sysroot, - &api_version, &library_path, &error)) + &api_version, &library_path, &issues, &error)) { g_assert (api_version != NULL); g_assert (library_path != NULL); @@ -5568,7 +5911,8 @@ vulkan_icd_load_json (const char *sysroot, *list = g_list_prepend (*list, srt_vulkan_icd_new (filename, api_version, - library_path)); + library_path, + issues)); } else { @@ -5576,7 +5920,7 @@ vulkan_icd_load_json (const char *sysroot, g_assert (library_path == NULL); g_assert (error != NULL); *list = g_list_prepend (*list, - srt_vulkan_icd_new_error (filename, error)); + srt_vulkan_icd_new_error (filename, issues, error)); } } @@ -5701,12 +6045,20 @@ _srt_graphics_get_vulkan_search_paths (const char *sysroot, /* * _srt_load_vulkan_icds: + * @helpers_path: (nullable): An optional path to find "inspect-library" + * helper, PATH is used if %NULL * @sysroot: (not nullable): The root directory, usually `/` * @envp: (array zero-terminated=1) (not nullable): Behave as though `environ` was this * array * @multiarch_tuples: (nullable): If not %NULL, and a Flatpak environment * is detected, assume a freedesktop-sdk-based runtime and look for * GL extensions for these multiarch tuples + * @multiarch_tuples: (nullable): If not %NULL, and a Flatpak environment + * is detected, assume a freedesktop-sdk-based runtime and look for + * GL extensions for these multiarch tuples. Also if not %NULL, duplicated + * Vulkan ICDs are searched by their absolute path, obtained using + * "inspect-library" in the provided multiarch tuples, instead of just their + * resolved library path. * * Implementation of srt_system_info_list_vulkan_icds(). * @@ -5714,7 +6066,8 @@ _srt_graphics_get_vulkan_search_paths (const char *sysroot, * most-important first */ GList * -_srt_load_vulkan_icds (const char *sysroot, +_srt_load_vulkan_icds (const char *helpers_path, + const char *sysroot, gchar **envp, const char * const *multiarch_tuples) { @@ -5754,6 +6107,9 @@ _srt_load_vulkan_icds (const char *sysroot, vulkan_icd_load_json_cb, &ret); } + _srt_loadable_flag_duplicates (SRT_TYPE_VULKAN_ICD, envp, helpers_path, + multiarch_tuples, ret); + return g_list_reverse (ret); } @@ -5793,6 +6149,7 @@ enum { VULKAN_LAYER_PROP_0, VULKAN_LAYER_PROP_ERROR, + VULKAN_LAYER_PROP_ISSUES, VULKAN_LAYER_PROP_JSON_PATH, VULKAN_LAYER_PROP_NAME, VULKAN_LAYER_PROP_TYPE, @@ -5825,6 +6182,10 @@ srt_vulkan_layer_get_property (GObject *object, g_value_set_boxed (value, self->layer.error); break; + case VULKAN_LAYER_PROP_ISSUES: + g_value_set_flags (value, self->layer.issues); + break; + case VULKAN_LAYER_PROP_JSON_PATH: g_value_set_string (value, self->layer.json_path); break; @@ -5878,6 +6239,11 @@ srt_vulkan_layer_set_property (GObject *object, self->layer.error = g_value_dup_boxed (value); break; + case VULKAN_LAYER_PROP_ISSUES: + g_return_if_fail (self->layer.issues == 0); + self->layer.issues = g_value_get_flags (value); + break; + case VULKAN_LAYER_PROP_JSON_PATH: g_return_if_fail (self->layer.json_path == NULL); tmp = g_value_get_string (value); @@ -5988,6 +6354,12 @@ srt_vulkan_layer_class_init (SrtVulkanLayerClass *cls) G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); + vulkan_layer_properties[VULKAN_LAYER_PROP_ISSUES] = + g_param_spec_flags ("issues", "Issues", "Problems with this layer", + SRT_TYPE_LOADABLE_ISSUES, SRT_LOADABLE_ISSUES_NONE, + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_STRINGS); + vulkan_layer_properties[VULKAN_LAYER_PROP_JSON_PATH] = g_param_spec_string ("json-path", "JSON path", "Absolute path to JSON file describing this layer. " @@ -6071,6 +6443,7 @@ srt_vulkan_layer_class_init (SrtVulkanLayerClass *cls) * @description: (transfer none): the description of the layer * @component_layers: (transfer none): the component layer names part of a * meta-layer + * @issues: problems with this layer * * @component_layers must be %NULL if @library_path has been defined. * @library_path must be %NULL if @component_layers has been defined. @@ -6085,7 +6458,8 @@ srt_vulkan_layer_new (const gchar *json_path, const gchar *api_version, const gchar *implementation_version, const gchar *description, - GStrv component_layers) + GStrv component_layers, + SrtLoadableIssues issues) { g_return_val_if_fail (json_path != NULL, NULL); g_return_val_if_fail (name != NULL, NULL); @@ -6109,18 +6483,21 @@ srt_vulkan_layer_new (const gchar *json_path, "implementation-version", implementation_version, "description", description, "component-layers", component_layers, + "issues", issues, NULL); } /** - * srt_vulkan_layer_new: + * srt_vulkan_layer_new_error: * @json_path: (transfer none): the absolute path to the JSON file + * @issues: problems with this layer * @error: (transfer none): Error that occurred when loading the layer * * Returns: (transfer full): a new SrtVulkanLayer */ static SrtVulkanLayer * srt_vulkan_layer_new_error (const gchar *json_path, + SrtLoadableIssues issues, const GError *error) { g_return_val_if_fail (json_path != NULL, NULL); @@ -6129,6 +6506,7 @@ srt_vulkan_layer_new_error (const gchar *json_path, return g_object_new (SRT_TYPE_VULKAN_LAYER, "error", error, "json-path", json_path, + "issues", issues, NULL); } @@ -6203,6 +6581,7 @@ vulkan_layer_parse_json (const gchar *path, g_return_val_if_fail (json_layer != NULL, NULL); name = json_object_get_string_member_with_default (json_layer, "name", NULL); + type = json_object_get_string_member_with_default (json_layer, "type", NULL); library_path = json_object_get_string_member_with_default (json_layer, "library_path", NULL); api_version = json_object_get_string_member_with_default (json_layer, "api_version", NULL); @@ -6225,7 +6604,7 @@ vulkan_layer_parse_json (const gchar *path, "Vulkan layer in \"%s\" cannot be parsed because it is not allowed to list " "both 'library_path' and 'component_layers' fields", path); - return srt_vulkan_layer_new_error (path, error); + return srt_vulkan_layer_new_error (path, SRT_LOADABLE_ISSUES_CANNOT_LOAD, error); } if (name == NULL || @@ -6239,11 +6618,12 @@ vulkan_layer_parse_json (const gchar *path, g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "Vulkan layer in \"%s\" cannot be parsed because it is missing a required field", path); - return srt_vulkan_layer_new_error (path, error); + return srt_vulkan_layer_new_error (path, SRT_LOADABLE_ISSUES_CANNOT_LOAD, error); } vulkan_layer = srt_vulkan_layer_new (path, name, type, library_path, api_version, - implementation_version, description, component_layers); + implementation_version, description, component_layers, + SRT_LOADABLE_ISSUES_NONE); vulkan_layer->layer.file_format_version = g_strdup (file_format_version); @@ -6403,7 +6783,10 @@ load_vulkan_layer_json (const gchar *sysroot, if (!json_parser_load_from_file (parser, in_sysroot, &error)) { g_debug ("error %s", error->message); - return g_list_prepend (ret_list, srt_vulkan_layer_new_error (path, error)); + return g_list_prepend (ret_list, + srt_vulkan_layer_new_error (path, + SRT_LOADABLE_ISSUES_CANNOT_LOAD, + error)); } node = json_parser_get_root (parser); @@ -6412,7 +6795,10 @@ load_vulkan_layer_json (const gchar *sysroot, { g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "Expected to find a JSON object in \"%s\"", path); - return g_list_prepend (ret_list, srt_vulkan_layer_new_error (path, error)); + return g_list_prepend (ret_list, + srt_vulkan_layer_new_error (path, + SRT_LOADABLE_ISSUES_CANNOT_LOAD, + error)); } object = json_node_get_object (node); @@ -6425,7 +6811,10 @@ load_vulkan_layer_json (const gchar *sysroot, { g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "file_format_version in \"%s\" is missing or not a string", path); - return g_list_prepend (ret_list, srt_vulkan_layer_new_error (path, error)); + return g_list_prepend (ret_list, + srt_vulkan_layer_new_error (path, + SRT_LOADABLE_ISSUES_CANNOT_LOAD, + error)); } /* At the time of writing the latest layer manifest file version is the @@ -6443,7 +6832,10 @@ load_vulkan_layer_json (const gchar *sysroot, g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "Vulkan layer file_format_version \"%s\" in \"%s\" is not supported", file_format_version, path); - return g_list_prepend (ret_list, srt_vulkan_layer_new_error (path, error)); + return g_list_prepend (ret_list, + srt_vulkan_layer_new_error (path, + SRT_LOADABLE_ISSUES_UNSUPPORTED, + error)); } if (json_object_has_member (object, "layers")) { @@ -6455,7 +6847,10 @@ load_vulkan_layer_json (const gchar *sysroot, { g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "\"layers\" in \"%s\" is not an array as expected", path); - return g_list_prepend (ret_list, srt_vulkan_layer_new_error (path, error)); + return g_list_prepend (ret_list, + srt_vulkan_layer_new_error (path, + SRT_LOADABLE_ISSUES_CANNOT_LOAD, + error)); } length = json_array_get_length (json_layers); for (i = 0; i < length; i++) @@ -6466,7 +6861,10 @@ load_vulkan_layer_json (const gchar *sysroot, /* Try to continue parsing */ g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "the layer in \"%s\" is not an object as expected", path); - ret_list = g_list_prepend (ret_list, srt_vulkan_layer_new_error (path, error)); + ret_list = g_list_prepend (ret_list, + srt_vulkan_layer_new_error (path, + SRT_LOADABLE_ISSUES_CANNOT_LOAD, + error)); g_clear_error (&error); continue; } @@ -6481,7 +6879,10 @@ load_vulkan_layer_json (const gchar *sysroot, { g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "\"layer\" in \"%s\" is not an object as expected", path); - return g_list_prepend (ret_list, srt_vulkan_layer_new_error (path, error)); + return g_list_prepend (ret_list, + srt_vulkan_layer_new_error (path, + SRT_LOADABLE_ISSUES_CANNOT_LOAD, + error)); } ret_list = g_list_prepend (ret_list, vulkan_layer_parse_json (path, file_format_version, json_layer)); @@ -6491,7 +6892,10 @@ load_vulkan_layer_json (const gchar *sysroot, g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "The layer definitions in \"%s\" is missing both the \"layer\" and \"layers\" fields", path); - return g_list_prepend (ret_list, srt_vulkan_layer_new_error (path, error)); + return g_list_prepend (ret_list, + srt_vulkan_layer_new_error (path, + SRT_LOADABLE_ISSUES_CANNOT_LOAD, + error)); } return ret_list; } @@ -6517,10 +6921,16 @@ vulkan_layer_load_json_cb (const char *sysroot, } /* - * _srt_load_vulkan_layers: + * _srt_load_vulkan_layers_extended: + * @helpers_path: (nullable): An optional path to find "inspect-library" + * helper, PATH is used if %NULL * @sysroot: (not nullable): The root directory, usually `/` * @envp: (array zero-terminated=1) (not nullable): Behave as though `environ` * was this array + * @multiarch_tuples: (nullable): If not %NULL, duplicated + * Vulkan layers are searched by their absolute path, obtained using + * 'inspect-library' in the provided multiarch tuples, instead of just their + * resolved library path. * @explicit: If %TRUE, load explicit layers, otherwise load implicit layers. * * Implementation of srt_system_info_list_explicit_vulkan_layers() and @@ -6530,9 +6940,11 @@ vulkan_layer_load_json_cb (const char *sysroot, * layers, most-important first */ GList * -_srt_load_vulkan_layers (const char *sysroot, - gchar **envp, - gboolean explicit) +_srt_load_vulkan_layers_extended (const char *helpers_path, + const char *sysroot, + gchar **envp, + const char * const *multiarch_tuples, + gboolean explicit) { GList *ret = NULL; g_auto(GStrv) search_paths = NULL; @@ -6568,9 +6980,33 @@ _srt_load_vulkan_layers (const char *sysroot, vulkan_layer_load_json_cb, &ret); } + _srt_loadable_flag_duplicates (SRT_TYPE_VULKAN_LAYER, envp, helpers_path, + multiarch_tuples, ret); + return g_list_reverse (ret); } +/* + * _srt_load_vulkan_layers: + * @sysroot: (not nullable): The root directory, usually `/` + * @envp: (array zero-terminated=1) (not nullable): Behave as though `environ` + * was this array + * @explicit: If %TRUE, load explicit layers, otherwise load implicit layers. + * + * This function has been deprecated, use _srt_load_vulkan_layers_extended() + * instead + * + * Returns: (transfer full) (element-type SrtVulkanLayer): A list of Vulkan + * layers, most-important first + */ +GList * +_srt_load_vulkan_layers (const char *sysroot, + gchar **envp, + gboolean explicit) +{ + return _srt_load_vulkan_layers_extended (NULL, sysroot, envp, NULL, explicit); +} + static SrtVulkanLayer * vulkan_layer_dup (SrtVulkanLayer *self) { @@ -6586,7 +7022,8 @@ vulkan_layer_dup (SrtVulkanLayer *self) self->layer.api_version, self->layer.implementation_version, self->layer.description, - self->layer.component_layers); + self->layer.component_layers, + self->layer.issues); ret->layer.file_format_version = g_strdup (self->layer.file_format_version); @@ -6844,6 +7281,39 @@ srt_vulkan_layer_get_component_layers (SrtVulkanLayer *self) return (const char * const *) self->layer.component_layers; } +/** + * srt_vulkan_layer_get_issues: + * @self: The Vulkan layer + * + * Return the problems found when parsing and loading @self. + * + * Returns: A bitfield containing problems, or %SRT_LOADABLE_ISSUES_NONE + * if no problems were found + */ +SrtLoadableIssues +srt_vulkan_layer_get_issues (SrtVulkanLayer *self) +{ + g_return_val_if_fail (SRT_IS_VULKAN_LAYER (self), SRT_LOADABLE_ISSUES_UNKNOWN); + return self->layer.issues; +} + +/* + * @self: The Vulkan layer + * @is_duplicated: if %TRUE, this layer is a duplicated of another layer + * + * @self issues is adjusted accordingly to the @is_duplicated value. + */ +static void +_srt_vulkan_layer_set_is_duplicated (SrtVulkanLayer *self, + gboolean is_duplicated) +{ + g_return_if_fail (SRT_IS_VULKAN_LAYER (self)); + if (is_duplicated) + self->layer.issues |= SRT_LOADABLE_ISSUES_DUPLICATED; + else + self->layer.issues &= ~SRT_LOADABLE_ISSUES_DUPLICATED; +} + /** * srt_vulkan_layer_resolve_library_path: * @self: A Vulkan layer @@ -7004,6 +7474,7 @@ get_driver_loadables_from_json_report (JsonObject *json_obj, const gchar *implementation_version = NULL; g_auto(GStrv) component_layers = NULL; SrtVulkanLayer *layer = NULL; + SrtLoadableIssues issues; GQuark error_domain; gint error_code; const gchar *error_message; @@ -7046,6 +7517,10 @@ get_driver_loadables_from_json_report (JsonObject *json_obj, api_version = json_object_get_string_member_with_default (json_elem_obj, "api_version", NULL); + issues = srt_get_flags_from_json_array (SRT_TYPE_LOADABLE_ISSUES, + json_elem_obj, + "issues", + SRT_LOADABLE_ISSUES_UNKNOWN); error_domain = g_quark_from_string (json_object_get_string_member_with_default (json_elem_obj, "error-domain", NULL)); @@ -7066,7 +7541,8 @@ get_driver_loadables_from_json_report (JsonObject *json_obj, layer = srt_vulkan_layer_new (json_path, name, type, library_path, api_version, implementation_version, - description, component_layers); + description, component_layers, + issues); driver_info = g_list_prepend (driver_info, layer); } else if ((which == SRT_TYPE_EGL_ICD || which == SRT_TYPE_VULKAN_ICD) && @@ -7074,11 +7550,13 @@ get_driver_loadables_from_json_report (JsonObject *json_obj, { if (which == SRT_TYPE_EGL_ICD) driver_info = g_list_prepend (driver_info, srt_egl_icd_new (json_path, - library_path)); + library_path, + issues)); else if (which == SRT_TYPE_VULKAN_ICD) driver_info = g_list_prepend (driver_info, srt_vulkan_icd_new (json_path, api_version, - library_path)); + library_path, + issues)); else g_return_val_if_reached (NULL); } @@ -7095,12 +7573,15 @@ get_driver_loadables_from_json_report (JsonObject *json_obj, error_message); if (which == SRT_TYPE_EGL_ICD) driver_info = g_list_prepend (driver_info, srt_egl_icd_new_error (json_path, + issues, error)); else if (which == SRT_TYPE_VULKAN_ICD) driver_info = g_list_prepend (driver_info, srt_vulkan_icd_new_error (json_path, + issues, error)); else if (which == SRT_TYPE_VULKAN_LAYER) driver_info = g_list_prepend (driver_info, srt_vulkan_layer_new_error (json_path, + issues, error)); else g_return_val_if_reached (NULL); @@ -7111,7 +7592,7 @@ get_driver_loadables_from_json_report (JsonObject *json_obj, } } out: - return driver_info; + return g_list_reverse (driver_info); } /** diff --git a/steam-runtime-tools/graphics.h b/steam-runtime-tools/graphics.h index da2cf0e84da3b417769b6e37893e2d1e5eedc2f9..9030bc4938fdfd7c5b4d5c3d40b8e075a6d207ff 100644 --- a/steam-runtime-tools/graphics.h +++ b/steam-runtime-tools/graphics.h @@ -110,6 +110,34 @@ typedef enum SRT_GRAPHICS_LIBRARY_VENDOR_PRIMUS, } SrtGraphicsLibraryVendor; +/** + * SrtLoadableIssues: + * @SRT_LOADABLE_ISSUES_NONE: There are no problems + * @SRT_LOADABLE_ISSUES_UNKNOWN: An internal error occurred while checking the + * loadable, or an unknown issue flag was encountered while reading a report + * @SRT_LOADABLE_ISSUES_UNSUPPORTED: The API version of the JSON file is not + * supported yet + * @SRT_LOADABLE_ISSUES_CANNOT_LOAD: Unable to parse the JSON file describing + * the loadable or unable to load the library + * @SRT_LOADABLE_ISSUES_DUPLICATED: This loadable, and another one, have a + * library path that points to the same library, and, if available, also the + * same name + * + * A bitfield with flags representing problems with the loadables, or + * %SRT_LOADABLE_ISSUES_NONE (which is numerically zero) if no problems + * were detected. + * + * In general, more bits set means more problems. + */ +typedef enum +{ + SRT_LOADABLE_ISSUES_NONE = 0, + SRT_LOADABLE_ISSUES_UNKNOWN = (1 << 0), + SRT_LOADABLE_ISSUES_UNSUPPORTED = (1 << 1), + SRT_LOADABLE_ISSUES_CANNOT_LOAD = (1 << 2), + SRT_LOADABLE_ISSUES_DUPLICATED = (1 << 3), +} SrtLoadableIssues; + /** * SrtWindowSystem: * @SRT_WINDOW_SYSTEM_X11: X11 window system, with GL: equivalent to GLX; with GLES: equivalent to EGL_X11; with Vulkan: use X11 @@ -233,6 +261,8 @@ const gchar *srt_egl_icd_get_json_path (SrtEglIcd *self); _SRT_PUBLIC const gchar *srt_egl_icd_get_library_path (SrtEglIcd *self); _SRT_PUBLIC +SrtLoadableIssues srt_egl_icd_get_issues (SrtEglIcd *self); +_SRT_PUBLIC gchar *srt_egl_icd_resolve_library_path (SrtEglIcd *self); _SRT_PUBLIC SrtEglIcd *srt_egl_icd_new_replace_library_path (SrtEglIcd *self, @@ -323,6 +353,8 @@ const gchar *srt_vulkan_icd_get_json_path (SrtVulkanIcd *self); _SRT_PUBLIC const gchar *srt_vulkan_icd_get_library_path (SrtVulkanIcd *self); _SRT_PUBLIC +SrtLoadableIssues srt_vulkan_icd_get_issues (SrtVulkanIcd *self); +_SRT_PUBLIC gchar *srt_vulkan_icd_resolve_library_path (SrtVulkanIcd *self); _SRT_PUBLIC SrtVulkanIcd *srt_vulkan_icd_new_replace_library_path (SrtVulkanIcd *self, @@ -366,9 +398,12 @@ const gchar *srt_vulkan_layer_get_implementation_version (SrtVulkanLayer *self); _SRT_PUBLIC const char * const *srt_vulkan_layer_get_component_layers (SrtVulkanLayer *self); _SRT_PUBLIC +SrtLoadableIssues srt_vulkan_layer_get_issues (SrtVulkanLayer *self); +_SRT_PUBLIC SrtVulkanLayer *srt_vulkan_layer_new_replace_library_path (SrtVulkanLayer *self, const char *path); -_SRT_PUBLIC +_SRT_PUBLIC G_DEPRECATED_FOR (srt_system_info_list_explicit_vulkan_layers or +srt_system_info_list_implicit_vulkan_layers) GList *_srt_load_vulkan_layers (const char *sysroot, gchar **envp, gboolean explicit); diff --git a/steam-runtime-tools/system-info.c b/steam-runtime-tools/system-info.c index 2b61b888999b26e7cc673ddbc0fe6fc258989719..7b21f717f1a3885f1bb4b5997987f797f5a8551c 100644 --- a/steam-runtime-tools/system-info.c +++ b/steam-runtime-tools/system-info.c @@ -2740,6 +2740,7 @@ srt_system_info_set_helpers_path (SrtSystemInfo *self, forget_graphics_modules (self); forget_libraries (self); forget_graphics_results (self); + forget_layers (self); forget_locales (self); free (self->helpers_path); self->helpers_path = g_strdup (path); @@ -2795,6 +2796,7 @@ srt_system_info_set_primary_multiarch_tuple (SrtSystemInfo *self, g_return_if_fail (SRT_IS_SYSTEM_INFO (self)); g_return_if_fail (!self->immutable_values); + forget_layers (self); forget_locales (self); if (tuple) @@ -3097,9 +3099,11 @@ srt_system_info_set_test_flags (SrtSystemInfo *self, * srt_system_info_list_egl_icds: * @self: The #SrtSystemInfo object * @multiarch_tuples: (nullable) (array zero-terminated=1) (element-type utf8): - * A list of multiarch tuples like %SRT_ABI_I386, representing ABIs, or %NULL - * to not look in any ABI-specific locations. This is currently only used if - * running in a Flatpak environment. + * A list of multiarch tuples like %SRT_ABI_I386, representing ABIs, or %NULL. + * If not %NULL, and we are running in a Flatpak environment, look for ICDs in + * the ABI-specific locations. Also if not %NULL, duplicated Vulkan ICDs are + * searched by their absolute path, obtained using "inspect-library" in the + * provided multiarch tuples instead of just their resolved library path. * * List the available EGL ICDs, using the same search paths as GLVND. * @@ -3136,8 +3140,8 @@ srt_system_info_list_egl_icds (SrtSystemInfo *self, if (!self->icds.have_egl && !self->immutable_values) { g_assert (self->icds.egl == NULL); - self->icds.egl = _srt_load_egl_icds (self->sysroot, self->env, - multiarch_tuples); + self->icds.egl = _srt_load_egl_icds (self->helpers_path, self->sysroot, + self->env, multiarch_tuples); self->icds.have_egl = TRUE; } @@ -3151,9 +3155,11 @@ srt_system_info_list_egl_icds (SrtSystemInfo *self, * srt_system_info_list_vulkan_icds: * @self: The #SrtSystemInfo object * @multiarch_tuples: (nullable) (array zero-terminated=1) (element-type utf8): - * A list of multiarch tuples like %SRT_ABI_I386, representing ABIs, or %NULL - * to not look in any ABI-specific locations. This is currently only used if - * running in a Flatpak environment. + * A list of multiarch tuples like %SRT_ABI_I386, representing ABIs, or %NULL. + * If not %NULL, and we are running in a Flatpak environment, look for ICDs in + * the ABI-specific locations. Also if not %NULL, duplicated Vulkan ICDs are + * searched by their absolute path, obtained using "inspect-library" in the + * provided multiarch tuples instead of just their resolved library path. * * List the available Vulkan ICDs, using the same search paths as the * reference vulkan-loader. @@ -3192,8 +3198,8 @@ srt_system_info_list_vulkan_icds (SrtSystemInfo *self, if (!self->icds.have_vulkan && !self->immutable_values) { g_assert (self->icds.vulkan == NULL); - self->icds.vulkan = _srt_load_vulkan_icds (self->sysroot, self->env, - multiarch_tuples); + self->icds.vulkan = _srt_load_vulkan_icds (self->helpers_path, self->sysroot, + self->env, multiarch_tuples); self->icds.have_vulkan = TRUE; } @@ -3222,6 +3228,10 @@ srt_system_info_list_vulkan_icds (SrtSystemInfo *self, * or absolute path to a specific library, which will only be usable for * the architecture for which it was compiled. * + * Duplicated Vulkan layers are searched by their absolute path, obtained + * using "inspect-library" in the multiarch tuples set using + * "srt_system_info_set_multiarch_tuples()". + * * Returns: (transfer full) (element-type SrtVulkanLayer): A list of * opaque #SrtVulkanLayer objects. Free with * `g_list_free_full(layers, g_object_unref)`. @@ -3236,8 +3246,13 @@ srt_system_info_list_explicit_vulkan_layers (SrtSystemInfo *self) if (!self->layers.have_vulkan_explicit && !self->immutable_values) { + g_auto(GStrv) multiarch_tuples = srt_system_info_dup_multiarch_tuples (self); g_assert (self->layers.vulkan_explicit == NULL); - self->layers.vulkan_explicit = _srt_load_vulkan_layers (self->sysroot, self->env, TRUE); + self->layers.vulkan_explicit = _srt_load_vulkan_layers_extended (self->helpers_path, + self->sysroot, + self->env, + (const char * const *) multiarch_tuples, + TRUE); self->layers.have_vulkan_explicit = TRUE; } @@ -3266,6 +3281,10 @@ srt_system_info_list_explicit_vulkan_layers (SrtSystemInfo *self) * or absolute path to a specific library, which will only be usable for * the architecture for which it was compiled. * + * Duplicated Vulkan layers are searched by their absolute path, obtained + * using "inspect-library" in the multiarch tuples set using + * "srt_system_info_set_multiarch_tuples()". + * * Returns: (transfer full) (element-type SrtVulkanLayer): A list of * opaque #SrtVulkanLayer objects. Free with * `g_list_free_full(layers, g_object_unref)`. @@ -3280,8 +3299,13 @@ srt_system_info_list_implicit_vulkan_layers (SrtSystemInfo *self) if (!self->layers.have_vulkan_implicit && !self->immutable_values) { + g_auto(GStrv) multiarch_tuples = srt_system_info_dup_multiarch_tuples (self); g_assert (self->layers.vulkan_implicit == NULL); - self->layers.vulkan_implicit = _srt_load_vulkan_layers (self->sysroot, self->env, FALSE); + self->layers.vulkan_implicit = _srt_load_vulkan_layers_extended (self->helpers_path, + self->sysroot, + self->env, + (const char * const *) multiarch_tuples, + FALSE); self->layers.have_vulkan_implicit = TRUE; } diff --git a/steam-runtime-tools/system-info.h b/steam-runtime-tools/system-info.h index 3928d26b50c33c6dee2da03e4e850cfd67c6a27a..387ed20815cb95fe669438f7f1d208d52f89db37 100644 --- a/steam-runtime-tools/system-info.h +++ b/steam-runtime-tools/system-info.h @@ -145,7 +145,7 @@ SrtGraphicsIssues srt_system_info_check_graphics (SrtSystemInfo *self, _SRT_PUBLIC GList * srt_system_info_check_all_graphics (SrtSystemInfo *self, - const char *multiarch_tuple); + const char *multiarch_tuple); _SRT_PUBLIC GList *srt_system_info_list_egl_icds (SrtSystemInfo *self, diff --git a/tests/fake-icds/.flatpak-info b/tests/fake-icds-flatpak/.flatpak-info similarity index 100% rename from tests/fake-icds/.flatpak-info rename to tests/fake-icds-flatpak/.flatpak-info diff --git a/tests/fake-icds-flatpak/etc/glvnd/egl_vendor.d/invalid.json b/tests/fake-icds-flatpak/etc/glvnd/egl_vendor.d/invalid.json new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds-flatpak/etc/vulkan/icd.d/basename.json b/tests/fake-icds-flatpak/etc/vulkan/icd.d/basename.json new file mode 100644 index 0000000000000000000000000000000000000000..cfee90f4c38b69f4990dbed61357062a2a5d66a8 --- /dev/null +++ b/tests/fake-icds-flatpak/etc/vulkan/icd.d/basename.json @@ -0,0 +1,7 @@ +{ + "ICD": { + "api_version": "1.2.3", + "library_path": "libvulkan_basename.so" + }, + "file_format_version": "1.0.0" +} diff --git a/tests/fake-icds-flatpak/etc/xdg/vulkan/icd.d/invalid.json b/tests/fake-icds-flatpak/etc/xdg/vulkan/icd.d/invalid.json new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds-flatpak/etc/xdg/vulkan/icd.d/invalid.txt b/tests/fake-icds-flatpak/etc/xdg/vulkan/icd.d/invalid.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds-flatpak/false.json b/tests/fake-icds-flatpak/false.json new file mode 100644 index 0000000000000000000000000000000000000000..c508d5366f70bba37fcc09d128b6537c4adb2c79 --- /dev/null +++ b/tests/fake-icds-flatpak/false.json @@ -0,0 +1 @@ +false diff --git a/tests/fake-icds-flatpak/home/.local/share/vulkan/icd.d/relative_new.json b/tests/fake-icds-flatpak/home/.local/share/vulkan/icd.d/relative_new.json new file mode 100644 index 0000000000000000000000000000000000000000..5183247ac33d07cd357f5daaf27ef6a70dcde489 --- /dev/null +++ b/tests/fake-icds-flatpak/home/.local/share/vulkan/icd.d/relative_new.json @@ -0,0 +1,7 @@ +{ + "ICD": { + "api_version": "1.1.2", + "library_path": "/usr/lib/x86_64-mock-abi/vulkan/icd.d/../libvulkan_relative.so" + }, + "file_format_version": "1.0.0" +} diff --git a/tests/fake-icds-flatpak/usr/lib/i386-mock-abi/libvulkan_intel.so b/tests/fake-icds-flatpak/usr/lib/i386-mock-abi/libvulkan_intel.so new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/mock-abi/GL/glvnd/egl_vendor.d/relative.json b/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/GL/glvnd/egl_vendor.d/relative.json similarity index 100% rename from tests/fake-icds/usr/lib/mock-abi/GL/glvnd/egl_vendor.d/relative.json rename to tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/GL/glvnd/egl_vendor.d/relative.json diff --git a/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/GL/glvnd/libEGL_relative.so b/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/GL/glvnd/libEGL_relative.so new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/mock-abi/GL/vulkan/icd.d/invalid.json b/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/GL/vulkan/icd.d/invalid.json similarity index 100% rename from tests/fake-icds/usr/lib/mock-abi/GL/vulkan/icd.d/invalid.json rename to tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/GL/vulkan/icd.d/invalid.json diff --git a/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/libvulkan_intel.so b/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/libvulkan_intel.so new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/mock-abi/vulkan/icd.d/relative.json b/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/vulkan/icd.d/relative.json similarity index 100% rename from tests/fake-icds/usr/lib/mock-abi/vulkan/icd.d/relative.json rename to tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/vulkan/icd.d/relative.json diff --git a/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/vulkan/libvulkan_relative.so b/tests/fake-icds-flatpak/usr/lib/x86_64-mock-abi/vulkan/libvulkan_relative.so new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds-flatpak/usr/local/share/vulkan/icd.d/intel_icd.i686.json b/tests/fake-icds-flatpak/usr/local/share/vulkan/icd.d/intel_icd.i686.json new file mode 100644 index 0000000000000000000000000000000000000000..c9a874f790265b0a4d84aa62bbcb11a20dfc8cdf --- /dev/null +++ b/tests/fake-icds-flatpak/usr/local/share/vulkan/icd.d/intel_icd.i686.json @@ -0,0 +1,7 @@ +{ + "ICD": { + "api_version": "1.1.102", + "library_path": "/usr/lib/i386-mock-abi/libvulkan_intel.so" + }, + "file_format_version": "1.0.0" +} diff --git a/tests/fake-icds-flatpak/usr/share/glvnd/egl_vendor.d/50_mesa.json b/tests/fake-icds-flatpak/usr/share/glvnd/egl_vendor.d/50_mesa.json new file mode 100644 index 0000000000000000000000000000000000000000..8aaaa100ffa5134672c27af08cbf33e77984602c --- /dev/null +++ b/tests/fake-icds-flatpak/usr/share/glvnd/egl_vendor.d/50_mesa.json @@ -0,0 +1,6 @@ +{ + "file_format_version" : "1.0.0", + "ICD" : { + "library_path" : "libEGL_mesa.so.0" + } +} diff --git a/tests/fake-icds-flatpak/usr/share/vulkan/icd.d/intel_icd.x86_64.json b/tests/fake-icds-flatpak/usr/share/vulkan/icd.d/intel_icd.x86_64.json new file mode 100644 index 0000000000000000000000000000000000000000..d309e3750c92525bf1db016407444ff2b2208784 --- /dev/null +++ b/tests/fake-icds-flatpak/usr/share/vulkan/icd.d/intel_icd.x86_64.json @@ -0,0 +1,7 @@ +{ + "ICD": { + "api_version": "1.1.102", + "library_path": "/usr/lib/x86_64-mock-abi/libvulkan_intel.so" + }, + "file_format_version": "1.0.0" +} diff --git a/tests/fake-icds/confdir/vulkan/icd.d/invalid.json b/tests/fake-icds/confdir/vulkan/icd.d/invalid.json index 2886dc10a7faf42e4fd14b99d6f797498c9398d6..8ff64cd57a9455c79bbd59feacad5ae63a76d92e 100644 --- a/tests/fake-icds/confdir/vulkan/icd.d/invalid.json +++ b/tests/fake-icds/confdir/vulkan/icd.d/invalid.json @@ -1,7 +1,7 @@ { "ICD": { "api_version": "1.1.102", - "library_path": "/usr/lib/x86_64-linux-gnu/libvulkan_intel.so" + "library_path": "/usr/lib/x86_64-mock-abi/libvulkan_intel.so" }, "file_format_version": "1.1.0" } diff --git a/tests/fake-icds/datadir/vulkan/icd.d/invalid.json b/tests/fake-icds/datadir/vulkan/icd.d/invalid.json index f0d761d97c4bb68b020b981910409c3cc843a480..19cb63f2d7a8640418ada33befc1557baa3ae4da 100644 --- a/tests/fake-icds/datadir/vulkan/icd.d/invalid.json +++ b/tests/fake-icds/datadir/vulkan/icd.d/invalid.json @@ -1,7 +1,7 @@ { "ICD": { "api_version": "1.1.102", - "library_path": "/usr/lib/x86_64-linux-gnu/libvulkan_intel.so" + "library_path": "/usr/lib/x86_64-mock-abi/libvulkan_intel.so" }, "file_format_version": "2.0.0" } diff --git a/tests/fake-icds/datahome/vulkan/icd.d/invalid.json b/tests/fake-icds/datahome/vulkan/icd.d/invalid.json index 687b6556cc69d8fa8f33cdf778eddde0567f82a8..b50b52dd18ac8bb466ee4817d91378ab8fce7e50 100644 --- a/tests/fake-icds/datahome/vulkan/icd.d/invalid.json +++ b/tests/fake-icds/datahome/vulkan/icd.d/invalid.json @@ -1,6 +1,6 @@ { "ICD": { - "library_path": "/usr/lib/x86_64-linux-gnu/libvulkan_intel.so" + "library_path": "/usr/lib/x86_64-mock-abi/libvulkan_intel.so" }, "file_format_version": "1.0.0" } diff --git a/tests/fake-icds/egl1/soname_zlib_dup.json b/tests/fake-icds/egl1/soname_zlib_dup.json new file mode 100644 index 0000000000000000000000000000000000000000..8f0f7ca550f873ac4178e595d19bb3be5639871e --- /dev/null +++ b/tests/fake-icds/egl1/soname_zlib_dup.json @@ -0,0 +1,6 @@ +{ + "file_format_version" : "1.0.0", + "ICD" : { + "library_path" : "libz.so.1" + } +} diff --git a/tests/fake-icds/egl1/z.json b/tests/fake-icds/egl1/z.json index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..2525216abc89054af02335b40aba696a00705bbf 100644 --- a/tests/fake-icds/egl1/z.json +++ b/tests/fake-icds/egl1/z.json @@ -0,0 +1,3 @@ +{ + "file_format_version" : "9000.0.0" +} diff --git a/tests/fake-icds/egl2/soname_zlib.json b/tests/fake-icds/egl2/soname_zlib.json new file mode 100644 index 0000000000000000000000000000000000000000..8f0f7ca550f873ac4178e595d19bb3be5639871e --- /dev/null +++ b/tests/fake-icds/egl2/soname_zlib.json @@ -0,0 +1,6 @@ +{ + "file_format_version" : "1.0.0", + "ICD" : { + "library_path" : "libz.so.1" + } +} diff --git a/tests/fake-icds/opt/libEGL_myvendor.so b/tests/fake-icds/opt/libEGL_myvendor.so new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/i386-mock-abi/libvulkan_intel.so b/tests/fake-icds/usr/lib/i386-mock-abi/libvulkan_intel.so new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/x86_64-mock-abi/GL/glvnd/egl_vendor.d/relative.json b/tests/fake-icds/usr/lib/x86_64-mock-abi/GL/glvnd/egl_vendor.d/relative.json new file mode 100644 index 0000000000000000000000000000000000000000..13ff8653edefcb7b47331c2a5628878b2f9dc863 --- /dev/null +++ b/tests/fake-icds/usr/lib/x86_64-mock-abi/GL/glvnd/egl_vendor.d/relative.json @@ -0,0 +1,6 @@ +{ + "ICD": { + "library_path": "../libEGL_relative.so" + }, + "file_format_version": "1.0.0" +} diff --git a/tests/fake-icds/usr/lib/x86_64-mock-abi/GL/vulkan/icd.d/invalid.json b/tests/fake-icds/usr/lib/x86_64-mock-abi/GL/vulkan/icd.d/invalid.json new file mode 100644 index 0000000000000000000000000000000000000000..fe51488c7066f6687ef680d6bfaa4f7768ef205c --- /dev/null +++ b/tests/fake-icds/usr/lib/x86_64-mock-abi/GL/vulkan/icd.d/invalid.json @@ -0,0 +1 @@ +[] diff --git a/tests/fake-icds/usr/lib/x86_64-mock-abi/libEGL_mesa.so.0 b/tests/fake-icds/usr/lib/x86_64-mock-abi/libEGL_mesa.so.0 new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/x86_64-mock-abi/libvulkan_basename.so b/tests/fake-icds/usr/lib/x86_64-mock-abi/libvulkan_basename.so new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/x86_64-mock-abi/libvulkan_intel.so b/tests/fake-icds/usr/lib/x86_64-mock-abi/libvulkan_intel.so new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/x86_64-mock-abi/libz.so.1 b/tests/fake-icds/usr/lib/x86_64-mock-abi/libz.so.1 new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/tests/fake-icds/usr/lib/x86_64-mock-abi/vulkan/icd.d/relative.json b/tests/fake-icds/usr/lib/x86_64-mock-abi/vulkan/icd.d/relative.json new file mode 100644 index 0000000000000000000000000000000000000000..da0863d13cbc7cb2cad75f8c5eb947a45f90814d --- /dev/null +++ b/tests/fake-icds/usr/lib/x86_64-mock-abi/vulkan/icd.d/relative.json @@ -0,0 +1,7 @@ +{ + "ICD": { + "api_version": "1.1.1", + "library_path": "../libvulkan_relative.so" + }, + "file_format_version": "1.0.0" +} diff --git a/tests/fake-icds/usr/local/share/vulkan/icd.d/intel_icd.i686.json b/tests/fake-icds/usr/local/share/vulkan/icd.d/intel_icd.i686.json index 0558e2756003e826b2b35c015a1e33c683b3f525..c9a874f790265b0a4d84aa62bbcb11a20dfc8cdf 100644 --- a/tests/fake-icds/usr/local/share/vulkan/icd.d/intel_icd.i686.json +++ b/tests/fake-icds/usr/local/share/vulkan/icd.d/intel_icd.i686.json @@ -1,7 +1,7 @@ { "ICD": { "api_version": "1.1.102", - "library_path": "/usr/lib/i386-linux-gnu/libvulkan_intel.so" + "library_path": "/usr/lib/i386-mock-abi/libvulkan_intel.so" }, "file_format_version": "1.0.0" -} \ No newline at end of file +} diff --git a/tests/fake-icds/usr/share/vulkan/icd.d/intel_icd.x86_64.json b/tests/fake-icds/usr/share/vulkan/icd.d/intel_icd.x86_64.json index 641f41b5ed46ce29190f48fffd4df729ddcd6e34..d309e3750c92525bf1db016407444ff2b2208784 100644 --- a/tests/fake-icds/usr/share/vulkan/icd.d/intel_icd.x86_64.json +++ b/tests/fake-icds/usr/share/vulkan/icd.d/intel_icd.x86_64.json @@ -1,7 +1,7 @@ { "ICD": { "api_version": "1.1.102", - "library_path": "/usr/lib/x86_64-linux-gnu/libvulkan_intel.so" + "library_path": "/usr/lib/x86_64-mock-abi/libvulkan_intel.so" }, "file_format_version": "1.0.0" -} \ No newline at end of file +} diff --git a/tests/generate-sysroots.py b/tests/generate-sysroots.py index c8386d8704445933b37af04b3915af281463a6a8..0df01c954ab6ad55fa1766a266dd0af7b5bb1725 100755 --- a/tests/generate-sysroots.py +++ b/tests/generate-sysroots.py @@ -61,6 +61,8 @@ debian10/usr/share/vulkan/implicit_layer.d debian10/run/systemd debian-unstable/etc fedora/custom_path +fedora/custom_path2 +fedora/custom_path3 fedora/usr/lib/dri fedora/usr/lib/vdpau fedora/usr/lib64/dri @@ -68,10 +70,10 @@ fedora/usr/lib64/vdpau fedora/usr/share/vulkan/implicit_layer.d fedora/run/systemd flatpak-example/usr/lib/dri -flatpak-example/usr/lib/mock-abi/GL/lib/dri -flatpak-example/usr/lib/mock-abi/dri -flatpak-example/usr/lib/mock-abi/dri/intel-vaapi-driver -flatpak-example/usr/lib/mock-abi/vdpau +flatpak-example/usr/lib/x86_64-mock-abi/GL/lib/dri +flatpak-example/usr/lib/x86_64-mock-abi/dri +flatpak-example/usr/lib/x86_64-mock-abi/dri/intel-vaapi-driver +flatpak-example/usr/lib/x86_64-mock-abi/vdpau flatpak-example/run/host invalid-os-release/usr/lib invalid-os-release/run/host @@ -141,6 +143,7 @@ fedora/usr/lib/libvdpau.so.1 fedora/usr/lib/vdpau/libvdpau_nouveau.so.1 fedora/usr/lib/vdpau/libvdpau_r600.so fedora/usr/lib/vdpau/libvdpau_radeonsi.so.1.0.0 +fedora/usr/lib32/libMangoHud.so fedora/usr/lib64/dri/i965_dri.so fedora/usr/lib64/dri/r600_dri.so fedora/usr/lib64/dri/r600_drv_video.so @@ -154,14 +157,14 @@ fedora/usr/lib64/vdpau/libvdpau_radeonsi.so flatpak-example/.flatpak-info flatpak-example/usr/lib/dri/r300_dri.so flatpak-example/usr/lib/dri/r600_drv_video.so -flatpak-example/usr/lib/mock-abi/GL/lib/dri/i965_dri.so -flatpak-example/usr/lib/mock-abi/GL/lib/dri/r600_drv_video.so -flatpak-example/usr/lib/mock-abi/dri/intel-vaapi-driver/i965_drv_video.so -flatpak-example/usr/lib/mock-abi/dri/radeonsi_drv_video.so -flatpak-example/usr/lib/mock-abi/libEGL_mesa.so.0 -flatpak-example/usr/lib/mock-abi/libva.so.2 -flatpak-example/usr/lib/mock-abi/libvdpau.so.1 -flatpak-example/usr/lib/mock-abi/vdpau/libvdpau_radeonsi.so.1 +flatpak-example/usr/lib/x86_64-mock-abi/GL/lib/dri/i965_dri.so +flatpak-example/usr/lib/x86_64-mock-abi/GL/lib/dri/r600_drv_video.so +flatpak-example/usr/lib/x86_64-mock-abi/dri/intel-vaapi-driver/i965_drv_video.so +flatpak-example/usr/lib/x86_64-mock-abi/dri/radeonsi_drv_video.so +flatpak-example/usr/lib/x86_64-mock-abi/libEGL_mesa.so.0 +flatpak-example/usr/lib/x86_64-mock-abi/libva.so.2 +flatpak-example/usr/lib/x86_64-mock-abi/libvdpau.so.1 +flatpak-example/usr/lib/x86_64-mock-abi/vdpau/libvdpau_radeonsi.so.1 flatpak-example/run/host/.exists invalid-os-release/run/host/.exists no-os-release/another_custom_path/libvdpau_custom.so @@ -473,6 +476,34 @@ with open('fedora/custom_path/meta_layer.json', 'w') as writer: } }''') +with open('fedora/custom_path2/MangoHud.json', 'w') as writer: + writer.write('''\ +{ + "file_format_version" : "1.0.0", + "layer" : { + "name" : "VK_LAYER_MANGOHUD_overlay", + "type" : "GLOBAL", + "library_path" : "/usr/\\$LIB/libMangoHud.so", + "api_version" : "1.2.135", + "implementation_version" : "1", + "description" : "Vulkan Hud Overlay" + } +}''') + +with open('fedora/custom_path3/MangoHud_i386.json', 'w') as writer: + writer.write('''\ +{ + "file_format_version" : "1.0.0", + "layer" : { + "name" : "VK_LAYER_MANGOHUD_overlay", + "type" : "GLOBAL", + "library_path" : "/usr/lib32/libMangoHud.so", + "api_version" : "1.2.135", + "implementation_version" : "1", + "description" : "Vulkan Hud Overlay" + } +}''') + with open('debian10/usr/lib/os-release', 'w') as writer: writer.write('''\ PRETTY_NAME="Debian GNU/Linux 10 (buster)" diff --git a/tests/graphics.c b/tests/graphics.c index 53b30ecad420793ea548edd33d06bf7c5df250b3..2e87f08c384899f1c3c31a2f2968c90b980aaf13 100644 --- a/tests/graphics.c +++ b/tests/graphics.c @@ -91,7 +91,15 @@ setup (Fixture *f, f->fake_icds_envp = g_get_environ (); - if (config == NULL || config->icd_mode != ICD_MODE_RELATIVE_FILENAMES) + if (config != NULL && config->icd_mode == ICD_MODE_FLATPAK) + { + f->sysroot = g_build_filename (f->srcdir, "fake-icds-flatpak", NULL); + /* Some of the mock helper programs rely on this, so we set it + * even though SrtSystemInfo doesn't use it any more */ + f->fake_icds_envp = g_environ_setenv (f->fake_icds_envp, + "SRT_TEST_SYSROOT", f->sysroot, TRUE); + } + else if (config == NULL || config->icd_mode != ICD_MODE_RELATIVE_FILENAMES) { f->sysroot = g_build_filename (f->srcdir, "fake-icds", NULL); /* Some of the mock helper programs rely on this, so we set it @@ -432,6 +440,7 @@ assert_egl_icd (SrtEglIcd *icd) { g_autoptr(GError) error = NULL; g_autoptr(GError) error_property = NULL; + SrtLoadableIssues issues; g_autofree gchar *json_path = NULL; g_autofree gchar *library_path = NULL; g_autofree gchar *resolved = NULL; @@ -441,6 +450,7 @@ assert_egl_icd (SrtEglIcd *icd) g_object_get (icd, "error", &error_property, + "issues", &issues, "json-path", &json_path, "library-path", &library_path, "resolved-library-path", &resolved_property, @@ -454,6 +464,7 @@ assert_egl_icd (SrtEglIcd *icd) /* These are invariants, even if they're NULL */ g_assert_cmpstr (library_path, ==, srt_egl_icd_get_library_path (icd)); g_assert_cmpstr (resolved_property, ==, resolved); + g_assert_cmpint (issues, ==, srt_egl_icd_get_issues (icd)); if (error_property == NULL) { @@ -542,15 +553,13 @@ test_icd_egl (Fixture *f, g_autoptr(SrtObjectList) icds = NULL; g_autofree gchar *resolved = NULL; const GList *iter; - const char * const multiarchs[] = { "mock-abi", NULL }; + const char * const multiarchs[] = { "x86_64-mock-abi", NULL }; srt_system_info_set_environ (info, f->fake_icds_envp); srt_system_info_set_sysroot (info, f->sysroot); + srt_system_info_set_helpers_path (info, f->builddir); - if (config != NULL && config->icd_mode == ICD_MODE_FLATPAK) - icds = srt_system_info_list_egl_icds (info, multiarchs); - else - icds = srt_system_info_list_egl_icds (info, NULL); + icds = srt_system_info_list_egl_icds (info, multiarchs); for (iter = icds; iter != NULL; iter = iter->next) { @@ -591,24 +600,40 @@ test_icd_egl (Fixture *f, g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/egl1/BBB.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/egl1/a.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/egl1/b.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); + iter = iter->next; + g_assert_nonnull (iter); + g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, + "/egl1/soname_zlib_dup.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_DUPLICATED); + assert_egl_icd_no_error (iter->data); + iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/egl1/z.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_UNSUPPORTED); assert_egl_icd_has_error (iter->data); iter = iter->next; @@ -620,6 +645,16 @@ test_icd_egl (Fixture *f, "/opt/libEGL_myvendor.so"); resolved = srt_egl_icd_resolve_library_path (iter->data); g_assert_cmpstr (resolved, ==, "/opt/libEGL_myvendor.so"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); + + iter = iter->next; + g_assert_nonnull (iter); + g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, + "/egl2/soname_zlib.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_DUPLICATED); + assert_egl_icd_no_error (iter->data); iter = iter->next; g_assert_null (iter); @@ -629,26 +664,36 @@ test_icd_egl (Fixture *f, iter = icds; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/not-a-file"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/null.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/false.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/str.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/no-library.json"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); iter = iter->next; @@ -664,6 +709,8 @@ test_icd_egl (Fixture *f, g_assert_true (g_str_has_suffix (path, "/fake-icds/not-a-file")); g_assert_true (g_path_is_absolute (path)); assert_egl_icd_has_error (iter->data); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -676,6 +723,8 @@ test_icd_egl (Fixture *f, "libEGL_mesa.so.0"); resolved = srt_egl_icd_resolve_library_path (iter->data); g_assert_cmpstr (resolved, ==, "libEGL_mesa.so.0"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_nonnull (iter); @@ -684,6 +733,8 @@ test_icd_egl (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/null.json", path); assert_egl_icd_has_error (iter->data); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -692,6 +743,8 @@ test_icd_egl (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/false.json", path); assert_egl_icd_has_error (iter->data); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -700,6 +753,8 @@ test_icd_egl (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/str.json", path); assert_egl_icd_has_error (iter->data); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -708,24 +763,28 @@ test_icd_egl (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/no-library.json", path); assert_egl_icd_has_error (iter->data); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_null (iter); } else if (config != NULL && config->icd_mode == ICD_MODE_FLATPAK) { - SrtEglIcd *other; + g_autoptr(SrtEglIcd) other = NULL; iter = icds; g_assert_nonnull (iter); g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, - "/usr/lib/mock-abi/GL/glvnd/egl_vendor.d/relative.json"); + "/usr/lib/x86_64-mock-abi/GL/glvnd/egl_vendor.d/relative.json"); assert_egl_icd_no_error (iter->data); g_assert_cmpstr (srt_egl_icd_get_library_path (iter->data), ==, "../libEGL_relative.so"); resolved = srt_egl_icd_resolve_library_path (iter->data); g_assert_cmpstr (resolved, ==, - "/usr/lib/mock-abi/GL/glvnd/egl_vendor.d/../libEGL_relative.so"); + "/usr/lib/x86_64-mock-abi/GL/glvnd/egl_vendor.d/../libEGL_relative.so"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); other = srt_egl_icd_new_replace_library_path (iter->data, "/run/host/libEGL.so"); @@ -737,7 +796,8 @@ test_icd_egl (Fixture *f, srt_egl_icd_get_json_path (iter->data)); g_assert_cmpstr (srt_egl_icd_get_library_path (other), ==, "/run/host/libEGL.so"); - g_object_unref (other); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_null (iter); @@ -751,6 +811,8 @@ test_icd_egl (Fixture *f, g_assert_cmpstr (srt_egl_icd_get_json_path (iter->data), ==, "/etc/glvnd/egl_vendor.d/invalid.json"); /* This one is invalid. */ + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_egl_icd_has_error (iter->data); iter = iter->next; @@ -762,6 +824,8 @@ test_icd_egl (Fixture *f, "libEGL_mesa.so.0"); resolved = srt_egl_icd_resolve_library_path (iter->data); g_assert_cmpstr (resolved, ==, "libEGL_mesa.so.0"); + g_assert_cmpint (srt_egl_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_null (iter); @@ -776,6 +840,7 @@ assert_vulkan_icd (SrtVulkanIcd *icd) { g_autoptr(GError) error = NULL; g_autoptr(GError) error_property = NULL; + SrtLoadableIssues issues; g_autofree gchar *api_version = NULL; g_autofree gchar *json_path = NULL; g_autofree gchar *library_path = NULL; @@ -787,6 +852,7 @@ assert_vulkan_icd (SrtVulkanIcd *icd) g_object_get (icd, "api-version", &api_version, "error", &error_property, + "issues", &issues, "json-path", &json_path, "library-path", &library_path, "resolved-library-path", &resolved_property, @@ -801,6 +867,7 @@ assert_vulkan_icd (SrtVulkanIcd *icd) g_assert_cmpstr (api_version, ==, srt_vulkan_icd_get_api_version (icd)); g_assert_cmpstr (library_path, ==, srt_vulkan_icd_get_library_path (icd)); g_assert_cmpstr (resolved_property, ==, resolved); + g_assert_cmpint (issues, ==, srt_vulkan_icd_get_issues (icd)); if (error_property == NULL) { @@ -870,15 +937,13 @@ test_icd_vulkan (Fixture *f, g_autoptr(SrtObjectList) icds = NULL; const GList *iter; g_autofree gchar *resolved = NULL; - const char * const multiarchs[] = { "mock-abi", NULL }; + const char * const multiarchs[] = { "x86_64-mock-abi", NULL }; srt_system_info_set_environ (info, f->fake_icds_envp); srt_system_info_set_sysroot (info, f->sysroot); + srt_system_info_set_helpers_path (info, f->builddir); - if (config != NULL && config->icd_mode == ICD_MODE_FLATPAK) - icds = srt_system_info_list_vulkan_icds (info, multiarchs); - else - icds = srt_system_info_list_vulkan_icds (info, NULL); + icds = srt_system_info_list_vulkan_icds (info, multiarchs); for (iter = icds; iter != NULL; iter = iter->next) { @@ -905,37 +970,51 @@ test_icd_vulkan (Fixture *f, iter = icds; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, "/not-a-file"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_vulkan_icd_has_error (iter->data); other = srt_vulkan_icd_new_replace_library_path (iter->data, "/run/host/vulkan_icd.so"); /* Copying an invalid ICD yields another invalid ICD. */ + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_vulkan_icd_has_error (iter->data); g_object_unref (other); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, "/null.json"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_vulkan_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, "/false.json"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_vulkan_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, "/str.json"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_vulkan_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, "/no-library.json"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_vulkan_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, "/no-api-version.json"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); assert_vulkan_icd_has_error (iter->data); iter = iter->next; @@ -951,6 +1030,8 @@ test_icd_vulkan (Fixture *f, g_assert_true (g_str_has_suffix (path, "/fake-icds/not-a-file")); g_assert_true (g_path_is_absolute (path)); assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -960,8 +1041,10 @@ test_icd_vulkan (Fixture *f, assert_same_file ("fake-icds/usr/share/vulkan/icd.d/intel_icd.x86_64.json", path); assert_vulkan_icd_no_error (iter->data); g_assert_cmpstr (srt_vulkan_icd_get_library_path (iter->data), ==, - "/usr/lib/x86_64-linux-gnu/libvulkan_intel.so"); + "/usr/lib/x86_64-mock-abi/libvulkan_intel.so"); g_assert_cmpstr (srt_vulkan_icd_get_api_version (iter->data), ==, "1.1.102"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_nonnull (iter); @@ -970,6 +1053,8 @@ test_icd_vulkan (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/null.json", path); assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -978,6 +1063,8 @@ test_icd_vulkan (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/false.json", path); assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -986,6 +1073,8 @@ test_icd_vulkan (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/str.json", path); assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -994,6 +1083,8 @@ test_icd_vulkan (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/no-library.json", path); assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -1002,6 +1093,8 @@ test_icd_vulkan (Fixture *f, g_assert_true (g_path_is_absolute (path)); assert_same_file ("fake-icds/no-api-version.json", path); assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_null (iter); @@ -1027,23 +1120,27 @@ test_icd_vulkan (Fixture *f, g_assert_cmpstr (srt_vulkan_icd_get_api_version (iter->data), ==, "1.2.3"); resolved = srt_vulkan_icd_resolve_library_path (iter->data); g_assert_cmpstr (resolved, ==, "libvulkan_basename.so"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); g_free (resolved); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, - "/usr/lib/mock-abi/GL/vulkan/icd.d/invalid.json"); + "/usr/lib/x86_64-mock-abi/GL/vulkan/icd.d/invalid.json"); /* This has a JSON array, not an object, so loading it fails */ assert_vulkan_icd_has_error (iter->data); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, - "/usr/lib/mock-abi/vulkan/icd.d/relative.json"); + "/usr/lib/x86_64-mock-abi/vulkan/icd.d/relative.json"); assert_vulkan_icd_no_error (iter->data); resolved = srt_vulkan_icd_resolve_library_path (iter->data); g_assert_cmpstr (resolved, ==, - "/usr/lib/mock-abi/vulkan/icd.d/../libvulkan_relative.so"); + "/usr/lib/x86_64-mock-abi/vulkan/icd.d/../libvulkan_relative.so"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_DUPLICATED); g_free (resolved); other = srt_vulkan_icd_new_replace_library_path (iter->data, @@ -1061,6 +1158,9 @@ test_icd_vulkan (Fixture *f, srt_vulkan_icd_get_api_version (iter->data)); g_assert_cmpstr (srt_vulkan_icd_get_library_path (other), ==, "/run/host/vulkan_icd.so"); + /* The %SRT_LOADABLE_ISSUES_DUPLICATED issues flag is preserved */ + g_assert_cmpint (srt_vulkan_icd_get_issues (other), ==, + SRT_LOADABLE_ISSUES_DUPLICATED); g_object_unref (other); iter = iter->next; @@ -1069,10 +1169,12 @@ test_icd_vulkan (Fixture *f, "/usr/local/share/vulkan/icd.d/intel_icd.i686.json"); assert_vulkan_icd_no_error (iter->data); g_assert_cmpstr (srt_vulkan_icd_get_library_path (iter->data), ==, - "/usr/lib/i386-linux-gnu/libvulkan_intel.so"); + "/usr/lib/i386-mock-abi/libvulkan_intel.so"); g_assert_cmpstr (srt_vulkan_icd_get_api_version (iter->data), ==, "1.1.102"); resolved = srt_vulkan_icd_resolve_library_path (iter->data); - g_assert_cmpstr (resolved, ==, "/usr/lib/i386-linux-gnu/libvulkan_intel.so"); + g_assert_cmpstr (resolved, ==, "/usr/lib/i386-mock-abi/libvulkan_intel.so"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_nonnull (iter); @@ -1080,15 +1182,20 @@ test_icd_vulkan (Fixture *f, "/usr/share/vulkan/icd.d/intel_icd.x86_64.json"); assert_vulkan_icd_no_error (iter->data); g_assert_cmpstr (srt_vulkan_icd_get_library_path (iter->data), ==, - "/usr/lib/x86_64-linux-gnu/libvulkan_intel.so"); + "/usr/lib/x86_64-mock-abi/libvulkan_intel.so"); g_assert_cmpstr (srt_vulkan_icd_get_api_version (iter->data), ==, "1.1.102"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_nonnull (iter); g_assert_cmpstr (srt_vulkan_icd_get_json_path (iter->data), ==, - "/home/.local/share/vulkan/icd.d/invalid.json"); - /* This one lacks the required format version */ - assert_vulkan_icd_has_error (iter->data); + "/home/.local/share/vulkan/icd.d/relative_new.json"); + assert_vulkan_icd_no_error (iter->data); + g_assert_cmpstr (srt_vulkan_icd_get_library_path (iter->data), ==, + "/usr/lib/x86_64-mock-abi/vulkan/icd.d/../libvulkan_relative.so"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_DUPLICATED); iter = iter->next; g_assert_null (iter); @@ -1103,6 +1210,8 @@ test_icd_vulkan (Fixture *f, /* Not format 1.0.x, so we can't be confident that we're reading * it correctly */ assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_UNSUPPORTED); iter = iter->next; g_assert_nonnull (iter); @@ -1115,6 +1224,8 @@ test_icd_vulkan (Fixture *f, g_assert_cmpstr (srt_vulkan_icd_get_api_version (iter->data), ==, "1.2.3"); resolved = srt_vulkan_icd_resolve_library_path (iter->data); g_assert_cmpstr (resolved, ==, "libvulkan_basename.so"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_nonnull (iter); @@ -1125,6 +1236,8 @@ test_icd_vulkan (Fixture *f, /* Not format 1.0.x, so we can't be confident that we're reading * it correctly */ assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_UNSUPPORTED); iter = iter->next; g_assert_nonnull (iter); @@ -1135,6 +1248,8 @@ test_icd_vulkan (Fixture *f, "/datahome/vulkan/icd.d/invalid.json"); /* Missing API version */ assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -1145,6 +1260,8 @@ test_icd_vulkan (Fixture *f, "/home/.local/share/vulkan/icd.d/invalid.json"); /* This one lacks the required format version */ assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_null (iter); @@ -1157,6 +1274,8 @@ test_icd_vulkan (Fixture *f, "/etc/xdg/vulkan/icd.d/invalid.json"); /* This is not valid JSON (it's an empty file) so loading it fails */ assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_nonnull (iter); @@ -1168,6 +1287,8 @@ test_icd_vulkan (Fixture *f, g_assert_cmpstr (srt_vulkan_icd_get_api_version (iter->data), ==, "1.2.3"); resolved = srt_vulkan_icd_resolve_library_path (iter->data); g_assert_cmpstr (resolved, ==, "libvulkan_basename.so"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); g_free (resolved); iter = iter->next; @@ -1176,10 +1297,12 @@ test_icd_vulkan (Fixture *f, "/usr/local/share/vulkan/icd.d/intel_icd.i686.json"); assert_vulkan_icd_no_error (iter->data); g_assert_cmpstr (srt_vulkan_icd_get_library_path (iter->data), ==, - "/usr/lib/i386-linux-gnu/libvulkan_intel.so"); + "/usr/lib/i386-mock-abi/libvulkan_intel.so"); g_assert_cmpstr (srt_vulkan_icd_get_api_version (iter->data), ==, "1.1.102"); resolved = srt_vulkan_icd_resolve_library_path (iter->data); - g_assert_cmpstr (resolved, ==, "/usr/lib/i386-linux-gnu/libvulkan_intel.so"); + g_assert_cmpstr (resolved, ==, "/usr/lib/i386-mock-abi/libvulkan_intel.so"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_nonnull (iter); @@ -1187,8 +1310,10 @@ test_icd_vulkan (Fixture *f, "/usr/share/vulkan/icd.d/intel_icd.x86_64.json"); assert_vulkan_icd_no_error (iter->data); g_assert_cmpstr (srt_vulkan_icd_get_library_path (iter->data), ==, - "/usr/lib/x86_64-linux-gnu/libvulkan_intel.so"); + "/usr/lib/x86_64-mock-abi/libvulkan_intel.so"); g_assert_cmpstr (srt_vulkan_icd_get_api_version (iter->data), ==, "1.1.102"); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_NONE); iter = iter->next; g_assert_nonnull (iter); @@ -1196,6 +1321,8 @@ test_icd_vulkan (Fixture *f, "/home/.local/share/vulkan/icd.d/invalid.json"); /* This one lacks the required format version */ assert_vulkan_icd_has_error (iter->data); + g_assert_cmpint (srt_vulkan_icd_get_issues (iter->data), ==, + SRT_LOADABLE_ISSUES_CANNOT_LOAD); iter = iter->next; g_assert_null (iter); @@ -1213,6 +1340,7 @@ typedef struct * JSON with multiple layers, we write it to the filesystem as separated JSON * files. So the output is not always exactly the same as the input JSON */ const gchar *json_to_compare; + SrtLoadableIssues issues; const gchar *error_message_suffix; const gchar *error_domain; gint error_code; @@ -1321,12 +1449,14 @@ static const VulkanLayersTest vulkan_layers_test[] = { // incomplete_layer.json { + .issues = SRT_LOADABLE_ISSUES_CANNOT_LOAD, .error_message_suffix = "cannot be parsed because it is missing a required field", .error_domain = "g-io-error-quark", .error_code = G_IO_ERROR_FAILED, }, // newer_layer.json { + .issues = SRT_LOADABLE_ISSUES_UNSUPPORTED, .error_message_suffix = "is not supported", .error_domain = "g-io-error-quark", .error_code = G_IO_ERROR_FAILED, @@ -1337,7 +1467,7 @@ static const VulkanLayersTest vulkan_layers_test[] = { .description = "Meta layer", .sysroot = "fedora", - .vk_layer_path = "/custom_path", + .vk_layer_path = "/custom_path:/custom_path2:/custom_path3", .explicit_layers = { { @@ -1351,6 +1481,39 @@ static const VulkanLayersTest vulkan_layers_test[] = }, .json_to_compare = "custom_path/meta_layer.json", }, + { + .name = "VK_LAYER_MANGOHUD_overlay", + .description = "Vulkan Hud Overlay", + .library_path = "/usr/$LIB/libMangoHud.so", + .api_version = "1.2.135", + .json_to_compare = "custom_path2/MangoHud.json", + .issues = SRT_LOADABLE_ISSUES_DUPLICATED, + }, + { + .name = "VK_LAYER_MANGOHUD_overlay", + .description = "Vulkan Hud Overlay", + .library_path = "/usr/lib32/libMangoHud.so", + .api_version = "1.2.135", + .json_to_compare = "custom_path3/MangoHud_i386.json", + .issues = SRT_LOADABLE_ISSUES_DUPLICATED, + }, + }, + .implicit_layers = + { + // incomplete_layer.json + { + .issues = SRT_LOADABLE_ISSUES_CANNOT_LOAD, + .error_message_suffix = "cannot be parsed because it is missing a required field", + .error_domain = "g-io-error-quark", + .error_code = G_IO_ERROR_FAILED, + }, + // newer_layer.json + { + .issues = SRT_LOADABLE_ISSUES_UNSUPPORTED, + .error_message_suffix = "is not supported", + .error_domain = "g-io-error-quark", + .error_code = G_IO_ERROR_FAILED, + }, }, }, @@ -1381,6 +1544,7 @@ _test_layer_values (SrtVulkanLayer *layer, srt_vulkan_layer_get_library_path (layer)); g_assert_cmpstr (test->api_version, ==, srt_vulkan_layer_get_api_version (layer)); + g_assert_cmpint (test->issues, ==, srt_vulkan_layer_get_issues (layer)); layer_dup = srt_vulkan_layer_new_replace_library_path (layer, "/run/host/vulkan_layer.json"); @@ -1390,6 +1554,7 @@ _test_layer_values (SrtVulkanLayer *layer, srt_vulkan_layer_get_description (layer_dup)); g_assert_cmpstr (test->api_version, ==, srt_vulkan_layer_get_api_version (layer_dup)); + g_assert_cmpint (test->issues, ==, srt_vulkan_layer_get_issues (layer_dup)); /* If library_path was NULL, this means we have a meta-layer. So even * after calling the replace function we still expect to have a @@ -1440,6 +1605,7 @@ test_layer_vulkan (Fixture *f, g_autofree gchar *tmp_dir = NULL; g_autoptr(GError) error = NULL; gsize i; + const char * const multiarchs[] = { "x86_64-mock-abi", "i386-mock-abi", NULL }; tmp_dir = g_dir_make_tmp ("layers-test-XXXXXX", &error); g_assert_no_error (error); @@ -1464,6 +1630,9 @@ test_layer_vulkan (Fixture *f, sysroot = g_build_filename (f->sysroots, test->sysroot, NULL); + vulkan_layer_envp = g_environ_setenv (vulkan_layer_envp, "SRT_TEST_SYSROOT", + sysroot, TRUE); + if (test->vk_layer_path == NULL) vulkan_layer_envp = g_environ_unsetenv (vulkan_layer_envp, "VK_LAYER_PATH"); else @@ -1493,6 +1662,8 @@ test_layer_vulkan (Fixture *f, g_assert_nonnull (info); srt_system_info_set_environ (info, vulkan_layer_envp); srt_system_info_set_sysroot (info, sysroot); + srt_system_info_set_multiarch_tuples (info, multiarchs); + srt_system_info_set_helpers_path (info, f->builddir); explicit_layers = srt_system_info_list_explicit_vulkan_layers (info); @@ -2022,12 +2193,12 @@ test_dri_flatpak (Fixture *f, g_autofree gchar *sysroot = NULL; g_autoptr(SrtObjectList) dri = NULL; g_autoptr(SrtObjectList) va_api = NULL; - const gchar *multiarch_tuples[] = { "mock-abi", NULL }; - const gchar *dri_suffixes[] = {"/usr/lib/mock-abi/GL/lib/dri/i965_dri.so", + const gchar *multiarch_tuples[] = { "x86_64-mock-abi", NULL }; + const gchar *dri_suffixes[] = {"/usr/lib/x86_64-mock-abi/GL/lib/dri/i965_dri.so", NULL}; - const gchar *va_api_suffixes[] = {"/usr/lib/mock-abi/dri/radeonsi_drv_video.so", - "/usr/lib/mock-abi/dri/intel-vaapi-driver/i965_drv_video.so", - "/usr/lib/mock-abi/GL/lib/dri/r600_drv_video.so", + const gchar *va_api_suffixes[] = {"/usr/lib/x86_64-mock-abi/dri/radeonsi_drv_video.so", + "/usr/lib/x86_64-mock-abi/dri/intel-vaapi-driver/i965_drv_video.so", + "/usr/lib/x86_64-mock-abi/GL/lib/dri/r600_drv_video.so", NULL}; sysroot = g_build_filename (f->sysroots, "flatpak-example", NULL); @@ -2173,11 +2344,11 @@ static const VdpauTest vdpau_test[] = { .description = "flatpak", - .multiarch_tuple = "mock-abi", + .multiarch_tuple = "x86_64-mock-abi", .sysroot = "flatpak-example", .vdpau_suffixes = { - "/usr/lib/mock-abi/vdpau/libvdpau_radeonsi.so.1", + "/usr/lib/x86_64-mock-abi/vdpau/libvdpau_radeonsi.so.1", NULL }, }, diff --git a/tests/json-report/full-good-report.json b/tests/json-report/full-good-report.json index 223105bec5fc0834c6b421a2ea6b856e0bfaefaf..d12799f1e9714fe354508ff860a4cd1c218dafc8 100644 --- a/tests/json-report/full-good-report.json +++ b/tests/json-report/full-good-report.json @@ -261,7 +261,8 @@ "icds" : [ { "json_path" : "/usr/share/glvnd/egl_vendor.d/51_mesa.json", - "library_path" : "libEGL_mesa.so.0" + "library_path" : "libEGL_mesa.so.0", + "issues" : [] } ] }, @@ -270,7 +271,8 @@ { "json_path" : "/usr/share/vulkan/icd.d/amd_icd64.json", "library_path" : "/usr/lib/amdvlk64.so", - "api_version" : "1.2.136" + "api_version" : "1.2.136", + "issues" : [] } ], "explicit_layers" : [ @@ -281,7 +283,8 @@ "type": "GLOBAL", "api_version" : "1.1.73", "implementation_version": "1", - "library_path" : "libVkLayer_MESA_overlay.so" + "library_path" : "libVkLayer_MESA_overlay.so", + "issues" : [] } ], "implicit_layers" : [ @@ -292,7 +295,8 @@ "type": "GLOBAL", "api_version" : "1.2.135", "implementation_version": "1", - "library_path" : "/usr/$LIB/libMangoHud.so" + "library_path" : "/usr/$LIB/libMangoHud.so", + "issues" : [] } ] }, diff --git a/tests/json-report/partial-report.json b/tests/json-report/partial-report.json index a76188cefe1f6777f7d75fd3ec4971aa6fab6211..b3e13c453f3ebe50dd1fd7f60c785ab2eb2f98b7 100644 --- a/tests/json-report/partial-report.json +++ b/tests/json-report/partial-report.json @@ -59,13 +59,45 @@ "icds" : [ { "json_path" : "/usr/share/vulkan/icd.d/amd_icd64.json", - "error" : "Something went wrong" + "error" : "Something went wrong", + "issues" : [ + "cannot-load" + ] + } + ], + "explicit_layers" : [ + { + "json_path" : "/usr/share/vulkan/explicit_layer.d/VkLayer_MESA_overlay.json", + "name": "VK_LAYER_MESA_overlay", + "description": "Mesa Overlay layer", + "type": "GLOBAL", + "api_version" : "1.1.73", + "implementation_version": "1", + "library_path" : "libVkLayer_MESA_overlay.so", + "issues" : [ + "duplicated" + ] + }, + { + "json_path" : "/usr/share/vulkan/explicit_layer.d/VkLayer_new.json", + "name": "VK_LAYER_MESA_overlay", + "description": "Mesa Overlay layer", + "type": "GLOBAL", + "api_version" : "1.1.73", + "implementation_version": "1", + "library_path" : "/usr/lib/libVkLayer_MESA_overlay.so", + "issues" : [ + "duplicated" + ] } ], "implicit_layers" : [ { "json_path" : "/usr/share/vulkan/implicit_layer.d/MangoHud.json", - "error": "Something went wrong" + "error": "Something went wrong", + "issues" : [ + "cannot-load" + ] } ] }, diff --git a/tests/meson.build b/tests/meson.build index a6b4f79dea839308be9cd30ceb09412129d5f9c6..15599a8c47bdcd730ec9e07b6aeeae4faeaf29b5 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -116,6 +116,7 @@ install_subdir('expectations_with_missings', install_dir : tests_dir) # than one *.json file in any directory that we are going to scan for # Vulkan *.json files. (The order of EGL *.json files is well-defined.) install_subdir('fake-icds', install_dir : tests_dir) +install_subdir('fake-icds-flatpak', install_dir : tests_dir) install_subdir('fake-steam-runtime', install_dir : tests_dir) install_subdir('input-monitor-outputs', install_dir : tests_dir) install_subdir('json-report', install_dir : tests_dir) @@ -307,7 +308,6 @@ executable( # Helpers with a GLib dependency and one source file of the same name # as the helper itself. foreach helper : [ - 'mock-abi-inspect-library', 'mock-bad-wflinfo', 'x86_64-mock-debian-inspect-library', 'i386-mock-debian-inspect-library', @@ -335,6 +335,7 @@ foreach arch : [ 'x86_64', ] foreach helper : [ + 'mock-abi-inspect-library', 'mock-container-capsule-capture-libs', 'mock-debian-capsule-capture-libs', 'mock-fedora-capsule-capture-libs', diff --git a/tests/mock-abi-inspect-library.c b/tests/mock-abi-inspect-library.c index f04e71e1de3aa710ac8151ed09b8851f7a16d3d5..804553f768444ff3698d5d90ca0cc2e5ebcb9dd3 100644 --- a/tests/mock-abi-inspect-library.c +++ b/tests/mock-abi-inspect-library.c @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Collabora Ltd. + * Copyright © 2019-2021 Collabora Ltd. * * SPDX-License-Identifier: MIT * @@ -33,15 +33,61 @@ main (int argc, { g_return_val_if_fail (argc == 2, EXIT_FAILURE); +#if defined(MOCK_ARCHITECTURE_x86_64) + const gchar *multiarch = "x86_64-mock-abi"; + const gchar *lib_dir = "lib64"; + const gchar *wrong_lib_dir = "32/"; + const gchar *wrong_abi = "i386"; +#else + const gchar *multiarch = "i386-mock-abi"; + const gchar *lib_dir = "lib32"; + const gchar *wrong_lib_dir = "64/"; + const gchar *wrong_abi = "x86_64"; +#endif + + int ret = EXIT_FAILURE; + gchar **split = NULL; + gchar *path = NULL; gchar **envp = g_get_environ (); - gchar *path = g_build_filename (g_environ_getenv (envp, "SRT_TEST_SYSROOT"), "usr", "lib", "mock-abi", argv[1], NULL); + + if (argv[1][0] == '/') + { + /* This is a very naive check to simulate the exit error that occurrs + * when we request a library that is of the wrong ELF class. */ + if (g_strstr_len (argv[1], -1, wrong_abi) != NULL) + goto out; + if (g_strstr_len (argv[1], -1, wrong_lib_dir) != NULL) + goto out; + + /* If the path is already absolute, just prepend the sysroot */ + path = g_build_filename (g_environ_getenv (envp, "SRT_TEST_SYSROOT"), argv[1], NULL); + + } + else + { + path = g_build_filename (g_environ_getenv (envp, "SRT_TEST_SYSROOT"), "usr", + "lib", multiarch, argv[1], NULL); + } + + /* When loading a library by its absolute or relative path, glib expands + * dynamic string tokens: LIB, PLATFORM, ORIGIN. + * We can just check for $LIB because it's the only one in use right now + * in the MangoHUD test. */ + split = g_strsplit (path, "$LIB", -1); + g_free (path); + path = g_strjoinv (lib_dir, split); /* Return a JSON like if we found the given soname in a mock-abi lib folder */ printf ("{\n\t\"%s\": {\n" "\t\t\"path\": \"%s\"\n" "\t}\n" "}\n", argv[1], path); + + ret = EXIT_SUCCESS; + +out: g_free (path); g_strfreev (envp); - return 0; + g_strfreev (split); + return ret; } diff --git a/tests/pressure-vessel/containers.py b/tests/pressure-vessel/containers.py index 9bea17f217bcd363628a453355a20fba5997465a..549366f692a14b25e65fe8d8f8e1086b6a2f945d 100755 --- a/tests/pressure-vessel/containers.py +++ b/tests/pressure-vessel/containers.py @@ -370,6 +370,7 @@ class TestContainers(BaseTest): cls.host_srsi = host_srsi if host_srsi is not None: + logger.info("We have the host srsi %s", host_srsi) with open( os.path.join(cls.artifacts, 'host-srsi.json'), 'w', @@ -397,6 +398,7 @@ class TestContainers(BaseTest): ) as reader: cls.host_srsi_parsed = json.load(reader) else: + logger.info("The host srsi is missing") os.environ.pop('HOST_STEAM_RUNTIME_SYSTEM_INFO_JSON', None) cls.host_srsi_parsed = {} diff --git a/tests/pressure-vessel/inside-runtime.py b/tests/pressure-vessel/inside-runtime.py index 3914843e70a3427bc07e1afb8f14ac66c85c41b8..819c1c6be88a1c5f98c4eeca21b7c767c00be2ae 100755 --- a/tests/pressure-vessel/inside-runtime.py +++ b/tests/pressure-vessel/inside-runtime.py @@ -251,6 +251,17 @@ class TestInsideRuntime(BaseTest): cache, Path('/etc/ld-i686-pc-linux-gnu.cache').resolve() ) + def is_loadable_duplicated(self, srsi_parsed, key, sub_key) -> bool: + if srsi_parsed is None: + return False + + if key in srsi_parsed and sub_key in srsi_parsed[key]: + for loadable in srsi_parsed[key][sub_key]: + if "duplicated" in loadable.get('issues', ''): + return True + + return False + def test_srsi(self) -> None: overrides = Path('/overrides').resolve() @@ -401,6 +412,30 @@ class TestInsideRuntime(BaseTest): self.assertIn('architectures', parsed) + if host_parsed: + # If we have an ICD or Layer flagged as duplicated in the + # container, we expect that the same thing to happen in the + # host too. + self.assertEqual( + self.is_loadable_duplicated(parsed, 'egl', 'icds'), + self.is_loadable_duplicated(host_parsed, 'egl', 'icds'), + ) + + self.assertEqual( + self.is_loadable_duplicated(parsed, 'vulkan', 'icds'), + self.is_loadable_duplicated(host_parsed, 'vulkan', 'icds'), + ) + + self.assertEqual( + self.is_loadable_duplicated(parsed, 'vulkan', 'explicit_layers'), + self.is_loadable_duplicated(host_parsed, 'vulkan', 'explicit_layers'), + ) + + self.assertEqual( + self.is_loadable_duplicated(parsed, 'vulkan', 'implicit_layers'), + self.is_loadable_duplicated(host_parsed, 'vulkan', 'implicit_layers'), + ) + for multiarch in parsed['architectures']: if not (Path('/usr/lib') / multiarch).is_dir(): continue diff --git a/tests/system-info.c b/tests/system-info.c index 8c99e03d6274b780a1f8e3375d4d95f5cf683e81..88decfb5d9fd84565db211c85b032d3aa8dc6214 100644 --- a/tests/system-info.c +++ b/tests/system-info.c @@ -2547,6 +2547,7 @@ typedef struct const gchar *json_path; const gchar *library_path; const gchar *api_version; + SrtLoadableIssues issues; const gchar *error_domain; const gchar *error_message; int error_code; @@ -2561,6 +2562,7 @@ typedef struct const gchar *api_version; const gchar *implementation_version; const gchar *library_path; + SrtLoadableIssues issues; const gchar *error_domain; const gchar *error_message; int error_code; @@ -3094,6 +3096,29 @@ static const JsonTest json_test[] = .error_message = "Something went wrong", }, }, + .vulkan_explicit_layer = + { + { + .json_path = "/usr/share/vulkan/explicit_layer.d/VkLayer_MESA_overlay.json", + .name = "VK_LAYER_MESA_overlay", + .description = "Mesa Overlay layer", + .type = "GLOBAL", + .api_version = "1.1.73", + .implementation_version = "1", + .library_path = "libVkLayer_MESA_overlay.so", + .issues = SRT_LOADABLE_ISSUES_DUPLICATED, + }, + { + .json_path = "/usr/share/vulkan/explicit_layer.d/VkLayer_new.json", + .name = "VK_LAYER_MESA_overlay", + .description = "Mesa Overlay layer", + .type = "GLOBAL", + .api_version = "1.1.73", + .implementation_version = "1", + .library_path = "/usr/lib/libVkLayer_MESA_overlay.so", + .issues = SRT_LOADABLE_ISSUES_DUPLICATED, + }, + }, .vulkan_implicit_layer = { { @@ -3101,6 +3126,7 @@ static const JsonTest json_test[] = .error_domain = "g-io-error-quark", /* Default domain */ .error_code = G_IO_ERROR_FAILED, /* Default error code */ .error_message = "Something went wrong", + .issues = SRT_LOADABLE_ISSUES_CANNOT_LOAD, }, }, .xdg_portal = @@ -3603,6 +3629,8 @@ json_parsing (Fixture *f, error = NULL; g_assert_cmpstr (t->vulkan_explicit_layer[j].json_path, ==, srt_vulkan_layer_get_json_path (iter->data)); + g_assert_cmpint (t->vulkan_explicit_layer[j].issues, ==, + srt_vulkan_layer_get_issues (iter->data)); if (srt_vulkan_layer_check_error (iter->data, &error)) { g_assert_cmpstr (t->vulkan_explicit_layer[j].name, ==, @@ -3633,6 +3661,8 @@ json_parsing (Fixture *f, error = NULL; g_assert_cmpstr (t->vulkan_implicit_layer[j].json_path, ==, srt_vulkan_layer_get_json_path (iter->data)); + g_assert_cmpint (t->vulkan_implicit_layer[j].issues, ==, + srt_vulkan_layer_get_issues (iter->data)); if (srt_vulkan_layer_check_error (iter->data, &error)) { g_assert_cmpstr (t->vulkan_implicit_layer[j].name, ==,