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, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: David Zeuthen <davidz@redhat.com>
25 #include "gdbusauth.h"
27 #include "gdbusauthmechanismanon.h"
28 #include "gdbusauthmechanismexternal.h"
29 #include "gdbusauthmechanismsha1.h"
30 #include "gdbusauthobserver.h"
32 #include "gdbuserror.h"
33 #include "gdbusutils.h"
34 #include "gioenumtypes.h"
35 #include "gcredentials.h"
36 #include "gdbusprivate.h"
37 #include "giostream.h"
38 #include "gdatainputstream.h"
39 #include "gdataoutputstream.h"
42 #include <sys/types.h>
43 #include <sys/socket.h>
44 #include "gunixconnection.h"
45 #include "gunixcredentialsmessage.h"
51 debug_print (const gchar *message, ...)
53 if (G_UNLIKELY (_g_dbus_debug_authentication ()))
60 _g_dbus_debug_print_lock ();
62 va_start (var_args, message);
63 s = g_strdup_vprintf (message, var_args);
66 str = g_string_new (NULL);
67 for (n = 0; s[n] != '\0'; n++)
69 if (G_UNLIKELY (s[n] == '\r'))
70 g_string_append (str, "\\r");
71 else if (G_UNLIKELY (s[n] == '\n'))
72 g_string_append (str, "\\n");
74 g_string_append_c (str, s[n]);
76 g_print ("GDBus-debug:Auth: %s\n", str->str);
77 g_string_free (str, TRUE);
80 _g_dbus_debug_print_unlock ();
91 static void mechanism_free (Mechanism *m);
93 struct _GDBusAuthPrivate
97 /* A list of available Mechanism, sorted according to priority */
98 GList *available_mechanisms;
107 G_DEFINE_TYPE (GDBusAuth, _g_dbus_auth, G_TYPE_OBJECT);
109 /* ---------------------------------------------------------------------------------------------------- */
112 _g_dbus_auth_finalize (GObject *object)
114 GDBusAuth *auth = G_DBUS_AUTH (object);
116 if (auth->priv->stream != NULL)
117 g_object_unref (auth->priv->stream);
118 g_list_foreach (auth->priv->available_mechanisms, (GFunc) mechanism_free, NULL);
119 g_list_free (auth->priv->available_mechanisms);
121 if (G_OBJECT_CLASS (_g_dbus_auth_parent_class)->finalize != NULL)
122 G_OBJECT_CLASS (_g_dbus_auth_parent_class)->finalize (object);
126 _g_dbus_auth_get_property (GObject *object,
131 GDBusAuth *auth = G_DBUS_AUTH (object);
136 g_value_set_object (value, auth->priv->stream);
140 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
146 _g_dbus_auth_set_property (GObject *object,
151 GDBusAuth *auth = G_DBUS_AUTH (object);
156 auth->priv->stream = g_value_dup_object (value);
160 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
166 _g_dbus_auth_class_init (GDBusAuthClass *klass)
168 GObjectClass *gobject_class;
170 g_type_class_add_private (klass, sizeof (GDBusAuthPrivate));
172 gobject_class = G_OBJECT_CLASS (klass);
173 gobject_class->get_property = _g_dbus_auth_get_property;
174 gobject_class->set_property = _g_dbus_auth_set_property;
175 gobject_class->finalize = _g_dbus_auth_finalize;
177 g_object_class_install_property (gobject_class,
179 g_param_spec_object ("stream",
181 P_("The underlying GIOStream used for I/O"),
185 G_PARAM_CONSTRUCT_ONLY |
186 G_PARAM_STATIC_NAME |
187 G_PARAM_STATIC_BLURB |
188 G_PARAM_STATIC_NICK));
192 mechanism_free (Mechanism *m)
198 add_mechanism (GDBusAuth *auth,
199 GType mechanism_type)
203 m = g_new0 (Mechanism, 1);
204 m->name = _g_dbus_auth_mechanism_get_name (mechanism_type);
205 m->priority = _g_dbus_auth_mechanism_get_priority (mechanism_type);
206 m->gtype = mechanism_type;
208 auth->priv->available_mechanisms = g_list_prepend (auth->priv->available_mechanisms, m);
212 mech_compare_func (Mechanism *a, Mechanism *b)
215 /* ensure deterministic order */
216 ret = b->priority - a->priority;
218 ret = g_strcmp0 (b->name, a->name);
223 _g_dbus_auth_init (GDBusAuth *auth)
225 auth->priv = G_TYPE_INSTANCE_GET_PRIVATE (auth, G_TYPE_DBUS_AUTH, GDBusAuthPrivate);
227 /* TODO: trawl extension points */
228 add_mechanism (auth, G_TYPE_DBUS_AUTH_MECHANISM_ANON);
229 add_mechanism (auth, G_TYPE_DBUS_AUTH_MECHANISM_SHA1);
230 add_mechanism (auth, G_TYPE_DBUS_AUTH_MECHANISM_EXTERNAL);
232 auth->priv->available_mechanisms = g_list_sort (auth->priv->available_mechanisms,
233 (GCompareFunc) mech_compare_func);
237 find_mech_by_name (GDBusAuth *auth,
245 for (l = auth->priv->available_mechanisms; l != NULL; l = l->next)
247 Mechanism *m = l->data;
248 if (g_strcmp0 (name, m->name) == 0)
260 _g_dbus_auth_new (GIOStream *stream)
262 return g_object_new (G_TYPE_DBUS_AUTH,
267 /* ---------------------------------------------------------------------------------------------------- */
268 /* like g_data_input_stream_read_line() but sets error if there's no content to read */
270 _my_g_data_input_stream_read_line (GDataInputStream *dis,
271 gsize *out_line_length,
272 GCancellable *cancellable,
277 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
279 ret = g_data_input_stream_read_line (dis,
283 if (ret == NULL && error != NULL && *error == NULL)
285 g_set_error_literal (error,
288 _("Unexpected lack of content trying to read a line"));
294 /* This function is to avoid situations like this
296 * BEGIN\r\nl\0\0\1...
298 * e.g. where we read into the first D-Bus message while waiting for
299 * the final line from the client (TODO: file bug against gio for
303 _my_g_input_stream_read_line_safe (GInputStream *i,
304 gsize *out_line_length,
305 GCancellable *cancellable,
311 gboolean last_was_cr;
313 str = g_string_new (NULL);
318 num_read = g_input_stream_read (i,
327 if (error != NULL && *error == NULL)
329 g_set_error_literal (error,
332 _("Unexpected lack of content trying to (safely) read a line"));
337 g_string_append_c (str, (gint) c);
342 g_assert (str->len >= 2);
343 g_string_set_size (str, str->len - 2);
347 last_was_cr = (c == 0x0d);
351 if (out_line_length != NULL)
352 *out_line_length = str->len;
353 return g_string_free (str, FALSE);
356 g_assert (error == NULL || *error != NULL);
357 g_string_free (str, TRUE);
361 /* ---------------------------------------------------------------------------------------------------- */
364 append_nibble (GString *s, gint val)
366 g_string_append_c (s, val >= 10 ? ('a' + val - 10) : ('0' + val));
370 hexdecode (const gchar *str,
379 s = g_string_new (NULL);
381 for (n = 0; str[n] != '\0'; n += 2)
387 upper_nibble = g_ascii_xdigit_value (str[n]);
388 lower_nibble = g_ascii_xdigit_value (str[n + 1]);
389 if (upper_nibble == -1 || lower_nibble == -1)
394 "Error hexdecoding string `%s' around position %d",
398 value = (upper_nibble<<4) | lower_nibble;
399 g_string_append_c (s, value);
402 ret = g_string_free (s, FALSE);
407 g_string_free (s, TRUE);
413 hexencode (const gchar *str)
418 s = g_string_new (NULL);
419 for (n = 0; str[n] != '\0'; n++)
425 val = ((const guchar *) str)[n];
426 upper_nibble = val >> 4;
427 lower_nibble = val & 0x0f;
429 append_nibble (s, upper_nibble);
430 append_nibble (s, lower_nibble);
433 return g_string_free (s, FALSE);
436 /* ---------------------------------------------------------------------------------------------------- */
438 static GDBusAuthMechanism *
439 client_choose_mech_and_send_initial_response (GDBusAuth *auth,
440 GCredentials *credentials_that_were_sent,
441 const gchar* const *supported_auth_mechs,
442 GPtrArray *attempted_auth_mechs,
443 GDataOutputStream *dos,
444 GCancellable *cancellable,
447 GDBusAuthMechanism *mech;
448 GType auth_mech_to_use_gtype;
451 gchar *initial_response;
452 gsize initial_response_len;
459 debug_print ("CLIENT: Trying to choose mechanism");
461 /* find an authentication mechanism to try, if any */
462 auth_mech_to_use_gtype = (GType) 0;
463 for (n = 0; supported_auth_mechs[n] != NULL; n++)
465 gboolean attempted_already;
466 attempted_already = FALSE;
467 for (m = 0; m < attempted_auth_mechs->len; m++)
469 if (g_strcmp0 (supported_auth_mechs[n], attempted_auth_mechs->pdata[m]) == 0)
471 attempted_already = TRUE;
475 if (!attempted_already)
477 auth_mech_to_use_gtype = find_mech_by_name (auth, supported_auth_mechs[n]);
478 if (auth_mech_to_use_gtype != (GType) 0)
483 if (auth_mech_to_use_gtype == (GType) 0)
489 debug_print ("CLIENT: Exhausted all available mechanisms");
491 available = g_strjoinv (", ", (gchar **) supported_auth_mechs);
493 tried_str = g_string_new (NULL);
494 for (n = 0; n < attempted_auth_mechs->len; n++)
497 g_string_append (tried_str, ", ");
498 g_string_append (tried_str, attempted_auth_mechs->pdata[n]);
503 _("Exhausted all available authentication mechanisms (tried: %s) (available: %s)"),
506 g_string_free (tried_str, TRUE);
511 /* OK, decided on a mechanism - let's do this thing */
512 mech = g_object_new (auth_mech_to_use_gtype,
513 "stream", auth->priv->stream,
514 "credentials", credentials_that_were_sent,
516 debug_print ("CLIENT: Trying mechanism `%s'", _g_dbus_auth_mechanism_get_name (auth_mech_to_use_gtype));
517 g_ptr_array_add (attempted_auth_mechs, (gpointer) _g_dbus_auth_mechanism_get_name (auth_mech_to_use_gtype));
519 /* the auth mechanism may not be supported
520 * (for example, EXTERNAL only works if credentials were exchanged)
522 if (!_g_dbus_auth_mechanism_is_supported (mech))
524 debug_print ("CLIENT: Mechanism `%s' says it is not supported", _g_dbus_auth_mechanism_get_name (auth_mech_to_use_gtype));
525 g_object_unref (mech);
530 initial_response_len = -1;
531 initial_response = _g_dbus_auth_mechanism_client_initiate (mech,
532 &initial_response_len);
534 g_printerr ("using auth mechanism with name `%s' of type `%s' with initial response `%s'\n",
535 _g_dbus_auth_mechanism_get_name (auth_mech_to_use_gtype),
536 g_type_name (G_TYPE_FROM_INSTANCE (mech)),
539 if (initial_response != NULL)
541 //g_printerr ("initial_response = `%s'\n", initial_response);
542 encoded = hexencode (initial_response);
543 s = g_strdup_printf ("AUTH %s %s\r\n",
544 _g_dbus_auth_mechanism_get_name (auth_mech_to_use_gtype),
546 g_free (initial_response);
551 s = g_strdup_printf ("AUTH %s\r\n", _g_dbus_auth_mechanism_get_name (auth_mech_to_use_gtype));
553 debug_print ("CLIENT: writing `%s'", s);
554 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
556 g_object_unref (mech);
568 /* ---------------------------------------------------------------------------------------------------- */
572 CLIENT_STATE_WAITING_FOR_DATA,
573 CLIENT_STATE_WAITING_FOR_OK,
574 CLIENT_STATE_WAITING_FOR_REJECT,
575 CLIENT_STATE_WAITING_FOR_AGREE_UNIX_FD
579 _g_dbus_auth_run_client (GDBusAuth *auth,
580 GDBusCapabilityFlags offered_capabilities,
581 GDBusCapabilityFlags *out_negotiated_capabilities,
582 GCancellable *cancellable,
586 GDataInputStream *dis;
587 GDataOutputStream *dos;
588 GCredentials *credentials;
592 gchar **supported_auth_mechs;
593 GPtrArray *attempted_auth_mechs;
594 GDBusAuthMechanism *mech;
596 GDBusCapabilityFlags negotiated_capabilities;
598 debug_print ("CLIENT: initiating");
601 supported_auth_mechs = NULL;
602 attempted_auth_mechs = g_ptr_array_new ();
604 negotiated_capabilities = 0;
607 dis = G_DATA_INPUT_STREAM (g_data_input_stream_new (g_io_stream_get_input_stream (auth->priv->stream)));
608 dos = G_DATA_OUTPUT_STREAM (g_data_output_stream_new (g_io_stream_get_output_stream (auth->priv->stream)));
609 g_filter_input_stream_set_close_base_stream (G_FILTER_INPUT_STREAM (dis), FALSE);
610 g_filter_output_stream_set_close_base_stream (G_FILTER_OUTPUT_STREAM (dos), FALSE);
612 g_data_input_stream_set_newline_type (dis, G_DATA_STREAM_NEWLINE_TYPE_CR_LF);
615 if (G_IS_UNIX_CONNECTION (auth->priv->stream))
617 credentials = g_credentials_new ();
618 if (!g_unix_connection_send_credentials (G_UNIX_CONNECTION (auth->priv->stream),
625 if (!g_data_output_stream_put_byte (dos, '\0', cancellable, error))
629 if (!g_data_output_stream_put_byte (dos, '\0', cancellable, error))
633 if (credentials != NULL)
635 if (G_UNLIKELY (_g_dbus_debug_authentication ()))
637 s = g_credentials_to_string (credentials);
638 debug_print ("CLIENT: sent credentials `%s'", s);
644 debug_print ("CLIENT: didn't send any credentials");
647 /* TODO: to reduce roundtrips, try to pick an auth mechanism to start with */
649 /* Get list of supported authentication mechanisms */
651 debug_print ("CLIENT: writing `%s'", s);
652 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
654 state = CLIENT_STATE_WAITING_FOR_REJECT;
660 case CLIENT_STATE_WAITING_FOR_REJECT:
661 debug_print ("CLIENT: WaitingForReject");
662 line = _my_g_data_input_stream_read_line (dis, &line_length, cancellable, error);
665 debug_print ("CLIENT: WaitingForReject, read '%s'", line);
668 if (!g_str_has_prefix (line, "REJECTED "))
673 "In WaitingForReject: Expected `REJECTED am1 am2 ... amN', got `%s'",
678 if (supported_auth_mechs == NULL)
680 supported_auth_mechs = g_strsplit (line + sizeof ("REJECTED ") - 1, " ", 0);
682 for (n = 0; supported_auth_mechs != NULL && supported_auth_mechs[n] != NULL; n++)
683 g_printerr ("supported_auth_mechs[%d] = `%s'\n", n, supported_auth_mechs[n]);
687 mech = client_choose_mech_and_send_initial_response (auth,
689 (const gchar* const *) supported_auth_mechs,
690 attempted_auth_mechs,
696 if (_g_dbus_auth_mechanism_client_get_state (mech) == G_DBUS_AUTH_MECHANISM_STATE_WAITING_FOR_DATA)
697 state = CLIENT_STATE_WAITING_FOR_DATA;
699 state = CLIENT_STATE_WAITING_FOR_OK;
702 case CLIENT_STATE_WAITING_FOR_OK:
703 debug_print ("CLIENT: WaitingForOK");
704 line = _my_g_data_input_stream_read_line (dis, &line_length, cancellable, error);
707 debug_print ("CLIENT: WaitingForOK, read `%s'", line);
708 if (g_str_has_prefix (line, "OK "))
710 if (!g_dbus_is_guid (line + 3))
715 "Invalid OK response `%s'",
720 ret_guid = g_strdup (line + 3);
723 if (offered_capabilities & G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING)
725 s = "NEGOTIATE_UNIX_FD\r\n";
726 debug_print ("CLIENT: writing `%s'", s);
727 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
729 state = CLIENT_STATE_WAITING_FOR_AGREE_UNIX_FD;
734 debug_print ("CLIENT: writing `%s'", s);
735 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
737 /* and we're done! */
741 else if (g_str_has_prefix (line, "REJECTED "))
743 goto choose_mechanism;
747 /* TODO: handle other valid responses */
751 "In WaitingForOk: unexpected response `%s'",
758 case CLIENT_STATE_WAITING_FOR_AGREE_UNIX_FD:
759 debug_print ("CLIENT: WaitingForAgreeUnixFD");
760 line = _my_g_data_input_stream_read_line (dis, &line_length, cancellable, error);
763 debug_print ("CLIENT: WaitingForAgreeUnixFD, read=`%s'", line);
764 if (g_strcmp0 (line, "AGREE_UNIX_FD") == 0)
767 negotiated_capabilities |= G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING;
769 debug_print ("CLIENT: writing `%s'", s);
770 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
772 /* and we're done! */
775 else if (g_str_has_prefix (line, "ERROR") && (line[5] == 0 || g_ascii_isspace (line[5])))
777 //g_strstrip (line + 5); g_debug ("bah, no unix_fd: `%s'", line + 5);
780 debug_print ("CLIENT: writing `%s'", s);
781 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
783 /* and we're done! */
788 /* TODO: handle other valid responses */
792 "In WaitingForAgreeUnixFd: unexpected response `%s'",
799 case CLIENT_STATE_WAITING_FOR_DATA:
800 debug_print ("CLIENT: WaitingForData");
801 line = _my_g_data_input_stream_read_line (dis, &line_length, cancellable, error);
804 debug_print ("CLIENT: WaitingForData, read=`%s'", line);
805 if (g_str_has_prefix (line, "DATA "))
809 gsize decoded_data_len = 0;
811 encoded = g_strdup (line + 5);
813 g_strstrip (encoded);
814 decoded_data = hexdecode (encoded, &decoded_data_len, error);
816 if (decoded_data == NULL)
818 g_prefix_error (error, "DATA response is malformed: ");
819 /* invalid encoding, disconnect! */
822 _g_dbus_auth_mechanism_client_data_receive (mech, decoded_data, decoded_data_len);
823 g_free (decoded_data);
825 if (_g_dbus_auth_mechanism_client_get_state (mech) == G_DBUS_AUTH_MECHANISM_STATE_HAVE_DATA_TO_SEND)
830 data = _g_dbus_auth_mechanism_client_data_send (mech, &data_len);
831 encoded_data = hexencode (data);
832 s = g_strdup_printf ("DATA %s\r\n", encoded_data);
833 g_free (encoded_data);
835 debug_print ("CLIENT: writing `%s'", s);
836 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
843 state = CLIENT_STATE_WAITING_FOR_OK;
845 else if (g_str_has_prefix (line, "REJECTED "))
847 /* could be the chosen authentication method just doesn't work. Try
850 goto choose_mechanism;
857 "In WaitingForData: unexpected response `%s'",
865 g_assert_not_reached ();
869 }; /* main authentication client loop */
873 g_object_unref (mech);
874 g_ptr_array_unref (attempted_auth_mechs);
875 g_strfreev (supported_auth_mechs);
876 g_object_unref (dis);
877 g_object_unref (dos);
879 /* ensure return value is NULL if error is set */
880 if (error != NULL && *error != NULL)
886 if (ret_guid != NULL)
888 if (out_negotiated_capabilities != NULL)
889 *out_negotiated_capabilities = negotiated_capabilities;
892 if (credentials != NULL)
893 g_object_unref (credentials);
895 debug_print ("CLIENT: Done, authenticated=%d", ret_guid != NULL);
900 /* ---------------------------------------------------------------------------------------------------- */
903 get_auth_mechanisms (GDBusAuth *auth,
904 gboolean allow_anonymous,
907 const gchar *separator)
913 str = g_string_new (prefix);
915 for (l = auth->priv->available_mechanisms; l != NULL; l = l->next)
917 Mechanism *m = l->data;
919 if (!allow_anonymous && g_strcmp0 (m->name, "ANONYMOUS") == 0)
923 g_string_append (str, separator);
924 g_string_append (str, m->name);
928 g_string_append (str, suffix);
929 return g_string_free (str, FALSE);
935 SERVER_STATE_WAITING_FOR_AUTH,
936 SERVER_STATE_WAITING_FOR_DATA,
937 SERVER_STATE_WAITING_FOR_BEGIN
941 _g_dbus_auth_run_server (GDBusAuth *auth,
942 GDBusAuthObserver *observer,
944 gboolean allow_anonymous,
945 GDBusCapabilityFlags offered_capabilities,
946 GDBusCapabilityFlags *out_negotiated_capabilities,
947 GCredentials **out_received_credentials,
948 GCancellable *cancellable,
953 GDataInputStream *dis;
954 GDataOutputStream *dos;
959 GDBusAuthMechanism *mech;
961 GDBusCapabilityFlags negotiated_capabilities;
962 GCredentials *credentials;
964 debug_print ("SERVER: initiating");
970 negotiated_capabilities = 0;
973 if (!g_dbus_is_guid (guid))
978 "The given guid `%s' is not valid",
983 dis = G_DATA_INPUT_STREAM (g_data_input_stream_new (g_io_stream_get_input_stream (auth->priv->stream)));
984 dos = G_DATA_OUTPUT_STREAM (g_data_output_stream_new (g_io_stream_get_output_stream (auth->priv->stream)));
985 g_filter_input_stream_set_close_base_stream (G_FILTER_INPUT_STREAM (dis), FALSE);
986 g_filter_output_stream_set_close_base_stream (G_FILTER_OUTPUT_STREAM (dos), FALSE);
988 g_data_input_stream_set_newline_type (dis, G_DATA_STREAM_NEWLINE_TYPE_CR_LF);
990 /* first read the NUL-byte (TODO: read credentials if using a unix domain socket) */
992 if (G_IS_UNIX_CONNECTION (auth->priv->stream))
995 credentials = g_unix_connection_receive_credentials (G_UNIX_CONNECTION (auth->priv->stream),
998 if (credentials == NULL && !g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED))
1000 g_propagate_error (error, local_error);
1007 byte = g_data_input_stream_read_byte (dis, cancellable, &local_error);
1008 byte = byte; /* To avoid -Wunused-but-set-variable */
1009 if (local_error != NULL)
1011 g_propagate_error (error, local_error);
1017 byte = g_data_input_stream_read_byte (dis, cancellable, &local_error);
1018 if (local_error != NULL)
1020 g_propagate_error (error, local_error);
1024 if (credentials != NULL)
1026 if (G_UNLIKELY (_g_dbus_debug_authentication ()))
1028 s = g_credentials_to_string (credentials);
1029 debug_print ("SERVER: received credentials `%s'", s);
1035 debug_print ("SERVER: didn't receive any credentials");
1038 state = SERVER_STATE_WAITING_FOR_AUTH;
1043 case SERVER_STATE_WAITING_FOR_AUTH:
1044 debug_print ("SERVER: WaitingForAuth");
1045 line = _my_g_data_input_stream_read_line (dis, &line_length, cancellable, error);
1046 debug_print ("SERVER: WaitingForAuth, read `%s'", line);
1049 if (g_strcmp0 (line, "AUTH") == 0)
1051 s = get_auth_mechanisms (auth, allow_anonymous, "REJECTED ", "\r\n", " ");
1052 debug_print ("SERVER: writing `%s'", s);
1053 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
1061 else if (g_str_has_prefix (line, "AUTH "))
1064 const gchar *encoded;
1065 const gchar *mech_name;
1066 GType auth_mech_to_use_gtype;
1068 tokens = g_strsplit (line, " ", 0);
1071 switch (g_strv_length (tokens))
1074 /* no initial response */
1075 mech_name = tokens[1];
1080 /* initial response */
1081 mech_name = tokens[1];
1082 encoded = tokens[2];
1089 "Unexpected line `%s' while in WaitingForAuth state",
1091 g_strfreev (tokens);
1095 /* TODO: record that the client has attempted to use this mechanism */
1096 //g_debug ("client is trying `%s'", mech_name);
1098 auth_mech_to_use_gtype = find_mech_by_name (auth, mech_name);
1099 if ((auth_mech_to_use_gtype == (GType) 0) ||
1100 (!allow_anonymous && g_strcmp0 (mech_name, "ANONYMOUS") == 0))
1102 /* We don't support this auth mechanism */
1103 g_strfreev (tokens);
1104 s = get_auth_mechanisms (auth, allow_anonymous, "REJECTED ", "\r\n", " ");
1105 debug_print ("SERVER: writing `%s'", s);
1106 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
1113 /* stay in WAITING FOR AUTH */
1114 state = SERVER_STATE_WAITING_FOR_AUTH;
1118 gchar *initial_response;
1119 gsize initial_response_len;
1121 mech = g_object_new (auth_mech_to_use_gtype,
1122 "stream", auth->priv->stream,
1123 "credentials", credentials,
1126 initial_response = NULL;
1127 initial_response_len = 0;
1128 if (encoded != NULL)
1130 initial_response = hexdecode (encoded, &initial_response_len, error);
1131 if (initial_response == NULL)
1133 g_prefix_error (error, "Initial response is malformed: ");
1134 /* invalid encoding, disconnect! */
1135 g_strfreev (tokens);
1140 _g_dbus_auth_mechanism_server_initiate (mech,
1142 initial_response_len);
1143 g_free (initial_response);
1144 g_strfreev (tokens);
1147 switch (_g_dbus_auth_mechanism_server_get_state (mech))
1149 case G_DBUS_AUTH_MECHANISM_STATE_ACCEPTED:
1150 if (observer != NULL &&
1151 !g_dbus_auth_observer_authorize_authenticated_peer (observer,
1156 g_set_error_literal (error,
1159 _("Cancelled via GDBusAuthObserver::authorize-authenticated-peer"));
1164 s = g_strdup_printf ("OK %s\r\n", guid);
1165 debug_print ("SERVER: writing `%s'", s);
1166 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
1172 state = SERVER_STATE_WAITING_FOR_BEGIN;
1176 case G_DBUS_AUTH_MECHANISM_STATE_REJECTED:
1177 s = get_auth_mechanisms (auth, allow_anonymous, "REJECTED ", "\r\n", " ");
1178 debug_print ("SERVER: writing `%s'", s);
1179 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
1185 state = SERVER_STATE_WAITING_FOR_AUTH;
1188 case G_DBUS_AUTH_MECHANISM_STATE_WAITING_FOR_DATA:
1189 state = SERVER_STATE_WAITING_FOR_DATA;
1192 case G_DBUS_AUTH_MECHANISM_STATE_HAVE_DATA_TO_SEND:
1196 gchar *encoded_data;
1197 data = _g_dbus_auth_mechanism_server_data_send (mech, &data_len);
1198 encoded_data = hexencode (data);
1199 s = g_strdup_printf ("DATA %s\r\n", encoded_data);
1200 g_free (encoded_data);
1202 debug_print ("SERVER: writing `%s'", s);
1203 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
1215 g_assert_not_reached ();
1225 "Unexpected line `%s' while in WaitingForAuth state",
1232 case SERVER_STATE_WAITING_FOR_DATA:
1233 debug_print ("SERVER: WaitingForData");
1234 line = _my_g_data_input_stream_read_line (dis, &line_length, cancellable, error);
1235 debug_print ("SERVER: WaitingForData, read `%s'", line);
1238 if (g_str_has_prefix (line, "DATA "))
1241 gchar *decoded_data;
1242 gsize decoded_data_len = 0;
1244 encoded = g_strdup (line + 5);
1246 g_strstrip (encoded);
1247 decoded_data = hexdecode (encoded, &decoded_data_len, error);
1249 if (decoded_data == NULL)
1251 g_prefix_error (error, "DATA response is malformed: ");
1252 /* invalid encoding, disconnect! */
1255 _g_dbus_auth_mechanism_server_data_receive (mech, decoded_data, decoded_data_len);
1256 g_free (decoded_data);
1257 /* oh man, this goto-crap is so ugly.. really need to rewrite the state machine */
1265 "Unexpected line `%s' while in WaitingForData state",
1271 case SERVER_STATE_WAITING_FOR_BEGIN:
1272 debug_print ("SERVER: WaitingForBegin");
1273 /* Use extremely slow (but reliable) line reader - this basically
1274 * does a recvfrom() system call per character
1276 * (the problem with using GDataInputStream's read_line is that because of
1277 * buffering it might start reading into the first D-Bus message that
1278 * appears after "BEGIN\r\n"....)
1280 line = _my_g_input_stream_read_line_safe (g_io_stream_get_input_stream (auth->priv->stream),
1284 debug_print ("SERVER: WaitingForBegin, read `%s'", line);
1287 if (g_strcmp0 (line, "BEGIN") == 0)
1294 else if (g_strcmp0 (line, "NEGOTIATE_UNIX_FD") == 0)
1297 if (offered_capabilities & G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING)
1299 negotiated_capabilities |= G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING;
1300 s = "AGREE_UNIX_FD\r\n";
1301 debug_print ("SERVER: writing `%s'", s);
1302 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
1307 s = "ERROR \"fd passing not offered\"\r\n";
1308 debug_print ("SERVER: writing `%s'", s);
1309 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
1315 g_debug ("Unexpected line `%s' while in WaitingForBegin state", line);
1317 s = "ERROR \"Unknown Command\"\r\n";
1318 debug_print ("SERVER: writing `%s'", s);
1319 if (!g_data_output_stream_put_string (dos, s, cancellable, error))
1325 g_assert_not_reached ();
1331 g_set_error_literal (error,
1334 "Not implemented (server)");
1338 g_object_unref (mech);
1340 g_object_unref (dis);
1342 g_object_unref (dos);
1344 /* ensure return value is FALSE if error is set */
1345 if (error != NULL && *error != NULL)
1352 if (out_negotiated_capabilities != NULL)
1353 *out_negotiated_capabilities = negotiated_capabilities;
1354 if (out_received_credentials != NULL)
1355 *out_received_credentials = credentials != NULL ? g_object_ref (credentials) : NULL;
1358 if (credentials != NULL)
1359 g_object_unref (credentials);
1361 debug_print ("SERVER: Done, authenticated=%d", ret);
1366 /* ---------------------------------------------------------------------------------------------------- */