1 /* GDBus - GLib D-Bus Library
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: David Zeuthen <davidz@redhat.com>
26 #include <sys/types.h>
28 #include <glib/gstdio.h>
37 #include "gdbusauthmechanismsha1.h"
38 #include "gcredentials.h"
39 #include "gdbuserror.h"
40 #include "gioenumtypes.h"
42 #include "gdbusprivate.h"
46 struct _GDBusAuthMechanismSha1Private
50 GDBusAuthMechanismState state;
52 /* used on the client side */
55 /* used on the server side */
57 gchar *server_challenge;
60 static gint mechanism_get_priority (void);
61 static const gchar *mechanism_get_name (void);
63 static gboolean mechanism_is_supported (GDBusAuthMechanism *mechanism);
64 static gchar *mechanism_encode_data (GDBusAuthMechanism *mechanism,
68 static gchar *mechanism_decode_data (GDBusAuthMechanism *mechanism,
72 static GDBusAuthMechanismState mechanism_server_get_state (GDBusAuthMechanism *mechanism);
73 static void mechanism_server_initiate (GDBusAuthMechanism *mechanism,
74 const gchar *initial_response,
75 gsize initial_response_len);
76 static void mechanism_server_data_receive (GDBusAuthMechanism *mechanism,
79 static gchar *mechanism_server_data_send (GDBusAuthMechanism *mechanism,
81 static gchar *mechanism_server_get_reject_reason (GDBusAuthMechanism *mechanism);
82 static void mechanism_server_shutdown (GDBusAuthMechanism *mechanism);
83 static GDBusAuthMechanismState mechanism_client_get_state (GDBusAuthMechanism *mechanism);
84 static gchar *mechanism_client_initiate (GDBusAuthMechanism *mechanism,
85 gsize *out_initial_response_len);
86 static void mechanism_client_data_receive (GDBusAuthMechanism *mechanism,
89 static gchar *mechanism_client_data_send (GDBusAuthMechanism *mechanism,
91 static void mechanism_client_shutdown (GDBusAuthMechanism *mechanism);
93 /* ---------------------------------------------------------------------------------------------------- */
95 G_DEFINE_TYPE_WITH_PRIVATE (GDBusAuthMechanismSha1, _g_dbus_auth_mechanism_sha1, G_TYPE_DBUS_AUTH_MECHANISM)
97 /* ---------------------------------------------------------------------------------------------------- */
100 _g_dbus_auth_mechanism_sha1_finalize (GObject *object)
102 GDBusAuthMechanismSha1 *mechanism = G_DBUS_AUTH_MECHANISM_SHA1 (object);
104 g_free (mechanism->priv->to_send);
106 g_free (mechanism->priv->cookie);
107 g_free (mechanism->priv->server_challenge);
109 if (G_OBJECT_CLASS (_g_dbus_auth_mechanism_sha1_parent_class)->finalize != NULL)
110 G_OBJECT_CLASS (_g_dbus_auth_mechanism_sha1_parent_class)->finalize (object);
114 _g_dbus_auth_mechanism_sha1_class_init (GDBusAuthMechanismSha1Class *klass)
116 GObjectClass *gobject_class;
117 GDBusAuthMechanismClass *mechanism_class;
119 gobject_class = G_OBJECT_CLASS (klass);
120 gobject_class->finalize = _g_dbus_auth_mechanism_sha1_finalize;
122 mechanism_class = G_DBUS_AUTH_MECHANISM_CLASS (klass);
123 mechanism_class->get_priority = mechanism_get_priority;
124 mechanism_class->get_name = mechanism_get_name;
125 mechanism_class->is_supported = mechanism_is_supported;
126 mechanism_class->encode_data = mechanism_encode_data;
127 mechanism_class->decode_data = mechanism_decode_data;
128 mechanism_class->server_get_state = mechanism_server_get_state;
129 mechanism_class->server_initiate = mechanism_server_initiate;
130 mechanism_class->server_data_receive = mechanism_server_data_receive;
131 mechanism_class->server_data_send = mechanism_server_data_send;
132 mechanism_class->server_get_reject_reason = mechanism_server_get_reject_reason;
133 mechanism_class->server_shutdown = mechanism_server_shutdown;
134 mechanism_class->client_get_state = mechanism_client_get_state;
135 mechanism_class->client_initiate = mechanism_client_initiate;
136 mechanism_class->client_data_receive = mechanism_client_data_receive;
137 mechanism_class->client_data_send = mechanism_client_data_send;
138 mechanism_class->client_shutdown = mechanism_client_shutdown;
142 _g_dbus_auth_mechanism_sha1_init (GDBusAuthMechanismSha1 *mechanism)
144 mechanism->priv = _g_dbus_auth_mechanism_sha1_get_instance_private (mechanism);
147 /* ---------------------------------------------------------------------------------------------------- */
150 mechanism_get_priority (void)
156 mechanism_get_name (void)
158 return "DBUS_COOKIE_SHA1";
162 mechanism_is_supported (GDBusAuthMechanism *mechanism)
164 g_return_val_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism), FALSE);
169 mechanism_encode_data (GDBusAuthMechanism *mechanism,
179 mechanism_decode_data (GDBusAuthMechanism *mechanism,
187 /* ---------------------------------------------------------------------------------------------------- */
193 ret = g_random_int_range (0, 60);
204 random_ascii_string (guint len)
209 challenge = g_string_new (NULL);
210 for (n = 0; n < len; n++)
211 g_string_append_c (challenge, random_ascii ());
212 return g_string_free (challenge, FALSE);
216 random_blob (guint len)
221 challenge = g_string_new (NULL);
222 for (n = 0; n < len; n++)
223 g_string_append_c (challenge, g_random_int_range (0, 256));
224 return g_string_free (challenge, FALSE);
227 /* ---------------------------------------------------------------------------------------------------- */
229 /* ensure keyring dir exists and permissions are correct */
231 ensure_keyring_directory (GError **error)
236 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
238 e = g_getenv ("G_DBUS_COOKIE_SHA1_KEYRING_DIR");
245 path = g_build_filename (g_get_home_dir (),
250 if (g_file_test (path, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))
252 if (g_getenv ("G_DBUS_COOKIE_SHA1_KEYRING_DIR_IGNORE_PERMISSION") == NULL)
256 if (stat (path, &statbuf) != 0)
260 g_io_error_from_errno (errno),
261 _("Error when getting information for directory '%s': %s"),
268 if ((statbuf.st_mode & 0777) != 0700)
273 _("Permissions on directory '%s' are malformed. Expected mode 0700, got 0%o"),
275 statbuf.st_mode & 0777);
282 #warning Please implement permission checking on this non-UNIX platform
289 if (g_mkdir (path, 0700) != 0)
293 g_io_error_from_errno (errno),
294 _("Error creating directory '%s': %s"),
306 /* ---------------------------------------------------------------------------------------------------- */
309 append_nibble (GString *s, gint val)
311 g_string_append_c (s, val >= 10 ? ('a' + val - 10) : ('0' + val));
315 hexencode (const gchar *str,
324 s = g_string_new (NULL);
325 for (n = 0; n < len; n++)
331 val = ((const guchar *) str)[n];
332 upper_nibble = val >> 4;
333 lower_nibble = val & 0x0f;
335 append_nibble (s, upper_nibble);
336 append_nibble (s, lower_nibble);
339 return g_string_free (s, FALSE);
342 /* ---------------------------------------------------------------------------------------------------- */
344 /* looks up an entry in the keyring */
346 keyring_lookup_entry (const gchar *cookie_context,
357 g_return_val_if_fail (cookie_context != NULL, NULL);
358 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
365 keyring_dir = ensure_keyring_directory (error);
366 if (keyring_dir == NULL)
369 path = g_build_filename (keyring_dir, cookie_context, NULL);
371 if (!g_file_get_contents (path,
376 g_prefix_error (error,
377 _("Error opening keyring '%s' for reading: "),
381 g_assert (contents != NULL);
383 lines = g_strsplit (contents, "\n", 0);
384 for (n = 0; lines[n] != NULL; n++)
386 const gchar *line = lines[n];
395 tokens = g_strsplit (line, " ", 0);
396 if (g_strv_length (tokens) != 3)
401 _("Line %d of the keyring at '%s' with content '%s' is malformed"),
409 line_id = g_ascii_strtoll (tokens[0], &endp, 10);
415 _("First token of line %d of the keyring at '%s' with content '%s' is malformed"),
423 line_when = g_ascii_strtoll (tokens[1], &endp, 10);
424 line_when = line_when; /* To avoid -Wunused-but-set-variable */
430 _("Second token of line %d of the keyring at '%s' with content '%s' is malformed"),
438 if (line_id == cookie_id)
441 ret = tokens[2]; /* steal pointer */
450 /* BOOH, didn't find the cookie */
454 _("Didn't find cookie with id %d in the keyring at '%s'"),
459 g_free (keyring_dir);
466 /* function for logging important events that the system administrator should take notice of */
469 _log (const gchar *message,
475 va_start (var_args, message);
476 s = g_strdup_vprintf (message, var_args);
479 /* TODO: might want to send this to syslog instead */
480 g_printerr ("GDBus-DBUS_COOKIE_SHA1: %s\n", s);
485 keyring_acquire_lock (const gchar *path,
491 guint num_create_tries;
493 g_return_val_if_fail (path != NULL, FALSE);
494 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
497 lock = g_strdup_printf ("%s.lock", path);
499 /* This is what the D-Bus spec says
501 * Create a lockfile name by appending ".lock" to the name of the
502 * cookie file. The server should attempt to create this file using
503 * O_CREAT | O_EXCL. If file creation fails, the lock
504 * fails. Servers should retry for a reasonable period of time,
505 * then they may choose to delete an existing lock to keep users
506 * from having to manually delete a stale lock. [1]
508 * [1] : Lockfiles are used instead of real file locking fcntl() because
509 * real locking implementations are still flaky on network filesystems
512 num_create_tries = 0;
517 while (g_file_test (lock, G_FILE_TEST_EXISTS))
519 /* sleep 10ms, then try again */
524 /* ok, we slept 50*10ms = 0.5 seconds. Conclude that the lock file must be
525 * stale (nuke the it from orbit)
527 if (g_unlink (lock) != 0)
531 g_io_error_from_errno (errno),
532 _("Error deleting stale lock file '%s': %s"),
537 _log ("Deleted stale lock file '%s'", lock);
542 ret = g_open (lock, O_CREAT |
552 /* EEXIST: pathname already exists and O_CREAT and O_EXCL were used. */
553 if (errno == EEXISTS)
556 if (num_create_tries < 5)
560 num_create_tries = num_create_tries; /* To avoid -Wunused-but-set-variable */
563 g_io_error_from_errno (errno),
564 _("Error creating lock file '%s': %s"),
576 keyring_release_lock (const gchar *path,
583 g_return_val_if_fail (path != NULL, FALSE);
584 g_return_val_if_fail (lock_fd != -1, FALSE);
585 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
588 lock = g_strdup_printf ("%s.lock", path);
589 if (close (lock_fd) != 0)
593 g_io_error_from_errno (errno),
594 _("Error closing (unlinked) lock file '%s': %s"),
599 if (g_unlink (lock) != 0)
603 g_io_error_from_errno (errno),
604 _("Error unlinking lock file '%s': %s"),
618 /* adds an entry to the keyring, taking care of locking and deleting stale/future entries */
620 keyring_generate_entry (const gchar *cookie_context,
632 GString *new_contents;
637 gboolean changed_file;
640 g_return_val_if_fail (cookie_context != NULL, FALSE);
641 g_return_val_if_fail (out_id != NULL, FALSE);
642 g_return_val_if_fail (out_cookie != NULL, FALSE);
643 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
655 keyring_dir = ensure_keyring_directory (error);
656 if (keyring_dir == NULL)
659 path = g_build_filename (keyring_dir, cookie_context, NULL);
661 lock_fd = keyring_acquire_lock (path, error);
667 if (!g_file_get_contents (path,
672 if (local_error->domain == G_FILE_ERROR && local_error->code == G_FILE_ERROR_NOENT)
674 /* file doesn't have to exist */
675 g_error_free (local_error);
679 g_propagate_prefixed_error (error,
681 _("Error opening keyring '%s' for writing: "),
687 new_contents = g_string_new (NULL);
689 changed_file = FALSE;
692 if (contents != NULL)
695 lines = g_strsplit (contents, "\n", 0);
696 for (n = 0; lines[n] != NULL; n++)
698 const gchar *line = lines[n];
708 tokens = g_strsplit (line, " ", 0);
709 if (g_strv_length (tokens) != 3)
714 _("Line %d of the keyring at '%s' with content '%s' is malformed"),
722 line_id = g_ascii_strtoll (tokens[0], &endp, 10);
728 _("First token of line %d of the keyring at '%s' with content '%s' is malformed"),
736 line_when = g_ascii_strtoll (tokens[1], &endp, 10);
742 _("Second token of line %d of the keyring at '%s' with content '%s' is malformed"),
749 line_when = line_when; /* To avoid -Wunused-but-set-variable */
754 * Once the lockfile has been created, the server loads the
755 * cookie file. It should then delete any cookies that are
756 * old (the timeout can be fairly short), or more than a
757 * reasonable time in the future (so that cookies never
758 * accidentally become permanent, if the clock was set far
759 * into the future at some point). If no recent keys remain,
760 * the server may generate a new key.
766 /* Oddball case: entry is more recent than our current wall-clock time..
767 * This is OK, it means that another server on another machine but with
768 * same $HOME wrote the entry.
770 * So discard the entry if it's more than 1 day in the future ("reasonable
771 * time in the future").
773 if (line_when - now > 24*60*60)
776 _log ("Deleted SHA1 cookie from %" G_GUINT64_FORMAT " seconds in the future", line_when - now);
781 /* Discard entry if it's older than 15 minutes ("can be fairly short") */
782 if (now - line_when > 15*60)
790 changed_file = FALSE;
794 g_string_append_printf (new_contents,
795 "%d %" G_GUINT64_FORMAT " %s\n",
799 max_line_id = MAX (line_id, max_line_id);
800 /* Only reuse entry if not older than 10 minutes.
802 * (We need a bit of grace time compared to 15 minutes above.. otherwise
803 * there's a race where we reuse the 14min59.9 secs old entry and a
804 * split-second later another server purges the now 15 minute old entry.)
806 if (now - line_when < 10 * 60)
811 use_cookie = tokens[2]; /* steal memory */
819 } /* for each line */
826 *out_cookie = use_cookie;
832 *out_id = max_line_id + 1;
833 raw_cookie = random_blob (32);
834 *out_cookie = hexencode (raw_cookie, 32);
837 g_string_append_printf (new_contents,
838 "%d %" G_GUINT64_FORMAT " %s\n",
840 (guint64) time (NULL),
845 /* and now actually write the cookie file if there are changes (this is atomic) */
848 if (!g_file_set_contents (path,
855 g_free (*out_cookie);
867 if (!keyring_release_lock (path, lock_fd, &local_error))
873 *error = local_error;
877 g_prefix_error (error,
878 _("(Additionally, releasing the lock for '%s' also failed: %s) "),
880 local_error->message);
885 g_error_free (local_error);
890 g_free (keyring_dir);
894 if (new_contents != NULL)
895 g_string_free (new_contents, TRUE);
900 /* ---------------------------------------------------------------------------------------------------- */
903 generate_sha1 (const gchar *server_challenge,
904 const gchar *client_challenge,
910 str = g_string_new (server_challenge);
911 g_string_append_c (str, ':');
912 g_string_append (str, client_challenge);
913 g_string_append_c (str, ':');
914 g_string_append (str, cookie);
915 sha1 = g_compute_checksum_for_string (G_CHECKSUM_SHA1, str->str, -1);
916 g_string_free (str, TRUE);
921 /* ---------------------------------------------------------------------------------------------------- */
923 static GDBusAuthMechanismState
924 mechanism_server_get_state (GDBusAuthMechanism *mechanism)
926 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
928 g_return_val_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism), G_DBUS_AUTH_MECHANISM_STATE_INVALID);
929 g_return_val_if_fail (m->priv->is_server && !m->priv->is_client, G_DBUS_AUTH_MECHANISM_STATE_INVALID);
931 return m->priv->state;
935 mechanism_server_initiate (GDBusAuthMechanism *mechanism,
936 const gchar *initial_response,
937 gsize initial_response_len)
939 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
941 g_return_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism));
942 g_return_if_fail (!m->priv->is_server && !m->priv->is_client);
944 m->priv->is_server = TRUE;
945 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_REJECTED;
947 if (initial_response != NULL && strlen (initial_response) > 0)
953 uid = g_ascii_strtoll (initial_response, &endp, 10);
956 if (uid == getuid ())
958 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_HAVE_DATA_TO_SEND;
961 #elif defined(G_OS_WIN32)
963 sid = _g_dbus_win32_get_user_sid ();
964 if (g_strcmp0 (initial_response, sid) == 0)
965 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_HAVE_DATA_TO_SEND;
968 #error Please implement for your OS
974 mechanism_server_data_receive (GDBusAuthMechanism *mechanism,
978 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
980 const gchar *client_challenge;
981 const gchar *alleged_sha1;
984 g_return_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism));
985 g_return_if_fail (m->priv->is_server && !m->priv->is_client);
986 g_return_if_fail (m->priv->state == G_DBUS_AUTH_MECHANISM_STATE_WAITING_FOR_DATA);
991 tokens = g_strsplit (data, " ", 0);
992 if (g_strv_length (tokens) != 2)
994 g_warning ("Malformed data '%s'", data);
995 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_REJECTED;
999 client_challenge = tokens[0];
1000 alleged_sha1 = tokens[1];
1002 sha1 = generate_sha1 (m->priv->server_challenge, client_challenge, m->priv->cookie);
1004 if (g_strcmp0 (sha1, alleged_sha1) == 0)
1006 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_ACCEPTED;
1010 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_REJECTED;
1014 g_strfreev (tokens);
1019 mechanism_server_data_send (GDBusAuthMechanism *mechanism,
1020 gsize *out_data_len)
1022 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
1025 const gchar *cookie_context;
1028 g_return_val_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism), NULL);
1029 g_return_val_if_fail (m->priv->is_server && !m->priv->is_client, NULL);
1030 g_return_val_if_fail (m->priv->state == G_DBUS_AUTH_MECHANISM_STATE_HAVE_DATA_TO_SEND, NULL);
1034 /* TODO: use GDBusAuthObserver here to get the cookie context to use? */
1035 cookie_context = "org_gtk_gdbus_general";
1039 if (!keyring_generate_entry (cookie_context,
1044 g_warning ("Error adding entry to keyring: %s", error->message);
1045 g_error_free (error);
1046 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_REJECTED;
1050 m->priv->server_challenge = random_ascii_string (16);
1051 s = g_strdup_printf ("%s %d %s",
1054 m->priv->server_challenge);
1056 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_WAITING_FOR_DATA;
1063 mechanism_server_get_reject_reason (GDBusAuthMechanism *mechanism)
1065 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
1067 g_return_val_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism), NULL);
1068 g_return_val_if_fail (m->priv->is_server && !m->priv->is_client, NULL);
1069 g_return_val_if_fail (m->priv->state == G_DBUS_AUTH_MECHANISM_STATE_REJECTED, NULL);
1071 /* can never end up here because we are never in the REJECTED state */
1072 g_assert_not_reached ();
1078 mechanism_server_shutdown (GDBusAuthMechanism *mechanism)
1080 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
1082 g_return_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism));
1083 g_return_if_fail (m->priv->is_server && !m->priv->is_client);
1085 m->priv->is_server = FALSE;
1088 /* ---------------------------------------------------------------------------------------------------- */
1090 static GDBusAuthMechanismState
1091 mechanism_client_get_state (GDBusAuthMechanism *mechanism)
1093 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
1095 g_return_val_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism), G_DBUS_AUTH_MECHANISM_STATE_INVALID);
1096 g_return_val_if_fail (m->priv->is_client && !m->priv->is_server, G_DBUS_AUTH_MECHANISM_STATE_INVALID);
1098 return m->priv->state;
1102 mechanism_client_initiate (GDBusAuthMechanism *mechanism,
1103 gsize *out_initial_response_len)
1105 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
1106 gchar *initial_response;
1108 g_return_val_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism), NULL);
1109 g_return_val_if_fail (!m->priv->is_server && !m->priv->is_client, NULL);
1111 m->priv->is_client = TRUE;
1112 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_WAITING_FOR_DATA;
1114 *out_initial_response_len = -1;
1117 initial_response = g_strdup_printf ("%" G_GINT64_FORMAT, (gint64) getuid ());
1118 #elif defined (G_OS_WIN32)
1119 initial_response = _g_dbus_win32_get_user_sid ();
1121 #error Please implement for your OS
1123 g_assert (initial_response != NULL);
1125 return initial_response;
1129 mechanism_client_data_receive (GDBusAuthMechanism *mechanism,
1133 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
1135 const gchar *cookie_context;
1137 const gchar *server_challenge;
1138 gchar *client_challenge;
1144 g_return_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism));
1145 g_return_if_fail (m->priv->is_client && !m->priv->is_server);
1146 g_return_if_fail (m->priv->state == G_DBUS_AUTH_MECHANISM_STATE_WAITING_FOR_DATA);
1150 client_challenge = NULL;
1152 tokens = g_strsplit (data, " ", 0);
1153 if (g_strv_length (tokens) != 3)
1155 g_warning ("Malformed data '%s'", data);
1156 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_REJECTED;
1160 cookie_context = tokens[0];
1161 cookie_id = g_ascii_strtoll (tokens[1], &endp, 10);
1164 g_warning ("Malformed cookie_id '%s'", tokens[1]);
1165 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_REJECTED;
1168 server_challenge = tokens[2];
1171 cookie = keyring_lookup_entry (cookie_context, cookie_id, &error);
1174 g_warning ("Problems looking up entry in keyring: %s", error->message);
1175 g_error_free (error);
1176 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_REJECTED;
1180 client_challenge = random_ascii_string (16);
1181 sha1 = generate_sha1 (server_challenge, client_challenge, cookie);
1182 m->priv->to_send = g_strdup_printf ("%s %s", client_challenge, sha1);
1184 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_HAVE_DATA_TO_SEND;
1187 g_strfreev (tokens);
1189 g_free (client_challenge);
1193 mechanism_client_data_send (GDBusAuthMechanism *mechanism,
1194 gsize *out_data_len)
1196 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
1198 g_return_val_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism), NULL);
1199 g_return_val_if_fail (m->priv->is_client && !m->priv->is_server, NULL);
1200 g_return_val_if_fail (m->priv->state == G_DBUS_AUTH_MECHANISM_STATE_HAVE_DATA_TO_SEND, NULL);
1202 g_assert (m->priv->to_send != NULL);
1204 m->priv->state = G_DBUS_AUTH_MECHANISM_STATE_ACCEPTED;
1206 return g_strdup (m->priv->to_send);
1210 mechanism_client_shutdown (GDBusAuthMechanism *mechanism)
1212 GDBusAuthMechanismSha1 *m = G_DBUS_AUTH_MECHANISM_SHA1 (mechanism);
1214 g_return_if_fail (G_IS_DBUS_AUTH_MECHANISM_SHA1 (mechanism));
1215 g_return_if_fail (m->priv->is_client && !m->priv->is_server);
1217 m->priv->is_client = FALSE;
1220 /* ---------------------------------------------------------------------------------------------------- */