-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcert.cc
546 lines (480 loc) · 14.8 KB
/
cert.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
// Copyright (C) 2002 Graydon Hoare <[email protected]>
//
// This program is made available under the GNU GPL version 2.0 or
// greater. See the accompanying file COPYING for details.
//
// This program is distributed WITHOUT ANY WARRANTY; without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE.
#include "base.hh"
#include <limits>
#include <sstream>
#include "vector.hh"
#include <boost/shared_ptr.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/tuple/tuple_comparison.hpp>
#include "lexical_cast.hh"
#include "cert.hh"
#include "constants.hh"
#include "database.hh"
#include "interner.hh"
#include "keys.hh"
#include "key_store.hh"
#include "netio.hh"
#include "options.hh"
#include "project.hh"
#include "revision.hh"
#include "sanity.hh"
#include "simplestring_xform.hh"
#include "transforms.hh"
#include "ui.hh"
using std::make_pair;
using std::map;
using std::pair;
using std::set;
using std::string;
using std::vector;
using std::remove_if;
using boost::shared_ptr;
using boost::get;
using boost::tuple;
using boost::lexical_cast;
// The alternaive is to #include "cert.hh" in vocab.*, which is even
// uglier.
#include "vocab_macros.hh"
cc_DECORATE(revision)
cc_DECORATE(manifest)
template <typename T>
static inline void
verify(T & val)
{}
template class revision<cert>;
template class manifest<cert>;
// FIXME: the bogus-cert family of functions is ridiculous
// and needs to be replaced, or at least factored.
struct
bogus_cert_p
{
database & db;
bogus_cert_p(database & db) : db(db) {};
bool cert_is_bogus(cert const & c) const
{
cert_status status = check_cert(db, c);
if (status == cert_ok)
{
L(FL("cert ok"));
return false;
}
else if (status == cert_bad)
{
string txt;
cert_signable_text(c, txt);
W(F("ignoring bad signature by '%s' on '%s'") % c.key() % txt);
return true;
}
else
{
I(status == cert_unknown);
string txt;
cert_signable_text(c, txt);
W(F("ignoring unknown signature by '%s' on '%s'") % c.key() % txt);
return true;
}
}
bool operator()(revision<cert> const & c) const
{
return cert_is_bogus(c.inner());
}
bool operator()(manifest<cert> const & c) const
{
return cert_is_bogus(c.inner());
}
};
void
erase_bogus_certs(database & db,
vector< manifest<cert> > & certs)
{
typedef vector< manifest<cert> >::iterator it;
it e = remove_if(certs.begin(), certs.end(), bogus_cert_p(db));
certs.erase(e, certs.end());
vector< manifest<cert> > tmp_certs;
// Sorry, this is a crazy data structure
typedef tuple< manifest_id, cert_name, cert_value > trust_key;
typedef map< trust_key,
pair< shared_ptr< set<rsa_keypair_id> >, it > > trust_map;
trust_map trust;
for (it i = certs.begin(); i != certs.end(); ++i)
{
trust_key key = trust_key(manifest_id(i->inner().ident.inner()),
i->inner().name,
i->inner().value);
trust_map::iterator j = trust.find(key);
shared_ptr< set<rsa_keypair_id> > s;
if (j == trust.end())
{
s.reset(new set<rsa_keypair_id>());
trust.insert(make_pair(key, make_pair(s, i)));
}
else
s = j->second.first;
s->insert(i->inner().key);
}
for (trust_map::const_iterator i = trust.begin();
i != trust.end(); ++i)
{
if (db.hook_get_manifest_cert_trust(*(i->second.first),
get<0>(i->first),
get<1>(i->first),
get<2>(i->first)))
{
if (global_sanity.debug_p())
L(FL("trust function liked %d signers of %s cert on manifest %s")
% i->second.first->size()
% get<1>(i->first)
% get<0>(i->first));
tmp_certs.push_back(*(i->second.second));
}
else
{
W(F("trust function disliked %d signers of %s cert on manifest %s")
% i->second.first->size()
% get<1>(i->first)
% get<0>(i->first));
}
}
certs = tmp_certs;
}
void
erase_bogus_certs(database & db,
vector< revision<cert> > & certs)
{
typedef vector< revision<cert> >::iterator it;
it e = remove_if(certs.begin(), certs.end(), bogus_cert_p(db));
certs.erase(e, certs.end());
vector< revision<cert> > tmp_certs;
// sorry, this is a crazy data structure
typedef tuple< revision_id, cert_name, cert_value > trust_key;
typedef map< trust_key,
pair< shared_ptr< set<rsa_keypair_id> >, it > > trust_map;
trust_map trust;
for (it i = certs.begin(); i != certs.end(); ++i)
{
trust_key key = trust_key(i->inner().ident,
i->inner().name,
i->inner().value);
trust_map::iterator j = trust.find(key);
shared_ptr< set<rsa_keypair_id> > s;
if (j == trust.end())
{
s.reset(new set<rsa_keypair_id>());
trust.insert(make_pair(key, make_pair(s, i)));
}
else
s = j->second.first;
s->insert(i->inner().key);
}
for (trust_map::const_iterator i = trust.begin();
i != trust.end(); ++i)
{
if (db.hook_get_revision_cert_trust(*(i->second.first),
get<0>(i->first),
get<1>(i->first),
get<2>(i->first)))
{
if (global_sanity.debug_p())
L(FL("trust function liked %d signers of %s cert on revision %s")
% i->second.first->size()
% get<1>(i->first)
% get<0>(i->first));
tmp_certs.push_back(*(i->second.second));
}
else
{
W(F("trust function disliked %d signers of %s cert on revision %s")
% i->second.first->size()
% get<1>(i->first)
% get<0>(i->first));
}
}
certs = tmp_certs;
}
// cert-managing routines
cert::cert()
{}
cert::cert(std::string const & s)
{
read_cert(s, *this);
}
cert::cert(std::string const & s, made_from_t m)
: origin_aware(m)
{
read_cert(s, *this);
}
cert::cert(revision_id const & ident,
cert_name const & name,
cert_value const & value,
rsa_keypair_id const & key)
: ident(ident), name(name), value(value), key(key)
{}
cert::cert(revision_id const & ident,
cert_name const & name,
cert_value const & value,
rsa_keypair_id const & key,
rsa_sha1_signature const & sig)
: ident(ident), name(name), value(value), key(key), sig(sig)
{}
bool
cert::operator<(cert const & other) const
{
return (ident < other.ident)
|| ((ident == other.ident) && name < other.name)
|| (((ident == other.ident) && name == other.name)
&& value < other.value)
|| ((((ident == other.ident) && name == other.name)
&& value == other.value) && key < other.key)
|| (((((ident == other.ident) && name == other.name)
&& value == other.value) && key == other.key) && sig < other.sig);
}
bool
cert::operator==(cert const & other) const
{
return
(ident == other.ident)
&& (name == other.name)
&& (value == other.value)
&& (key == other.key)
&& (sig == other.sig);
}
// netio support
void
read_cert(string const & in, cert & t)
{
size_t pos = 0;
id hash = id(extract_substring(in, pos,
constants::merkle_hash_length_in_bytes,
"cert hash"));
revision_id ident = revision_id(extract_substring(in, pos,
constants::merkle_hash_length_in_bytes,
"cert ident"));
string name, val, key, sig;
extract_variable_length_string(in, name, pos, "cert name");
extract_variable_length_string(in, val, pos, "cert val");
extract_variable_length_string(in, key, pos, "cert key");
extract_variable_length_string(in, sig, pos, "cert sig");
assert_end_of_buffer(in, pos, "cert");
cert tmp(ident, cert_name(name), cert_value(val), rsa_keypair_id(key),
rsa_sha1_signature(sig));
id check;
cert_hash_code(tmp, check);
if (!(check == hash))
throw bad_decode(F("calculated cert hash '%s' does not match '%s'")
% check % hash);
t = tmp;
}
void
write_cert(cert const & t, string & out)
{
string name, key;
id hash;
cert_hash_code(t, hash);
out.append(hash());
out.append(t.ident.inner()());
insert_variable_length_string(t.name(), out);
insert_variable_length_string(t.value(), out);
insert_variable_length_string(t.key(), out);
insert_variable_length_string(t.sig(), out);
}
void
cert_signable_text(cert const & t, string & out)
{
base64<cert_value> val_encoded(encode_base64(t.value));
string ident_encoded(encode_hexenc(t.ident.inner()()));
out.clear();
out.reserve(4 + t.name().size() + ident_encoded.size()
+ val_encoded().size());
out += '[';
out.append(t.name());
out += '@';
out.append(ident_encoded);
out += ':';
append_without_ws(out, val_encoded());
out += ']';
L(FL("cert: signable text %s") % out);
}
void
cert_hash_code(cert const & t, id & out)
{
base64<rsa_sha1_signature> sig_encoded(encode_base64(t.sig));
base64<cert_value> val_encoded(encode_base64(t.value));
string ident_encoded(encode_hexenc(t.ident.inner()()));
string tmp;
tmp.reserve(4 + ident_encoded.size()
+ t.name().size() + val_encoded().size()
+ t.key().size() + sig_encoded().size());
tmp.append(ident_encoded);
tmp += ':';
tmp.append(t.name());
tmp += ':';
append_without_ws(tmp, val_encoded());
tmp += ':';
tmp.append(t.key());
tmp += ':';
append_without_ws(tmp, sig_encoded());
data tdat(tmp);
calculate_ident(tdat, out);
}
cert_status
check_cert(database & db, cert const & t)
{
string signed_text;
cert_signable_text(t, signed_text);
return db.check_signature(t.key, signed_text, t.sig);
}
bool
put_simple_revision_cert(database & db,
key_store & keys,
revision_id const & id,
cert_name const & nm,
cert_value const & val)
{
I(!keys.signing_key().empty());
cert t(id, nm, val, keys.signing_key);
string signed_text;
cert_signable_text(t, signed_text);
load_key_pair(keys, t.key);
keys.make_signature(db, t.key, signed_text, t.sig);
revision<cert> cc(t);
return db.put_revision_cert(cc);
}
// "special certs"
// Guess which branch is appropriate for a commit below IDENT.
// OPTS may override. Branch name is returned in BRANCHNAME.
// Does not modify branch state in OPTS.
void
guess_branch(options & opts, project_t & project,
revision_id const & ident, branch_name & branchname)
{
if (opts.branch_given && !opts.branchname().empty())
branchname = opts.branchname;
else
{
N(!ident.inner()().empty(),
F("no branch found for empty revision, "
"please provide a branch name"));
set<branch_name> branches;
project.get_revision_branches(ident, branches);
N(!branches.empty(),
F("no branch certs found for revision %s, "
"please provide a branch name") % ident);
N(branches.size() == 1,
F("multiple branch certs found for revision %s, "
"please provide a branch name") % ident);
set<branch_name>::iterator i = branches.begin();
I(i != branches.end());
branchname = *i;
}
}
// As above, but set the branch name in the options
// if it wasn't already set.
void
guess_branch(options & opts, project_t & project, revision_id const & ident)
{
branch_name branchname;
guess_branch(opts, project, ident, branchname);
opts.branchname = branchname;
}
void
cert_revision_in_branch(database & db,
key_store & keys,
revision_id const & rev,
branch_name const & branch)
{
put_simple_revision_cert(db, keys, rev, branch_cert_name,
cert_value(branch()));
}
void
cert_revision_suspended_in_branch(database & db,
key_store & keys,
revision_id const & rev,
branch_name const & branch)
{
put_simple_revision_cert(db, keys, rev, suspend_cert_name,
cert_value(branch()));
}
// "standard certs"
void
cert_revision_date_time(database & db,
key_store & keys,
revision_id const & rev,
date_t const & t)
{
cert_value val = cert_value(t.as_iso_8601_extended());
put_simple_revision_cert(db, keys, rev, date_cert_name, val);
}
void
cert_revision_author(database & db,
key_store & keys,
revision_id const & rev,
string const & author)
{
put_simple_revision_cert(db, keys, rev, author_cert_name,
cert_value(author));
}
void
cert_revision_tag(database & db,
key_store & keys,
revision_id const & rev,
string const & tagname)
{
put_simple_revision_cert(db, keys, rev, tag_cert_name,
cert_value(tagname));
}
void
cert_revision_changelog(database & db,
key_store & keys,
revision_id const & rev,
utf8 const & log)
{
put_simple_revision_cert(db, keys, rev, changelog_cert_name,
cert_value(log()));
}
void
cert_revision_comment(database & db,
key_store & keys,
revision_id const & rev,
utf8 const & comment)
{
put_simple_revision_cert(db, keys, rev, comment_cert_name,
cert_value(comment()));
}
void
cert_revision_testresult(database & db,
key_store & keys,
revision_id const & rev,
string const & results)
{
bool passed = false;
if (lowercase(results) == "true" ||
lowercase(results) == "yes" ||
lowercase(results) == "pass" ||
results == "1")
passed = true;
else if (lowercase(results) == "false" ||
lowercase(results) == "no" ||
lowercase(results) == "fail" ||
results == "0")
passed = false;
else
throw informative_failure("could not interpret test results, "
"tried '0/1' 'yes/no', 'true/false', "
"'pass/fail'");
put_simple_revision_cert(db, keys, rev, testresult_cert_name,
cert_value(lexical_cast<string>(passed)));
}
// Local Variables:
// mode: C++
// fill-column: 76
// c-file-style: "gnu"
// indent-tabs-mode: nil
// End:
// vim: et:sw=2:sts=2:ts=2:cino=>2s,{s,\:s,+s,t0,g0,^-2,e-2,n-2,p2s,(0,=s: