Squashed merge of many commits, including (but not limited to) :
[moonshot-ui.git] / src / moonshot-trust-anchor-dialog.vala
1 /*
2  * Copyright (c) 2011-2016, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31 */
32 using Gtk;
33
34 public delegate void TrustAnchorConfirmationCallback(TrustAnchorConfirmationRequest request);
35
36 public class TrustAnchorConfirmationRequest : GLib.Object {
37     static MoonshotLogger logger = get_logger("TrustAnchorConfirmationRequest");
38
39     IdentityManagerApp parent_app;
40     string userid;
41     string realm;
42     string ca_hash;
43     public bool confirmed = false;
44
45     TrustAnchorConfirmationCallback callback = null;
46
47     public TrustAnchorConfirmationRequest(IdentityManagerApp parent_app,
48                                           string userid,
49                                           string realm,
50                                           string ca_hash)
51     {
52         this.parent_app = parent_app;
53         this.userid = userid;
54         this.realm = realm;
55         this.ca_hash = ca_hash;
56     }
57
58     public void set_callback(owned TrustAnchorConfirmationCallback cb)
59     {
60 //        #if VALA_0_12
61             this.callback = ((owned) cb);
62 //        #else
63 //            this.callback = ((IdCard) => cb(IdCard));
64 //        #endif
65     }
66
67     public bool execute() {
68
69         string nai = userid + "@" + realm;
70         IdCard? card = parent_app.model.find_id_card(nai, parent_app.use_flat_file_store);
71         if (card == null) {
72             logger.warn(@"execute: Could not find ID card for NAI $nai; returning false.");
73             return_confirmation(false);
74             return false;
75         }
76         
77         if (!(card.trust_anchor.is_empty() || card.trust_anchor.get_anchor_type() == TrustAnchor.TrustAnchorType.SERVER_CERT)) {
78             logger.warn(@"execute: Trust anchor type for NAI $nai is not empty or SERVER_CERT; returning true.");
79             return_confirmation(true);
80             return false;
81         }
82
83         if (card.trust_anchor.server_cert == ca_hash) {
84             logger.trace(@"execute: Fingerprint for $nai matches stored value; returning true.");
85             return_confirmation(true);
86             return false;
87         }
88
89         var dialog = new TrustAnchorDialog(userid, realm, ca_hash);
90         var response = dialog.run();
91         dialog.destroy();
92         bool is_confirmed = (response == ResponseType.OK);
93
94         if (is_confirmed) {
95             logger.trace(@"execute: Fingerprint confirmed; updating stored value.");
96
97             card.trust_anchor.update_server_fingerprint(ca_hash);
98             parent_app.model.update_card(card);
99         }            
100
101         return_confirmation(is_confirmed);
102
103         /* This function works as a GSourceFunc, so it can be passed to
104          * the main loop from other threads
105          */
106         return false;
107     }
108
109     private void return_confirmation(bool confirmed) {
110         return_if_fail(callback != null);
111
112         this.confirmed = confirmed;
113         logger.trace(@"return_confirmation: confirmed=$confirmed");
114
115         // Send back the confirmation (we can't directly run the
116         // callback because we may be being called from a 'yield')
117         GLib.Idle.add(
118             () => {
119                 logger.trace("return_confirmation[Idle handler]: invoking callback");
120                 callback(this);
121                 return false;
122             }
123             );
124     }
125 }
126
127
128
129 class TrustAnchorDialog : Dialog
130 {
131     private static Gdk.Color white = make_color(65535, 65535, 65535);
132
133     public bool complete = false;
134
135     public TrustAnchorDialog(string userid,
136                              string realm,
137                              string ca_hash)
138     {
139         this.set_title(_("Trust Anchor"));
140         this.set_modal(true);
141 //        this.set_transient_for(parent);
142         set_bg_color(this);
143
144         this.add_buttons(_("Cancel"), ResponseType.CANCEL,
145                          _("Confirm"), ResponseType.OK);
146
147         this.set_default_response(ResponseType.OK);
148
149         var content_area = this.get_content_area();
150         ((Box) content_area).set_spacing(12);
151         set_bg_color(content_area);
152
153         Label dialog_label = new Label("");
154         dialog_label.set_alignment(0, 0);
155
156         string label_markup = "<span font-weight='heavy'>" + _("You are using this identity for the first time with the following trust anchor:") + "</span>";
157
158         dialog_label.set_markup(label_markup);
159         dialog_label.set_line_wrap(true);
160         dialog_label.set_width_chars(60);
161                                                    
162         var user_label = new Label(_("Username: ") + userid);
163         user_label.set_alignment(0, 0.5f);
164
165         var realm_label = new Label(_("Realm: ") + realm);
166         realm_label.set_alignment(0, 0.5f);
167
168         Label confirm_label = new Label(_("Please confirm that this is the correct trust anchor."));
169         confirm_label.set_alignment(0, 0.5f);
170
171         var trust_anchor_display = make_ta_fingerprint_widget(ca_hash);
172
173         var vbox = new VBox(false, 0);
174         vbox.set_border_width(6);
175         vbox.pack_start(dialog_label, true, true, 12);
176         vbox.pack_start(user_label, true, true, 2);
177         vbox.pack_start(realm_label, true, true, 2);
178         vbox.pack_start(trust_anchor_display, true, true, 0);
179         vbox.pack_start(confirm_label, true, true, 12);
180
181         ((Container) content_area).add(vbox);
182
183         this.set_border_width(6);
184         this.set_resizable(false);
185
186         this.response.connect(on_response);
187
188         this.show_all();
189     }
190
191     private void on_response(Dialog source, int response_id)
192     {
193         switch (response_id) {
194         case ResponseType.OK:
195             complete = true;
196             break;
197         case ResponseType.CANCEL:
198             complete = true;
199             break;
200         }
201     }
202 }