update man page
[claws.git] / src / passphrase.c
1 /* passphrase.c - GTK+ based passphrase callback
2  *      Copyright (C) 2001 Werner Koch (dd9jn)
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (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
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #if USE_GPGME
24
25 #include <string.h>
26 #include <sys/types.h>
27 #include <sys/mman.h>
28 #include <glib.h>
29 #include <gdk/gdkkeysyms.h>
30 #include <gdk/gdkx.h>  /* GDK_DISPLAY() */
31 #include <gtk/gtkmain.h>
32 #include <gtk/gtkwidget.h>
33 #include <gtk/gtkwindow.h>
34 #include <gtk/gtkvbox.h>
35 #include <gtk/gtktable.h>
36 #include <gtk/gtklabel.h>
37 #include <gtk/gtkentry.h>
38 #include <gtk/gtkhbbox.h>
39 #include <gtk/gtkbutton.h>
40 #include <gtk/gtkfilesel.h>
41 #include <gtk/gtksignal.h>
42
43 #include "intl.h"
44 #include "passphrase.h"
45 #include "prefs_common.h"
46 #include "manage_window.h"
47 #include "utils.h"
48
49 static int grab_all = 0;
50
51 static gboolean pass_ack;
52 static gchar *last_pass = NULL;
53
54 static void passphrase_ok_cb(GtkWidget *widget, gpointer data);
55 static void passphrase_cancel_cb(GtkWidget *widget, gpointer data);
56 static gint passphrase_deleted(GtkWidget *widget, GdkEventAny *event,
57                                gpointer data);
58 static void passphrase_key_pressed(GtkWidget *widget, GdkEventKey *event,
59                                    gpointer data);
60 static gchar* passphrase_mbox (const gchar *desc);
61
62
63 static GtkWidget *create_description (const gchar *desc);
64
65 void
66 gpgmegtk_set_passphrase_grab (gint yes)
67 {
68     grab_all = yes;
69 }
70
71 static gchar*
72 passphrase_mbox (const gchar *desc)
73 {
74     gchar *the_passphrase = NULL;
75     GtkWidget *vbox;
76     GtkWidget *table;
77     GtkWidget *pass_label;
78     GtkWidget *confirm_box;
79     GtkWidget *window;
80     GtkWidget *pass_entry;
81     GtkWidget *ok_button;
82     GtkWidget *cancel_button;
83
84     window = gtk_window_new(GTK_WINDOW_DIALOG);
85     gtk_window_set_title(GTK_WINDOW(window), _("Passphrase"));
86     gtk_widget_set_usize(window, 450, -1);
87     gtk_container_set_border_width(GTK_CONTAINER(window), 4);
88     gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
89     gtk_window_set_modal(GTK_WINDOW(window), TRUE);
90     gtk_window_set_policy(GTK_WINDOW(window), FALSE, FALSE, FALSE);
91     gtk_signal_connect(GTK_OBJECT(window), "delete_event",
92                        GTK_SIGNAL_FUNC(passphrase_deleted), NULL);
93     gtk_signal_connect(GTK_OBJECT(window), "key_press_event",
94                        GTK_SIGNAL_FUNC(passphrase_key_pressed), NULL);
95     MANAGE_WINDOW_SIGNALS_CONNECT(window);
96     manage_window_set_transient(GTK_WINDOW(window));
97
98     vbox = gtk_vbox_new(FALSE, 8);
99     gtk_container_add(GTK_CONTAINER(window), vbox);
100
101     if (desc) {
102         GtkWidget *label;
103         label = create_description (desc);
104         gtk_box_pack_start (GTK_BOX(vbox), label, TRUE, TRUE, 0);
105     }
106
107     table = gtk_table_new(2, 2, FALSE);
108     gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
109     gtk_container_set_border_width(GTK_CONTAINER(table), 8);
110     gtk_table_set_row_spacings(GTK_TABLE(table), 12);
111     gtk_table_set_col_spacings(GTK_TABLE(table), 8);
112
113
114     pass_label = gtk_label_new("");
115     gtk_table_attach (GTK_TABLE(table), pass_label, 0, 1, 0, 1,
116                       GTK_FILL, GTK_EXPAND|GTK_FILL, 0, 0);
117     gtk_misc_set_alignment (GTK_MISC (pass_label), 1, 0.5);
118
119     pass_entry = gtk_entry_new();
120     gtk_table_attach (GTK_TABLE(table), pass_entry, 1, 2, 0, 1,
121                       GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
122     gtk_entry_set_visibility (GTK_ENTRY(pass_entry), FALSE);
123     gtk_widget_grab_focus (pass_entry);
124
125
126     confirm_box = gtk_hbutton_box_new ();
127     gtk_button_box_set_layout (GTK_BUTTON_BOX(confirm_box), GTK_BUTTONBOX_END);
128     gtk_button_box_set_spacing (GTK_BUTTON_BOX(confirm_box), 5);
129
130     ok_button = gtk_button_new_with_label (_("OK"));
131     GTK_WIDGET_SET_FLAGS (ok_button, GTK_CAN_DEFAULT);
132     gtk_box_pack_start (GTK_BOX(confirm_box), ok_button, TRUE, TRUE, 0);
133
134     cancel_button = gtk_button_new_with_label (_("Cancel"));
135     GTK_WIDGET_SET_FLAGS (cancel_button, GTK_CAN_DEFAULT);
136     gtk_box_pack_start(GTK_BOX(confirm_box), cancel_button, TRUE, TRUE, 0);
137
138     gtk_box_pack_end(GTK_BOX(vbox), confirm_box, FALSE, FALSE, 0);
139     gtk_widget_grab_default (ok_button);
140
141     gtk_signal_connect(GTK_OBJECT(ok_button), "clicked",
142                        GTK_SIGNAL_FUNC(passphrase_ok_cb), NULL);
143     gtk_signal_connect(GTK_OBJECT(pass_entry), "activate",
144                        GTK_SIGNAL_FUNC(passphrase_ok_cb), NULL);
145     gtk_signal_connect(GTK_OBJECT(cancel_button), "clicked",
146                        GTK_SIGNAL_FUNC(passphrase_cancel_cb), NULL);
147
148     if (grab_all)
149         gtk_object_set (GTK_OBJECT(window), "type", GTK_WINDOW_POPUP, NULL);
150     gtk_window_set_position (GTK_WINDOW(window), GTK_WIN_POS_CENTER);
151     if (grab_all)   
152         gtk_window_set_policy (GTK_WINDOW(window), FALSE, FALSE, TRUE);
153     
154     gtk_widget_show_all(window);
155
156     if (grab_all) {
157         XGrabServer(GDK_DISPLAY());
158         if ( gdk_pointer_grab ( window->window, TRUE, 0,
159                                 NULL, NULL, GDK_CURRENT_TIME)) {
160             XUngrabServer ( GDK_DISPLAY() );
161             g_warning ("OOPS: Could not grab mouse\n");
162             gtk_widget_destroy (window);
163             return NULL;
164         }
165         if ( gdk_keyboard_grab( window->window, FALSE, GDK_CURRENT_TIME )) {
166             gdk_pointer_ungrab (GDK_CURRENT_TIME);
167             XUngrabServer ( GDK_DISPLAY() );
168             g_warning ("OOPS: Could not grab keyboard\n");
169             gtk_widget_destroy (window);
170             return NULL;
171         }
172     }
173
174     gtk_main();
175
176     if (grab_all) {
177         XUngrabServer (GDK_DISPLAY());
178         gdk_pointer_ungrab (GDK_CURRENT_TIME);
179         gdk_keyboard_ungrab (GDK_CURRENT_TIME);
180         gdk_flush();
181     }
182
183     manage_window_focus_out(window, NULL, NULL);
184
185     if (pass_ack) {
186         the_passphrase = gtk_entry_get_text(GTK_ENTRY(pass_entry));
187         if (the_passphrase) /* Hmmm: Do we really need this? */
188             the_passphrase = g_strdup (the_passphrase);
189     }
190     gtk_widget_destroy (window);
191
192     return the_passphrase;
193 }
194
195
196 static void 
197 passphrase_ok_cb(GtkWidget *widget, gpointer data)
198 {
199     pass_ack = TRUE;
200     gtk_main_quit();
201 }
202
203 static void 
204 passphrase_cancel_cb(GtkWidget *widget, gpointer data)
205 {
206     pass_ack = FALSE;
207     gtk_main_quit();
208 }
209
210
211 static gint
212 passphrase_deleted(GtkWidget *widget, GdkEventAny *event, gpointer data)
213 {
214     passphrase_cancel_cb(NULL, NULL);
215     return TRUE;
216 }
217
218
219 static void 
220 passphrase_key_pressed(GtkWidget *widget, GdkEventKey *event, gpointer data)
221 {
222     if (event && event->keyval == GDK_Escape)
223         passphrase_cancel_cb(NULL, NULL);
224 }
225
226 static gint 
227 linelen (const gchar *s)
228 {
229     gint i;
230
231     for (i = 0; *s && *s != '\n'; s++, i++)
232         ;
233
234     return i;
235 }
236
237 static GtkWidget *
238 create_description (const gchar *desc)
239 {
240     const gchar *cmd = NULL, *uid = NULL, *info = NULL;
241     gchar *buf;
242     GtkWidget *label;
243
244     cmd = desc;
245     uid = strchr (cmd, '\n');
246     if (uid) {
247         info = strchr (++uid, '\n');
248         if (info )
249             info++;
250     }
251
252     if (!uid)
253         uid = _("[no user id]");
254     if (!info)
255         info = "";
256
257     buf = g_strdup_printf (_("%sPlease enter the passphrase for:\n\n"
258                            "  %.*s  \n"
259                            "(%.*s)\n"),
260                            !strncmp (cmd, "TRY_AGAIN", 9 ) ?
261                            _("Bad passphrase! Try again...\n\n") : "",
262                            linelen (uid), uid, linelen (info), info);
263
264     label = gtk_label_new (buf);
265     g_free (buf);
266
267     return label;
268 }
269
270 static int free_passphrase(gpointer _unused)
271 {
272     if (last_pass != NULL) {
273         munlock(last_pass, strlen(last_pass));
274         g_free(last_pass);
275         last_pass = NULL;
276         debug_print("%% passphrase removed");
277     }
278     
279     return FALSE;
280 }
281
282 const char*
283 gpgmegtk_passphrase_cb (void *opaque, const char *desc, void **r_hd)
284 {
285     struct passphrase_cb_info_s *info = opaque;
286     GpgmeCtx ctx = info ? info->c : NULL;
287     const char *pass;
288
289     if (!desc) {
290         /* FIXME: cleanup by looking at *r_hd */
291         return NULL;
292     }
293     if (prefs_common.store_passphrase && last_pass != NULL &&
294         strncmp(desc, "TRY_AGAIN", 9) != 0)
295         return g_strdup(last_pass);
296
297     gpgmegtk_set_passphrase_grab (prefs_common.passphrase_grab);
298     debug_print ("%% requesting passphrase for `%s': ", desc);
299     pass = passphrase_mbox (desc);
300     gpgmegtk_free_passphrase();
301     if (!pass) {
302         debug_print ("%% cancel passphrase entry");
303         gpgme_cancel (ctx);
304     }
305     else {
306         if (prefs_common.store_passphrase) {
307             last_pass = g_strdup(pass);
308             if (mlock(last_pass, strlen(last_pass)) == -1)
309                 debug_print("%% locking passphrase failed");
310
311             if (prefs_common.store_passphrase_timeout > 0) {
312                 gtk_timeout_add(prefs_common.store_passphrase_timeout*60*1000,
313                                 free_passphrase, NULL);
314             }
315         }
316         debug_print ("%% sending passphrase");
317     }
318
319     return pass;
320 }
321
322 void gpgmegtk_free_passphrase(void)
323 {
324     (void)free_passphrase(NULL); /* could be inline */
325 }
326
327 #endif /* USE_GPGME */