Anthony Liguori | d63c947 | 2013-03-25 10:23:56 -0500 | [diff] [blame] | 1 | /* |
| 2 | * GLIB Compatibility Functions |
| 3 | * |
| 4 | * Copyright IBM, Corp. 2013 |
| 5 | * |
| 6 | * Authors: |
| 7 | * Anthony Liguori <aliguori@us.ibm.com> |
Michael Tokarev | 86946a2 | 2014-05-08 12:30:46 +0400 | [diff] [blame] | 8 | * Michael Tokarev <mjt@tls.msk.ru> |
| 9 | * Paolo Bonzini <pbonzini@redhat.com> |
Anthony Liguori | d63c947 | 2013-03-25 10:23:56 -0500 | [diff] [blame] | 10 | * |
| 11 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 12 | * See the COPYING file in the top-level directory. |
| 13 | * |
| 14 | */ |
| 15 | |
| 16 | #ifndef QEMU_GLIB_COMPAT_H |
| 17 | #define QEMU_GLIB_COMPAT_H |
| 18 | |
Daniel P. Berrangé | e71e8cc | 2018-05-04 16:25:00 +0100 | [diff] [blame] | 19 | /* Ask for warnings for anything that was marked deprecated in |
| 20 | * the defined version, or before. It is a candidate for rewrite. |
| 21 | */ |
Thomas Huth | 0d8caac | 2024-04-18 12:10:50 +0200 | [diff] [blame] | 22 | #define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_66 |
Daniel P. Berrangé | e71e8cc | 2018-05-04 16:25:00 +0100 | [diff] [blame] | 23 | |
| 24 | /* Ask for warnings if code tries to use function that did not |
| 25 | * exist in the defined version. These risk breaking builds |
| 26 | */ |
Thomas Huth | 0d8caac | 2024-04-18 12:10:50 +0200 | [diff] [blame] | 27 | #define GLIB_VERSION_MAX_ALLOWED GLIB_VERSION_2_66 |
Daniel P. Berrangé | e71e8cc | 2018-05-04 16:25:00 +0100 | [diff] [blame] | 28 | |
| 29 | #pragma GCC diagnostic push |
| 30 | #pragma GCC diagnostic ignored "-Wdeprecated-declarations" |
| 31 | |
Anthony Liguori | d63c947 | 2013-03-25 10:23:56 -0500 | [diff] [blame] | 32 | #include <glib.h> |
Marc-André Lureau | 6d593ab | 2020-10-20 12:12:51 +0400 | [diff] [blame] | 33 | #if defined(G_OS_UNIX) |
| 34 | #include <glib-unix.h> |
| 35 | #include <sys/types.h> |
| 36 | #include <pwd.h> |
| 37 | #endif |
Anthony Liguori | d63c947 | 2013-03-25 10:23:56 -0500 | [diff] [blame] | 38 | |
Daniel P. Berrangé | e71e8cc | 2018-05-04 16:25:00 +0100 | [diff] [blame] | 39 | /* |
| 40 | * Note that because of the GLIB_VERSION_MAX_ALLOWED constant above, allowing |
| 41 | * use of functions from newer GLib via this compat header needs a little |
| 42 | * trickery to prevent warnings being emitted. |
| 43 | * |
| 44 | * Consider a function from newer glib-X.Y that we want to use |
| 45 | * |
| 46 | * int g_foo(const char *wibble) |
| 47 | * |
| 48 | * We must define a static inline function with the same signature that does |
Alex Bennée | 3918fe1 | 2022-01-05 13:49:59 +0000 | [diff] [blame] | 49 | * what we need, but with a "_compat" suffix e.g. |
Daniel P. Berrangé | e71e8cc | 2018-05-04 16:25:00 +0100 | [diff] [blame] | 50 | * |
Alex Bennée | 3918fe1 | 2022-01-05 13:49:59 +0000 | [diff] [blame] | 51 | * static inline void g_foo_compat(const char *wibble) |
Daniel P. Berrangé | e71e8cc | 2018-05-04 16:25:00 +0100 | [diff] [blame] | 52 | * { |
| 53 | * #if GLIB_CHECK_VERSION(X, Y, 0) |
| 54 | * g_foo(wibble) |
| 55 | * #else |
| 56 | * g_something_equivalent_in_older_glib(wibble); |
| 57 | * #endif |
| 58 | * } |
| 59 | * |
| 60 | * The #pragma at the top of this file turns off -Wdeprecated-declarations, |
| 61 | * ensuring this wrapper function impl doesn't trigger the compiler warning |
| 62 | * about using too new glib APIs. Finally we can do |
| 63 | * |
Alex Bennée | 3918fe1 | 2022-01-05 13:49:59 +0000 | [diff] [blame] | 64 | * #define g_foo(a) g_foo_compat(a) |
Daniel P. Berrangé | e71e8cc | 2018-05-04 16:25:00 +0100 | [diff] [blame] | 65 | * |
| 66 | * So now the code elsewhere in QEMU, which *does* have the |
| 67 | * -Wdeprecated-declarations warning active, can call g_foo(...) as normal, |
| 68 | * without generating warnings. |
| 69 | */ |
| 70 | |
Philippe Mathieu-Daudé | 2c674fa | 2021-09-03 19:44:44 +0200 | [diff] [blame] | 71 | /* |
| 72 | * g_memdup2_qemu: |
| 73 | * @mem: (nullable): the memory to copy. |
| 74 | * @byte_size: the number of bytes to copy. |
| 75 | * |
| 76 | * Allocates @byte_size bytes of memory, and copies @byte_size bytes into it |
| 77 | * from @mem. If @mem is %NULL it returns %NULL. |
| 78 | * |
| 79 | * This replaces g_memdup(), which was prone to integer overflows when |
| 80 | * converting the argument from a #gsize to a #guint. |
| 81 | * |
| 82 | * This static inline version is a backport of the new public API from |
| 83 | * GLib 2.68, kept internal to GLib for backport to older stable releases. |
| 84 | * See https://gitlab.gnome.org/GNOME/glib/-/issues/2319. |
| 85 | * |
| 86 | * Returns: (nullable): a pointer to the newly-allocated copy of the memory, |
| 87 | * or %NULL if @mem is %NULL. |
| 88 | */ |
| 89 | static inline gpointer g_memdup2_qemu(gconstpointer mem, gsize byte_size) |
| 90 | { |
| 91 | #if GLIB_CHECK_VERSION(2, 68, 0) |
| 92 | return g_memdup2(mem, byte_size); |
| 93 | #else |
| 94 | gpointer new_mem; |
| 95 | |
| 96 | if (mem && byte_size != 0) { |
| 97 | new_mem = g_malloc(byte_size); |
| 98 | memcpy(new_mem, mem, byte_size); |
| 99 | } else { |
| 100 | new_mem = NULL; |
| 101 | } |
| 102 | |
| 103 | return new_mem; |
| 104 | #endif |
| 105 | } |
| 106 | #define g_memdup2(m, s) g_memdup2_qemu(m, s) |
| 107 | |
Paolo Bonzini | 9ba5db4 | 2021-03-16 10:02:49 +0100 | [diff] [blame] | 108 | static inline bool |
| 109 | qemu_g_test_slow(void) |
| 110 | { |
| 111 | static int cached = -1; |
| 112 | if (cached == -1) { |
| 113 | cached = g_test_slow() || getenv("G_TEST_SLOW") != NULL; |
| 114 | } |
| 115 | return cached; |
| 116 | } |
| 117 | |
| 118 | #undef g_test_slow |
| 119 | #undef g_test_thorough |
| 120 | #undef g_test_quick |
| 121 | #define g_test_slow() qemu_g_test_slow() |
| 122 | #define g_test_thorough() qemu_g_test_slow() |
| 123 | #define g_test_quick() (!qemu_g_test_slow()) |
| 124 | |
Daniel P. Berrangé | e71e8cc | 2018-05-04 16:25:00 +0100 | [diff] [blame] | 125 | #pragma GCC diagnostic pop |
| 126 | |
Marc-André Lureau | 8905770 | 2022-04-20 17:26:02 +0400 | [diff] [blame] | 127 | #ifndef G_NORETURN |
| 128 | #define G_NORETURN G_GNUC_NORETURN |
| 129 | #endif |
| 130 | |
Anthony Liguori | d63c947 | 2013-03-25 10:23:56 -0500 | [diff] [blame] | 131 | #endif |