Fixed nai; it no longer returns an unowned string
[moonshot-ui.git] / src / moonshot-id.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
33 using Gee;
34
35 extern char* get_cert_valid_before(uchar* inbuf, int inlen, char* outbuf, int outlen);
36
37
38 // A TrustAnchor object can be imported or installed via the API, but cannot
39 // be modified by the user, other than being cleared. Hence the fields are read-only.
40 public class TrustAnchor : Object
41 {
42     private static const string CERT_HEADER = "-----BEGIN CERTIFICATE-----";
43     private static const string CERT_FOOTER = "-----END CERTIFICATE-----";
44
45     public enum TrustAnchorType {
46         CA_CERT,
47         SERVER_CERT
48     }
49  
50     private string _ca_cert = "";
51     private string _subject = "";
52     private string _subject_alt = "";
53     private string _server_cert = "";
54     private string _datetime_added = "";
55     public bool user_verified = false;
56
57     private static string fixup (string s) {
58         return (s == null ? "" : s.strip());
59     }
60
61     public TrustAnchor(string ca_cert, string server_cert, string subject, string subject_alt, bool user_verified) {
62         _ca_cert = fixup(ca_cert);
63         _server_cert = fixup(server_cert);
64         _subject = fixup(subject);
65         _subject_alt = fixup(subject_alt);
66         this.user_verified = user_verified;
67
68         // If we're reading from store, this will be overridden (see set_datetime_added)
69         _datetime_added = "";
70     }
71
72     public TrustAnchor.empty() {
73     }
74
75
76     public string ca_cert {
77         get {
78             return _ca_cert;
79         }
80     }
81
82     public string subject {
83         get {
84             return _subject;
85         }
86     }
87
88     public string subject_alt  {
89         get {
90             return _subject_alt;
91         }
92     }
93
94
95     public string server_cert {
96         get {
97             return _server_cert;
98         }
99     }
100
101     public string datetime_added {
102         get {
103             return _datetime_added;
104         }
105     }
106
107     public bool is_empty() {
108         return ca_cert == "" && subject == "" && subject_alt == "" && server_cert == "";
109     }
110
111     public TrustAnchorType get_anchor_type() {
112         return server_cert == "" ? TrustAnchorType.CA_CERT : TrustAnchorType.SERVER_CERT;
113     }
114
115     internal void set_datetime_added(string datetime) {
116         _datetime_added = fixup(datetime);
117     }
118
119     internal static string format_datetime_now() {
120         DateTime now = new DateTime.now_utc();
121         string dt = now.format("%b %d %T %Y %Z");
122         return dt;
123     }
124
125     public int Compare(TrustAnchor other)
126     {
127         if (this.ca_cert != other.ca_cert) {
128             // IdCard.logger.trace("TrustAnchor.Compare: this.ca_cert='%s'; other.ca_cert='%s'".printf(this.ca_cert, other.ca_cert));
129             return 1;
130         }
131         if (this.subject != other.subject) {
132             // IdCard.logger.trace("TrustAnchor.Compare: this.subject='%s'; other.subject='%s'".printf(this.subject, other.subject));
133             return 1;
134         }
135         if (this.subject_alt != other.subject_alt) {
136             // IdCard.logger.trace("TrustAnchor.Compare: this.subject_alt='%s'; other.subject_alt='%s'".printf(this.subject_alt, other.subject_alt));
137             return 1;
138         }
139         if (this.server_cert != other.server_cert) {
140             // IdCard.logger.trace("TrustAnchor.Compare: this.server_cert=%s'; other.server_cert='%s'".printf(this.server_cert, other.server_cert));
141             return 1;
142         }
143
144         // Do not compare the user_verified and datetime_added fields; they are not essential.
145
146         return 0;
147     }
148
149     public string? get_expiration_date(out string? err_out=null)
150     {
151         if (this.ca_cert == "") {
152             if (&err_out != null) {
153                 err_out = "Trust anchor does not have a ca_certificate";
154                 return null;
155             }
156         }
157
158         string cert = this.ca_cert;
159         cert.chomp();
160
161         uchar[] binary = Base64.decode(cert);
162         IdCard.logger.trace("get_expiration_date: encoded length=%d; decoded length=%d".printf(cert.length, binary.length));
163
164         char buf[64];
165         string err = (string) get_cert_valid_before(binary, binary.length, buf, 64);
166         if (err != "") {
167             IdCard.logger.error(@"get_expiration_date: get_cert_valid_before returned '$err'");
168             if (&err_out != null) {
169                 err_out = err;
170             }
171             return null;
172         }
173             
174         string date = (string) buf;
175         IdCard.logger.trace(@"get_expiration_date: get_cert_valid_before returned '$date'");
176
177         return date;
178     }
179 }
180
181
182 public struct Rule
183 {
184     public string pattern;
185     public string always_confirm;
186     public int Compare(Rule other) {
187         if (this.pattern != other.pattern)
188             return 1;
189         if (this.always_confirm != other.always_confirm)
190             return 1;
191         return 0;
192     }
193 }
194
195 public class IdCard : Object
196 {
197     internal static MoonshotLogger logger = get_logger("IdCard");
198
199     public const string NO_IDENTITY = "No Identity";
200
201     private string _username = "";
202     private string _issuer = "";
203
204     public string display_name { get; set; default = ""; }
205   
206     public string username { 
207         public get {
208             return _username;
209         }
210         public set {
211             _username = value;
212             update_nai();
213         }
214     }
215
216     public string issuer { 
217         public get {
218             return _issuer;
219         }
220         public set {
221             _issuer = value;
222             update_nai();
223         }
224     }
225
226     private void update_nai() {
227         _nai = username + "@" + issuer;
228     }
229
230 #if GNOME_KEYRING
231     private unowned string _password;
232     public string password {
233         get {
234             return (_password!=null) ? _password : "";
235         }
236         set {
237             if (_password != null) {
238                 GnomeKeyring.memory_free((void *)_password);
239                 _password = null;
240             }
241             if (value != null)
242                 _password = GnomeKeyring.memory_strdup(value); 
243         }
244     }
245 #else
246     public string password { get; set; default = null; }
247 #endif
248
249     private Rule[] _rules = new Rule[0];
250     public Rule[] rules {
251         get {return _rules;}
252         internal set {_rules = value ?? new Rule[0] ;}
253     }
254
255     private ArrayList<string> _services = new ArrayList<string>();
256
257     internal ArrayList<string> services {
258          get {return  _services;}
259     }
260
261     // Returns the list of services as a string, using the given separator.
262     internal string get_services_string(string sep) {
263         if (_services.is_empty) {
264             return "";
265         }
266
267         // ArrayList.to_array() seems to be unreliable -- it causes segfaults 
268         // semi-randomly. (Possibly because it returns an unowned ref?)
269         // return string.joinv(sep, _services.to_array());
270         // 
271         // This problem may be related to the one noted elsewhere as the
272         // "Centos vala array property bug".
273
274         string[] svcs = new string[_services.size];
275         for (int i = 0; i < _services.size; i++) {
276             svcs[i] = _services[i];
277         }
278
279         return string.joinv(sep, svcs);
280     }
281
282     internal void update_services(string[] services) {
283         _services.clear();
284
285         // Doesn't exist in older versions of libgee:
286         // _services.add_all_array(services);
287
288         if (services != null) {
289             foreach (string s in services) {
290                 _services.add(s);
291             }
292         }
293     } 
294
295     internal void update_services_from_list(ArrayList<string> services) {
296         if (services == this._services) {
297             // Don't try to update from self.
298             return;
299         }
300
301         _services.clear();
302
303         if (services != null) {
304             _services.add_all(services);
305         }
306     } 
307
308
309     public bool temporary {get; set; default = false; }
310
311     private TrustAnchor _trust_anchor = new TrustAnchor.empty();
312     public TrustAnchor trust_anchor  { 
313         get {
314             return _trust_anchor;
315         }
316     }
317
318     // For use by storage implementations.
319     internal void set_trust_anchor_from_store(TrustAnchor ta) {
320         _trust_anchor = ta;
321     }
322
323     internal void clear_trust_anchor() {
324         _trust_anchor = new TrustAnchor.empty();
325     }
326   
327     public string nai { public get; private set;}
328
329     public bool store_password { get; set; default = false; }
330
331     public bool is_no_identity() 
332     {
333         return (display_name == NO_IDENTITY);
334     }
335
336     public enum DiffFlags {
337         DISPLAY_NAME,
338         USERNAME,
339         PASSWORD,
340         ISSUER,
341         RULES,
342         SERVICES,
343         TRUST_ANCHOR;
344     }
345
346     public int Compare(IdCard other)
347     {
348         int diff = 0;
349         if (this.display_name != other.display_name)
350             diff |= 1 << DiffFlags.DISPLAY_NAME;
351
352         if (this.username != other.username)
353             diff |= 1 << DiffFlags.USERNAME;
354
355         if (this.password != other.password)
356             diff |= 1 << DiffFlags.PASSWORD;
357
358         if (this.issuer != other.issuer)
359             diff |= 1 << DiffFlags.ISSUER;
360
361         if (CompareRules(this.rules, other.rules)!=0)
362             diff |= 1 << DiffFlags.RULES;
363
364         if (CompareStringArrayList(this._services, other._services)!=0)
365             diff |= 1 << DiffFlags.SERVICES;
366
367         if (this.trust_anchor.Compare(other.trust_anchor)!=0)
368             diff |= 1 << DiffFlags.TRUST_ANCHOR;
369
370         // stdout.printf("Diff Flags: %x\n", diff);
371         if (this.display_name == other.display_name && diff != 0) {
372             logger.trace("Compare: Two IDs with display_name '%s', but diff_flags=%0x".printf(this.display_name, diff));
373         }
374         return diff;
375     }
376
377     public static IdCard NewNoIdentity() 
378     { 
379         IdCard card = new IdCard();
380         card.display_name = NO_IDENTITY;
381         return card;
382     }
383
384     ~IdCard() {
385         password = null;
386     }
387
388     internal void add_rule(Rule rule) {
389         _rules += rule;
390     }
391 }
392
393 public int CompareRules(Rule[] a, Rule[] b)
394 {
395     if (a.length != b.length) {
396         return 1;
397     }
398
399     for (int i = 0; i < a.length; i++) {
400         if (a[i].Compare(b[i]) != 0) {
401             return 1;
402         }
403     }
404     return 0;
405 }
406
407 public int CompareStringArrayList(ArrayList<string> a, ArrayList<string> b)
408 {
409     if (a.size != b.size) {
410         return 1;
411     }
412
413     for (int i = 0; i < a.size; i++) {
414         if (a[i] != b[i]) {
415             return 1;
416         }
417     }
418     return 0;
419 }