summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059>2013-11-12 03:33:38 +0800
committergusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059>2013-11-12 03:33:38 +0800
commit5a58b4213274969e69bcec518ee766fffe709881 (patch)
tree4e1521a55add10d04f34cd7193ea18084aa0f504
parent69f40bb4a1ef912ad558120dd4283d7daf6739f2 (diff)
downloadmarcuscom-ports-5a58b4213274969e69bcec518ee766fffe709881.tar
marcuscom-ports-5a58b4213274969e69bcec518ee766fffe709881.tar.gz
marcuscom-ports-5a58b4213274969e69bcec518ee766fffe709881.tar.bz2
marcuscom-ports-5a58b4213274969e69bcec518ee766fffe709881.tar.lz
marcuscom-ports-5a58b4213274969e69bcec518ee766fffe709881.tar.xz
marcuscom-ports-5a58b4213274969e69bcec518ee766fffe709881.tar.zst
marcuscom-ports-5a58b4213274969e69bcec518ee766fffe709881.zip
Replace patch-daemon_gdm-session.c. The previous one was sent for review and in would appear glib20 (>2.36.0) already implements that funcionality.
We have 2.38.0 in MC (which will be probably commited to the ports tree at the same time or before gdm3) and 2.36.3. Given that, replacing our previous patch with the backported version in the bug id 687921 [1] could be considered safe. Discussed with: kwm, ajacoutot Obtained from: [1] [1] https://bugzilla.gnome.org/show_bug.cgi?id=687921 git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18879 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--x11/gdm/files/patch-daemon_gdm-session.c67
1 files changed, 57 insertions, 10 deletions
diff --git a/x11/gdm/files/patch-daemon_gdm-session.c b/x11/gdm/files/patch-daemon_gdm-session.c
index fedc0d93f..7754a34fc 100644
--- a/x11/gdm/files/patch-daemon_gdm-session.c
+++ b/x11/gdm/files/patch-daemon_gdm-session.c
@@ -1,11 +1,58 @@
---- daemon/gdm-session.orig.c 2013-08-28 16:29:01.973683917 +0000
-+++ daemon/gdm-session.c 2013-08-28 16:29:10.164681622 +0000
-@@ -980,7 +980,7 @@
- native_credentials = g_credentials_get_native (credentials, G_CREDENTIALS_TYPE_LINUX_UCRED);
- pid = (GPid) ((struct ucred *) native_credentials)->pid;
- #elif defined (__FreeBSD__)
+--- daemon/gdm-session.c
++++ daemon/gdm-session.c
+@@ -970,28 +970,6 @@ allow_worker_function (GDBusAuthObserver *observer,
+ return FALSE;
+ }
+
+-static GPid
+-credentials_get_unix_pid (GCredentials *credentials)
+-{
+- GPid pid = 0;
+- gpointer native_credentials = NULL;
+-
+-#ifdef __linux__
+- native_credentials = g_credentials_get_native (credentials, G_CREDENTIALS_TYPE_LINUX_UCRED);
+- pid = (GPid) ((struct ucred *) native_credentials)->pid;
+-#elif defined (__FreeBSD__)
- native_credentials = g_credentials_get_native (credentials, G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED);
-+ native_credentials = g_credentials_get_native (credentials, G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED);
- pid = (GPid) ((struct cmsgcred *) native_credentials)->cmcred_pid;
- #elif defined (__OpenBSD__)
- native_credentials = g_credentials_get_native (credentials, G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED);
+- pid = (GPid) ((struct cmsgcred *) native_credentials)->cmcred_pid;
+-#elif defined (__OpenBSD__)
+- native_credentials = g_credentials_get_native (credentials, G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED);
+- pid = (GPid) ((struct sockpeercred *) native_credentials)->pid;
+-#else
+-#error "platform not supported, need mechanism to detect pid of connected process"
+-#endif
+-
+- return pid;
+-}
+-
+ static gboolean
+ register_worker (GdmDBusWorkerManager *worker_manager_interface,
+ GDBusMethodInvocation *invocation,
+@@ -1021,7 +999,7 @@ register_worker (GdmDBusWorkerManager *worker_manager_interface,
+ connection_node);
+
+ credentials = g_dbus_connection_get_peer_credentials (connection);
+- pid = credentials_get_unix_pid (credentials);
++ pid = g_credentials_get_unix_pid (credentials, NULL);
+
+ conversation = find_conversation_by_pid (self, (GPid) pid);
+
+@@ -1479,7 +1457,7 @@ on_outside_connection_closed (GDBusConnection *connection,
+ connection);
+
+ credentials = g_dbus_connection_get_peer_credentials (connection);
+- pid_of_client = credentials_get_unix_pid (credentials);
++ pid_of_client = g_credentials_get_unix_pid (credentials, NULL);
+
+ g_signal_emit (G_OBJECT (self),
+ signals [CLIENT_DISCONNECTED],
+@@ -1531,7 +1509,7 @@ handle_connection_from_outside (GDBusServer *server,
+ }
+
+ credentials = g_dbus_connection_get_peer_credentials (connection);
+- pid_of_client = credentials_get_unix_pid (credentials);
++ pid_of_client = g_credentials_get_unix_pid (credentials, NULL);
+
+ g_signal_emit (G_OBJECT (self),
+ signals [CLIENT_CONNECTED],