| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | /* GIO - GLib Input, Output and Streaming Library
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2010 Red Hat, Inc. | 
					
						
							|  |  |  |  * Copyright (C) 2009 Codethink Limited | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2022-05-18 09:12:45 +01:00
										 |  |  |  * SPDX-License-Identifier: LGPL-2.1-or-later | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-05-27 18:21:30 +02:00
										 |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * See the included COPYING file for more information. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: David Zeuthen <davidz@redhat.com> | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2023-11-02 16:26:43 +00:00
										 |  |  |  * GUnixCredentialsMessage: | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-11-02 16:26:43 +00:00
										 |  |  |  * This [class@Gio.SocketControlMessage] contains a [class@Gio.Credentials] | 
					
						
							|  |  |  |  * instance.  It may be sent using [method@Gio.Socket.send_message] and received | 
					
						
							|  |  |  |  * using [method@Gio.Socket.receive_message] over UNIX sockets (ie: sockets in | 
					
						
							|  |  |  |  * the `G_SOCKET_FAMILY_UNIX` family). | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * For an easier way to send and receive credentials over | 
					
						
							| 
									
										
										
										
											2010-07-20 14:02:14 -04:00
										 |  |  |  * stream-oriented UNIX sockets, see | 
					
						
							| 
									
										
										
										
											2023-11-02 16:26:43 +00:00
										 |  |  |  * [method@Gio.UnixConnection.send_credentials] and | 
					
						
							|  |  |  |  * [method@Gio.UnixConnection.receive_credentials]. To receive credentials of | 
					
						
							| 
									
										
										
										
											2010-07-20 14:02:14 -04:00
										 |  |  |  * a foreign process connected to a socket, use | 
					
						
							| 
									
										
										
										
											2023-11-02 16:26:43 +00:00
										 |  |  |  * [method@Gio.Socket.get_credentials]. | 
					
						
							| 
									
										
										
										
											2022-01-19 15:49:44 +04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-11-02 16:26:43 +00:00
										 |  |  |  * Since GLib 2.72, `GUnixCredentialMessage` is available on all platforms. It | 
					
						
							| 
									
										
										
										
											2022-01-19 15:49:44 +04:00
										 |  |  |  * requires underlying system support (such as Windows 10 with `AF_UNIX`) at run | 
					
						
							|  |  |  |  * time. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Before GLib 2.72, `<gio/gunixcredentialsmessage.h>` belonged to the UNIX-specific | 
					
						
							|  |  |  |  * GIO interfaces, thus you had to use the `gio-unix-2.0.pc` pkg-config file | 
					
						
							|  |  |  |  * when using it. This is no longer necessary since GLib 2.72. | 
					
						
							| 
									
										
										
										
											2023-11-02 16:26:43 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-07-20 14:02:14 -04:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "config.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ---------------------------------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-11 09:57:25 -05:00
										 |  |  | #include <fcntl.h>
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											2010-11-11 09:57:25 -05:00
										 |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2022-01-19 15:49:44 +04:00
										 |  |  | #ifdef HAVE_UNISTD_H
 | 
					
						
							| 
									
										
										
										
											2010-11-11 09:57:25 -05:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2022-01-19 15:49:44 +04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "gunixcredentialsmessage.h"
 | 
					
						
							|  |  |  | #include "gcredentials.h"
 | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #include "gcredentialsprivate.h"
 | 
					
						
							| 
									
										
										
										
											2010-11-11 09:57:25 -05:00
										 |  |  | #include "gnetworking.h"
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-06 16:34:23 -04:00
										 |  |  | #include "glibintl.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | struct _GUnixCredentialsMessagePrivate | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   GCredentials *credentials; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   PROP_0, | 
					
						
							|  |  |  |   PROP_CREDENTIALS | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-11 00:29:58 +01:00
										 |  |  | G_DEFINE_TYPE_WITH_PRIVATE (GUnixCredentialsMessage, g_unix_credentials_message, G_TYPE_SOCKET_CONTROL_MESSAGE) | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | static gsize | 
					
						
							|  |  |  | g_unix_credentials_message_get_size (GSocketControlMessage *message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
 | 
					
						
							|  |  |  |   return G_CREDENTIALS_NATIVE_SIZE; | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | #else
 | 
					
						
							|  |  |  |   return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | g_unix_credentials_message_get_level (GSocketControlMessage *message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2010-09-09 14:10:01 -04:00
										 |  |  |   return SOL_SOCKET; | 
					
						
							| 
									
										
										
										
											2010-05-15 18:15:30 -04:00
										 |  |  | #else
 | 
					
						
							|  |  |  |   return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | g_unix_credentials_message_get_msg_type (GSocketControlMessage *message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #if G_CREDENTIALS_USE_LINUX_UCRED
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   return SCM_CREDENTIALS; | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #elif G_CREDENTIALS_USE_FREEBSD_CMSGCRED
 | 
					
						
							| 
									
										
										
										
											2010-09-09 14:10:01 -04:00
										 |  |  |   return SCM_CREDS; | 
					
						
							| 
									
										
										
										
											2014-04-15 15:09:22 +01:00
										 |  |  | #elif G_CREDENTIALS_USE_NETBSD_UNPCBID
 | 
					
						
							|  |  |  |   return SCM_CREDS; | 
					
						
							| 
									
										
										
										
											2013-09-19 16:09:38 -04:00
										 |  |  | #elif G_CREDENTIALS_USE_SOLARIS_UCRED
 | 
					
						
							|  |  |  |   return SCM_UCRED; | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #elif G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
 | 
					
						
							|  |  |  |   #error "G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED is set but there is no msg_type defined for this platform"
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-02-18 15:26:54 +01:00
										 |  |  |   /* includes G_CREDENTIALS_USE_APPLE_XUCRED */ | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static GSocketControlMessage * | 
					
						
							|  |  |  | g_unix_credentials_message_deserialize (gint     level, | 
					
						
							|  |  |  |                                         gint     type, | 
					
						
							|  |  |  |                                         gsize    size, | 
					
						
							|  |  |  |                                         gpointer data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   GSocketControlMessage *message; | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  |   GCredentials *credentials; | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  |   if (level != SOL_SOCKET || type != g_unix_credentials_message_get_msg_type (NULL)) | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (size != G_CREDENTIALS_NATIVE_SIZE) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       g_warning ("Expected a credentials struct of %" G_GSIZE_FORMAT " bytes but " | 
					
						
							|  |  |  |                  "got %" G_GSIZE_FORMAT " bytes of data", | 
					
						
							|  |  |  |                  G_CREDENTIALS_NATIVE_SIZE, size); | 
					
						
							|  |  |  |       return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   credentials = g_credentials_new (); | 
					
						
							|  |  |  |   g_credentials_set_native (credentials, G_CREDENTIALS_NATIVE_TYPE, data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (g_credentials_get_unix_user (credentials, NULL) == (uid_t) -1) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       /* This happens on Linux if the remote side didn't pass the credentials */ | 
					
						
							|  |  |  |       g_object_unref (credentials); | 
					
						
							|  |  |  |       return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   message = g_unix_credentials_message_new_with_credentials (credentials); | 
					
						
							|  |  |  |   g_object_unref (credentials); | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   return message; | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #else /* !G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return NULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | g_unix_credentials_message_serialize (GSocketControlMessage *_message, | 
					
						
							|  |  |  |                                       gpointer               data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |   GUnixCredentialsMessage *message = G_UNIX_CREDENTIALS_MESSAGE (_message); | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-09 14:10:01 -04:00
										 |  |  |   memcpy (data, | 
					
						
							|  |  |  |           g_credentials_get_native (message->priv->credentials, | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  |                                     G_CREDENTIALS_NATIVE_TYPE), | 
					
						
							|  |  |  |           G_CREDENTIALS_NATIVE_SIZE); | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | g_unix_credentials_message_finalize (GObject *object) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   GUnixCredentialsMessage *message = G_UNIX_CREDENTIALS_MESSAGE (object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (message->priv->credentials != NULL) | 
					
						
							|  |  |  |     g_object_unref (message->priv->credentials); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 22:13:18 -04:00
										 |  |  |   G_OBJECT_CLASS (g_unix_credentials_message_parent_class)->finalize (object); | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | g_unix_credentials_message_init (GUnixCredentialsMessage *message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-06-24 15:43:04 +01:00
										 |  |  |   message->priv = g_unix_credentials_message_get_instance_private (message); | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | g_unix_credentials_message_get_property (GObject    *object, | 
					
						
							|  |  |  |                                          guint       prop_id, | 
					
						
							|  |  |  |                                          GValue     *value, | 
					
						
							|  |  |  |                                          GParamSpec *pspec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   GUnixCredentialsMessage *message = G_UNIX_CREDENTIALS_MESSAGE (object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   switch (prop_id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     case PROP_CREDENTIALS: | 
					
						
							|  |  |  |       g_value_set_object (value, message->priv->credentials); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | g_unix_credentials_message_set_property (GObject      *object, | 
					
						
							|  |  |  |                                          guint         prop_id, | 
					
						
							|  |  |  |                                          const GValue *value, | 
					
						
							|  |  |  |                                          GParamSpec   *pspec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   GUnixCredentialsMessage *message = G_UNIX_CREDENTIALS_MESSAGE (object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   switch (prop_id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     case PROP_CREDENTIALS: | 
					
						
							|  |  |  |       message->priv->credentials = g_value_dup_object (value); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | g_unix_credentials_message_constructed (GObject *object) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   GUnixCredentialsMessage *message = G_UNIX_CREDENTIALS_MESSAGE (object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (message->priv->credentials == NULL) | 
					
						
							| 
									
										
										
										
											2010-05-09 10:02:56 -04:00
										 |  |  |     message->priv->credentials = g_credentials_new (); | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   if (G_OBJECT_CLASS (g_unix_credentials_message_parent_class)->constructed != NULL) | 
					
						
							|  |  |  |     G_OBJECT_CLASS (g_unix_credentials_message_parent_class)->constructed (object); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | g_unix_credentials_message_class_init (GUnixCredentialsMessageClass *class) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   GSocketControlMessageClass *scm_class; | 
					
						
							|  |  |  |   GObjectClass *gobject_class; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   gobject_class = G_OBJECT_CLASS (class); | 
					
						
							|  |  |  |   gobject_class->get_property = g_unix_credentials_message_get_property; | 
					
						
							|  |  |  |   gobject_class->set_property = g_unix_credentials_message_set_property; | 
					
						
							|  |  |  |   gobject_class->finalize = g_unix_credentials_message_finalize; | 
					
						
							|  |  |  |   gobject_class->constructed = g_unix_credentials_message_constructed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   scm_class = G_SOCKET_CONTROL_MESSAGE_CLASS (class); | 
					
						
							|  |  |  |   scm_class->get_size = g_unix_credentials_message_get_size; | 
					
						
							|  |  |  |   scm_class->get_level = g_unix_credentials_message_get_level; | 
					
						
							|  |  |  |   scm_class->get_type = g_unix_credentials_message_get_msg_type; | 
					
						
							|  |  |  |   scm_class->serialize = g_unix_credentials_message_serialize; | 
					
						
							|  |  |  |   scm_class->deserialize = g_unix_credentials_message_deserialize; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /**
 | 
					
						
							|  |  |  |    * GUnixCredentialsMessage:credentials: | 
					
						
							|  |  |  |    * | 
					
						
							|  |  |  |    * The credentials stored in the message. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |    * | 
					
						
							|  |  |  |    * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |    */ | 
					
						
							|  |  |  |   g_object_class_install_property (gobject_class, | 
					
						
							|  |  |  |                                    PROP_CREDENTIALS, | 
					
						
							| 
									
										
										
										
											2023-04-28 01:59:26 +02:00
										 |  |  |                                    g_param_spec_object ("credentials", NULL, NULL, | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |                                                         G_TYPE_CREDENTIALS, | 
					
						
							|  |  |  |                                                         G_PARAM_READABLE | | 
					
						
							|  |  |  |                                                         G_PARAM_WRITABLE | | 
					
						
							|  |  |  |                                                         G_PARAM_CONSTRUCT_ONLY | | 
					
						
							|  |  |  |                                                         G_PARAM_STATIC_NAME | | 
					
						
							|  |  |  |                                                         G_PARAM_STATIC_BLURB | | 
					
						
							|  |  |  |                                                         G_PARAM_STATIC_NICK)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ---------------------------------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * g_unix_credentials_message_is_supported: | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-06-04 18:44:44 -04:00
										 |  |  |  * Checks if passing #GCredentials on a #GSocket is supported on this platform. | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Returns: %TRUE if supported, %FALSE otherwise | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | gboolean | 
					
						
							|  |  |  | g_unix_credentials_message_is_supported (void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-09-18 13:40:09 -04:00
										 |  |  | #if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
 | 
					
						
							|  |  |  |   return TRUE; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |   return FALSE; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ---------------------------------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * g_unix_credentials_message_new: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Creates a new #GUnixCredentialsMessage with credentials matching the current processes. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Returns: a new #GUnixCredentialsMessage | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | GSocketControlMessage * | 
					
						
							|  |  |  | g_unix_credentials_message_new (void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   g_return_val_if_fail (g_unix_credentials_message_is_supported (), NULL); | 
					
						
							|  |  |  |   return g_object_new (G_TYPE_UNIX_CREDENTIALS_MESSAGE, | 
					
						
							|  |  |  |                        NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-05-11 20:57:44 -04:00
										 |  |  |  * g_unix_credentials_message_new_with_credentials: | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  * @credentials: A #GCredentials object. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Creates a new #GUnixCredentialsMessage holding @credentials. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Returns: a new #GUnixCredentialsMessage | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | GSocketControlMessage * | 
					
						
							|  |  |  | g_unix_credentials_message_new_with_credentials (GCredentials *credentials) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   g_return_val_if_fail (G_IS_CREDENTIALS (credentials), NULL); | 
					
						
							|  |  |  |   g_return_val_if_fail (g_unix_credentials_message_is_supported (), NULL); | 
					
						
							|  |  |  |   return g_object_new (G_TYPE_UNIX_CREDENTIALS_MESSAGE, | 
					
						
							|  |  |  |                        "credentials", credentials, | 
					
						
							|  |  |  |                        NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * g_unix_credentials_message_get_credentials: | 
					
						
							|  |  |  |  * @message: A #GUnixCredentialsMessage. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Gets the credentials stored in @message. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-09-24 18:24:41 -03:00
										 |  |  |  * Returns: (transfer none): A #GCredentials instance. Do not free, it is owned by @message. | 
					
						
							| 
									
										
										
										
											2010-05-06 16:02:08 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Since: 2.26 | 
					
						
							| 
									
										
										
										
											2010-05-06 14:13:59 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | GCredentials * | 
					
						
							|  |  |  | g_unix_credentials_message_get_credentials (GUnixCredentialsMessage *message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   g_return_val_if_fail (G_IS_UNIX_CREDENTIALS_MESSAGE (message), NULL); | 
					
						
							|  |  |  |   return message->priv->credentials; | 
					
						
							|  |  |  | } |