]> git.0d.be Git - empathy.git/blob - src/empathy-auth-client.c
Style changes from review for ReferenceIdentities code
[empathy.git] / src / empathy-auth-client.c
1 /*
2  * Copyright (C) 2010 Collabora Ltd.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA  02110-1301  USA
18  *
19  * Authors: Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
20  */
21
22 #include <config.h>
23
24 #include <stdlib.h>
25 #include <glib.h>
26 #include <glib/gi18n.h>
27 #include <gtk/gtk.h>
28
29 #include <telepathy-glib/debug-sender.h>
30
31 #define DEBUG_FLAG EMPATHY_DEBUG_TLS
32 #include <libempathy/empathy-debug.h>
33 #include <libempathy/empathy-auth-factory.h>
34 #include <libempathy/empathy-server-sasl-handler.h>
35 #include <libempathy/empathy-server-tls-handler.h>
36 #include <libempathy/empathy-tls-verifier.h>
37 #include <libempathy/empathy-utils.h>
38
39 #include <libempathy-gtk/empathy-password-dialog.h>
40 #include <libempathy-gtk/empathy-tls-dialog.h>
41 #include <libempathy-gtk/empathy-ui-utils.h>
42
43 #include <gnutls/gnutls.h>
44
45 #include <extensions/extensions.h>
46
47 #define TIMEOUT 60
48
49 static gboolean use_timer = TRUE;
50 static guint timeout_id = 0;
51 static guint num_windows = 0;
52
53 static gboolean
54 timeout_cb (gpointer p)
55 {
56   DEBUG ("Timeout reached; exiting...");
57
58   gtk_main_quit ();
59   return FALSE;
60 }
61
62 static void
63 start_timer (void)
64 {
65   if (!use_timer)
66     return;
67
68   if (timeout_id != 0)
69     return;
70
71   DEBUG ("Start timer");
72
73   timeout_id = g_timeout_add_seconds (TIMEOUT, timeout_cb, NULL);
74 }
75
76 static void
77 stop_timer (void)
78 {
79   if (timeout_id == 0)
80     return;
81
82   DEBUG ("Stop timer");
83
84   g_source_remove (timeout_id);
85   timeout_id = 0;
86 }
87
88 static void
89 tls_dialog_response_cb (GtkDialog *dialog,
90     gint response_id,
91     gpointer user_data)
92 {
93   EmpathyTLSCertificate *certificate = NULL;
94   EmpTLSCertificateRejectReason reason = 0;
95   GHashTable *details = NULL;
96   EmpathyTLSDialog *tls_dialog = EMPATHY_TLS_DIALOG (dialog);
97   gboolean remember = FALSE;
98   EmpathyTLSVerifier *verifier = EMPATHY_TLS_VERIFIER (user_data);
99
100   DEBUG ("Response %d", response_id);
101
102   g_object_get (tls_dialog,
103       "certificate", &certificate,
104       "reason", &reason,
105       "remember", &remember,
106       "details", &details,
107       NULL);
108
109   gtk_widget_destroy (GTK_WIDGET (dialog));
110
111   if (response_id == GTK_RESPONSE_YES)
112     {
113       empathy_tls_certificate_accept_async (certificate, NULL, NULL);
114     }
115   else
116     {
117       tp_asv_set_boolean (details, "user-requested", TRUE);
118       empathy_tls_certificate_reject_async (certificate, reason, details,
119           NULL, NULL);
120     }
121
122   if (remember)
123     empathy_tls_verifier_store_exception (verifier);
124
125   g_object_unref (certificate);
126   g_hash_table_unref (details);
127
128   /* restart the timeout */
129   num_windows--;
130
131   if (num_windows > 0)
132     return;
133
134   start_timer ();
135 }
136
137 static void
138 display_interactive_dialog (EmpathyTLSCertificate *certificate,
139     EmpathyTLSVerifier *verifier,
140     EmpTLSCertificateRejectReason reason,
141     GHashTable *details)
142 {
143   GtkWidget *tls_dialog;
144
145   /* stop the timeout */
146   num_windows++;
147   stop_timer ();
148
149   tls_dialog = empathy_tls_dialog_new (certificate, reason, details);
150   g_signal_connect_data (tls_dialog, "response",
151       G_CALLBACK (tls_dialog_response_cb), g_object_ref (verifier),
152       (GClosureNotify)g_object_unref, 0);
153
154   gtk_widget_show (tls_dialog);
155 }
156
157 static void
158 verifier_verify_cb (GObject *source,
159     GAsyncResult *result,
160     gpointer user_data)
161 {
162   gboolean res;
163   EmpTLSCertificateRejectReason reason;
164   GError *error = NULL;
165   EmpathyTLSCertificate *certificate = NULL;
166   GHashTable *details = NULL;
167   gchar *hostname = NULL;
168
169   g_object_get (source,
170       "certificate", &certificate,
171       NULL);
172
173   res = empathy_tls_verifier_verify_finish (EMPATHY_TLS_VERIFIER (source),
174       result, &reason, &details, &error);
175
176   if (error != NULL)
177     {
178       DEBUG ("Error: %s", error->message);
179       display_interactive_dialog (certificate, EMPATHY_TLS_VERIFIER (source),
180               reason, details);
181
182       g_error_free (error);
183     }
184   else
185     {
186       empathy_tls_certificate_accept_async (certificate, NULL, NULL);
187     }
188
189   g_free (hostname);
190   g_object_unref (certificate);
191 }
192
193 static void
194 auth_factory_new_tls_handler_cb (EmpathyAuthFactory *factory,
195     EmpathyServerTLSHandler *handler,
196     gpointer user_data)
197 {
198   EmpathyTLSCertificate *certificate = NULL;
199   gchar *hostname = NULL;
200   gchar **reference_identities = NULL;
201   EmpathyTLSVerifier *verifier;
202
203   DEBUG ("New TLS server handler received from the factory");
204
205   g_object_get (handler,
206       "certificate", &certificate,
207       "hostname", &hostname,
208       "reference-identities", &reference_identities,
209       NULL);
210
211   verifier = empathy_tls_verifier_new (certificate, hostname,
212       (const gchar **) reference_identities);
213   empathy_tls_verifier_verify_async (verifier,
214       verifier_verify_cb, NULL);
215
216   g_object_unref (verifier);
217   g_object_unref (certificate);
218   g_free (hostname);
219   g_strfreev (reference_identities);
220 }
221
222 static void
223 auth_factory_new_sasl_handler_cb (EmpathyAuthFactory *factory,
224     EmpathyServerSASLHandler *handler,
225     gpointer user_data)
226 {
227   GtkWidget *dialog;
228
229   DEBUG ("New SASL server handler received from the factory");
230
231   /* If the handler has the password it will deal with it itself. */
232   if (!empathy_server_sasl_handler_has_password (handler))
233     {
234       dialog = empathy_password_dialog_new (handler);
235       gtk_widget_show (dialog);
236     }
237 }
238
239 int
240 main (int argc,
241     char **argv)
242 {
243   GOptionContext *context;
244   GError *error = NULL;
245   EmpathyAuthFactory *factory;
246   TpDebugSender *debug_sender;
247
248   g_thread_init (NULL);
249
250   context = g_option_context_new (N_(" - Empathy authentication client"));
251   g_option_context_add_group (context, gtk_get_option_group (TRUE));
252   g_option_context_set_translation_domain (context, GETTEXT_PACKAGE);
253
254   if (!g_option_context_parse (context, &argc, &argv, &error))
255     {
256       g_print ("%s\nRun '%s --help' to see a full list of available command "
257           "line options.\n", error->message, argv[0]);
258       g_warning ("Error in empathy-auth-client init: %s", error->message);
259       return EXIT_FAILURE;
260     }
261
262   g_option_context_free (context);
263
264   empathy_gtk_init ();
265   gnutls_global_init ();
266   g_set_application_name (_("Empathy authentication client"));
267
268   /* Make empathy and empathy-auth-client appear as the same app in
269    * gnome-shell */
270   gdk_set_program_class ("Empathy");
271   gtk_window_set_default_icon_name ("empathy");
272   textdomain (GETTEXT_PACKAGE);
273
274 #ifdef ENABLE_DEBUG
275   /* Set up debug sender */
276   debug_sender = tp_debug_sender_dup ();
277   g_log_set_default_handler (tp_debug_sender_log_handler, G_LOG_DOMAIN);
278 #endif
279
280   factory = empathy_auth_factory_dup_singleton ();
281
282   g_signal_connect (factory, "new-server-tls-handler",
283       G_CALLBACK (auth_factory_new_tls_handler_cb), NULL);
284
285   g_signal_connect (factory, "new-server-sasl-handler",
286       G_CALLBACK (auth_factory_new_sasl_handler_cb), NULL);
287
288   if (!empathy_auth_factory_register (factory, &error))
289     {
290       g_critical ("Failed to register the auth factory: %s\n", error->message);
291       g_error_free (error);
292       g_object_unref (factory);
293
294       return EXIT_FAILURE;
295     }
296
297   DEBUG ("Empathy auth client started.");
298
299   if (g_getenv ("EMPATHY_PERSIST") != NULL)
300     {
301       DEBUG ("Timed-exit disabled");
302
303       use_timer = FALSE;
304     }
305
306   start_timer ();
307
308   gtk_main ();
309
310   g_object_unref (factory);
311   g_object_unref (debug_sender);
312
313   return EXIT_SUCCESS;
314 }