2010-05-06 20:13:59 +02:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Red Hat, Inc.
|
|
|
|
* Copyright (C) 2009 Codethink Limited
|
|
|
|
*
|
|
|
|
* This program 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 of the licence or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* See the included COPYING file for more information.
|
|
|
|
*
|
|
|
|
* Authors: David Zeuthen <davidz@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2011-02-01 19:17:23 +01:00
|
|
|
* SECTION:gunixcredentialsmessage
|
2010-05-06 20:13:59 +02:00
|
|
|
* @title: GUnixCredentialsMessage
|
|
|
|
* @short_description: A GSocketControlMessage containing credentials
|
2010-05-14 06:21:39 +02:00
|
|
|
* @include: gio/gunixcredentialsmessage.h
|
2010-05-06 20:13:59 +02:00
|
|
|
* @see_also: #GUnixConnection, #GSocketControlMessage
|
|
|
|
*
|
|
|
|
* This #GSocketControlMessage contains a #GCredentials instance. It
|
|
|
|
* may be sent using g_socket_send_message() and received using
|
|
|
|
* g_socket_receive_message() over UNIX sockets (ie: sockets in the
|
2010-07-20 20:02:14 +02:00
|
|
|
* %G_SOCKET_FAMILY_UNIX family).
|
2010-05-06 20:13:59 +02:00
|
|
|
*
|
|
|
|
* For an easier way to send and receive credentials over
|
2010-07-20 20:02:14 +02:00
|
|
|
* stream-oriented UNIX sockets, see
|
|
|
|
* g_unix_connection_send_credentials() and
|
|
|
|
* g_unix_connection_receive_credentials(). To receive credentials of
|
|
|
|
* a foreign process connected to a socket, use
|
|
|
|
* g_socket_get_credentials().
|
|
|
|
*/
|
2010-05-06 20:13:59 +02:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------------------------------- */
|
|
|
|
|
2010-11-11 15:57:25 +01:00
|
|
|
#include <fcntl.h>
|
2010-05-06 20:13:59 +02:00
|
|
|
#include <errno.h>
|
2010-11-11 15:57:25 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2010-05-06 20:13:59 +02:00
|
|
|
|
|
|
|
#include "gunixcredentialsmessage.h"
|
|
|
|
#include "gcredentials.h"
|
2013-09-18 19:40:09 +02:00
|
|
|
#include "gcredentialsprivate.h"
|
2010-11-11 15:57:25 +01:00
|
|
|
#include "gnetworking.h"
|
2010-05-06 20:13:59 +02:00
|
|
|
|
2010-05-06 22:34:23 +02:00
|
|
|
#include "glibintl.h"
|
|
|
|
|
2010-05-06 20:13:59 +02:00
|
|
|
struct _GUnixCredentialsMessagePrivate
|
|
|
|
{
|
|
|
|
GCredentials *credentials;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_CREDENTIALS
|
|
|
|
};
|
|
|
|
|
2013-06-11 01:29:58 +02:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GUnixCredentialsMessage, g_unix_credentials_message, G_TYPE_SOCKET_CONTROL_MESSAGE)
|
2013-09-18 19:40:09 +02:00
|
|
|
|
2010-05-06 20:13:59 +02:00
|
|
|
static gsize
|
|
|
|
g_unix_credentials_message_get_size (GSocketControlMessage *message)
|
|
|
|
{
|
2013-09-18 19:40:09 +02:00
|
|
|
#if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
|
|
|
|
return G_CREDENTIALS_NATIVE_SIZE;
|
2010-05-06 20:13:59 +02:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
g_unix_credentials_message_get_level (GSocketControlMessage *message)
|
|
|
|
{
|
2013-09-18 19:40:09 +02:00
|
|
|
#if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
|
2010-09-09 20:10:01 +02:00
|
|
|
return SOL_SOCKET;
|
2010-05-16 00:15:30 +02:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
2010-05-06 20:13:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
g_unix_credentials_message_get_msg_type (GSocketControlMessage *message)
|
|
|
|
{
|
2013-09-18 19:40:09 +02:00
|
|
|
#if G_CREDENTIALS_USE_LINUX_UCRED
|
2010-05-06 20:13:59 +02:00
|
|
|
return SCM_CREDENTIALS;
|
2013-09-18 19:40:09 +02:00
|
|
|
#elif G_CREDENTIALS_USE_FREEBSD_CMSGCRED
|
2010-09-09 20:10:01 +02:00
|
|
|
return SCM_CREDS;
|
2014-04-15 16:09:22 +02:00
|
|
|
#elif G_CREDENTIALS_USE_NETBSD_UNPCBID
|
|
|
|
return SCM_CREDS;
|
2013-09-19 22:09:38 +02:00
|
|
|
#elif G_CREDENTIALS_USE_SOLARIS_UCRED
|
|
|
|
return SCM_UCRED;
|
2013-09-18 19:40:09 +02: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 20:13:59 +02:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSocketControlMessage *
|
|
|
|
g_unix_credentials_message_deserialize (gint level,
|
|
|
|
gint type,
|
|
|
|
gsize size,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2013-09-18 19:40:09 +02:00
|
|
|
#if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
|
2010-05-06 20:13:59 +02:00
|
|
|
GSocketControlMessage *message;
|
2013-09-18 19:40:09 +02:00
|
|
|
GCredentials *credentials;
|
2010-05-06 20:13:59 +02:00
|
|
|
|
2013-09-18 19:40:09 +02: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 20:13:59 +02:00
|
|
|
|
|
|
|
return message;
|
2013-09-18 19:40:09 +02:00
|
|
|
|
|
|
|
#else /* !G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED */
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
#endif
|
2010-05-06 20:13:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_unix_credentials_message_serialize (GSocketControlMessage *_message,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2013-09-18 19:40:09 +02:00
|
|
|
#if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
|
2010-05-06 20:13:59 +02:00
|
|
|
GUnixCredentialsMessage *message = G_UNIX_CREDENTIALS_MESSAGE (_message);
|
2013-09-18 19:40:09 +02:00
|
|
|
|
2010-09-09 20:10:01 +02:00
|
|
|
memcpy (data,
|
|
|
|
g_credentials_get_native (message->priv->credentials,
|
2013-09-18 19:40:09 +02:00
|
|
|
G_CREDENTIALS_NATIVE_TYPE),
|
|
|
|
G_CREDENTIALS_NATIVE_SIZE);
|
2010-05-06 20:13:59 +02: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-10 04:13:18 +02:00
|
|
|
G_OBJECT_CLASS (g_unix_credentials_message_parent_class)->finalize (object);
|
2010-05-06 20:13:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_unix_credentials_message_init (GUnixCredentialsMessage *message)
|
|
|
|
{
|
2013-06-24 16:43:04 +02:00
|
|
|
message->priv = g_unix_credentials_message_get_instance_private (message);
|
2010-05-06 20:13:59 +02: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 16:02:56 +02:00
|
|
|
message->priv->credentials = g_credentials_new ();
|
2010-05-06 20:13:59 +02: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 22:02:08 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-05-06 20:13:59 +02:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_CREDENTIALS,
|
|
|
|
g_param_spec_object ("credentials",
|
2010-05-10 04:13:18 +02:00
|
|
|
P_("Credentials"),
|
|
|
|
P_("The credentials stored in the message"),
|
2010-05-06 20:13:59 +02: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-05 00:44:44 +02:00
|
|
|
* Checks if passing #GCredentials on a #GSocket is supported on this platform.
|
2010-05-06 20:13:59 +02:00
|
|
|
*
|
|
|
|
* Returns: %TRUE if supported, %FALSE otherwise
|
|
|
|
*
|
|
|
|
* Since: 2.26
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
g_unix_credentials_message_is_supported (void)
|
|
|
|
{
|
2013-09-18 19:40:09 +02:00
|
|
|
#if G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
|
|
|
|
return TRUE;
|
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
2010-05-06 20:13:59 +02: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-12 02:57:44 +02:00
|
|
|
* g_unix_credentials_message_new_with_credentials:
|
2010-05-06 20:13:59 +02: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 23:24:41 +02:00
|
|
|
* Returns: (transfer none): A #GCredentials instance. Do not free, it is owned by @message.
|
2010-05-06 22:02:08 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-05-06 20:13:59 +02: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;
|
|
|
|
}
|