90 lines
3.0 KiB
Diff
90 lines
3.0 KiB
Diff
From 15331267d11713906361ddd767c3e04ae46d9a83 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <marcandre.lureau@redhat.com>
|
|
Date: Thu, 29 Jul 2021 04:55:50 -0400
|
|
Subject: [PATCH 01/14] glib-compat: add g_unix_get_passwd_entry_qemu()
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
RH-Author: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
Message-id: <20210609100615.2501448-2-marcandre.lureau@redhat.com>
|
|
Patchwork-id: 101687
|
|
O-Subject: [RHEL-8.5.0 qemu-kvm PATCH 1/4] glib-compat: add g_unix_get_passwd_entry_qemu()
|
|
Bugzilla: 1967716
|
|
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
RH-Acked-by: Michal Privoznik <mprivozn@redhat.com>
|
|
|
|
From: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
|
|
The glib function was introduced in 2.64. It's a safer version of
|
|
getpwnam, and also simpler to use than getpwnam_r.
|
|
|
|
Currently, it's only use by the next patch in qemu-ga, which doesn't
|
|
(well well...) need the thread safety guarantees. Since the fallback
|
|
version is still unsafe, I would rather keep the _qemu postfix, to make
|
|
sure it's not being misused by mistake. When/if necessary, we can
|
|
implement a safer fallback and drop the _qemu suffix.
|
|
|
|
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
|
|
*fix checkpatch warnings about newlines before/after block comments
|
|
Signed-off-by: Michael Roth <michael.roth@amd.com>
|
|
|
|
(cherry picked from commit 6d593ab451c490b0ca941c6a519894231634751e)
|
|
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
---
|
|
include/glib-compat.h | 28 ++++++++++++++++++++++++++++
|
|
1 file changed, 28 insertions(+)
|
|
|
|
diff --git a/include/glib-compat.h b/include/glib-compat.h
|
|
index 0b0ec76299..695a96f7ea 100644
|
|
--- a/include/glib-compat.h
|
|
+++ b/include/glib-compat.h
|
|
@@ -30,6 +30,11 @@
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include <glib.h>
|
|
+#if defined(G_OS_UNIX)
|
|
+#include <glib-unix.h>
|
|
+#include <sys/types.h>
|
|
+#include <pwd.h>
|
|
+#endif
|
|
|
|
/*
|
|
* Note that because of the GLIB_VERSION_MAX_ALLOWED constant above, allowing
|
|
@@ -72,6 +77,29 @@
|
|
gint g_poll_fixed(GPollFD *fds, guint nfds, gint timeout);
|
|
#endif
|
|
|
|
+#if defined(G_OS_UNIX)
|
|
+/*
|
|
+ * Note: The fallback implementation is not MT-safe, and it returns a copy of
|
|
+ * the libc passwd (must be g_free() after use) but not the content. Because of
|
|
+ * these important differences the caller must be aware of, it's not #define for
|
|
+ * GLib API substitution.
|
|
+ */
|
|
+static inline struct passwd *
|
|
+g_unix_get_passwd_entry_qemu(const gchar *user_name, GError **error)
|
|
+{
|
|
+#if GLIB_CHECK_VERSION(2, 64, 0)
|
|
+ return g_unix_get_passwd_entry(user_name, error);
|
|
+#else
|
|
+ struct passwd *p = getpwnam(user_name);
|
|
+ if (!p) {
|
|
+ g_set_error_literal(error, G_UNIX_ERROR, 0, g_strerror(errno));
|
|
+ return NULL;
|
|
+ }
|
|
+ return (struct passwd *)g_memdup(p, sizeof(*p));
|
|
+#endif
|
|
+}
|
|
+#endif /* G_OS_UNIX */
|
|
+
|
|
#pragma GCC diagnostic pop
|
|
|
|
#endif
|
|
--
|
|
2.27.0
|
|
|