File: keyring-update.rs

package info (click to toggle)
rust-sequoia-git 0.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,580 kB
  • sloc: sh: 367; makefile: 32
file content (487 lines) | stat: -rw-r--r-- 13,509 bytes parent folder | download
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
use std::fs;

use sequoia_openpgp as openpgp;
use openpgp::cert::KeyBuilder;
use openpgp::policy::StandardPolicy;
use openpgp::types::KeyFlags;

mod common;
use common::Environment;
use common::rotate_subkeys;

const P: &StandardPolicy = &StandardPolicy::new();

#[test]
fn keyring_update_add_certificate() -> anyhow::Result<()> {
    // Consider: Alice is the project maintainer.  She gives Bob
    // commit rights.  Bob modifies Alice's keyring to include another
    // certificate that he presumably controls.  That's not allowed.
    // Make sure we reject it.
    let e = Environment::new()?;
    let p = e.git_state();

    let (alice, alice_pgp) = e.gen("alice", None, None);
    let (bob, bob_pgp) = e.gen("bob", None, None);
    let (alice_bob, alice_bob_pgp) = e.gen("alice-bob", None, None);

    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice_pgp,
        "--project-maintainer" // All capabilities.
    ])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Alice makes herself a release manager.",
        &format!("-S{}", alice.fingerprint()),
    ])?;
    let root = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    e.sq_git(&[
        "policy",
        "authorize",
        "bob",
        "--cert-file", &bob_pgp,
        "--committer" // Committer.
    ])?;
    e.git(&["add", "openpgp-policy.toml"])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ &bob ]);
    e.git(&[
        "commit",
        "-m", "Alice makes Bob a committer.",
        &format!("-S{}", alice.fingerprint()),
    ])?;
    let _c2 = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    fs::write(p.join("a"), "aaa.")?;
    e.git(&["add", "a"])?;
    e.git(&[
        "commit",
        "-m", "Bob makes a commit.",
        &format!("-S{}", bob.fingerprint()),
    ])?;
    let c3 = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    // Bob tries to add a certificate to Alice's keyring.  This should
    // fail.
    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice_bob_pgp,
        "--project-maintainer" // Committer
    ])?;
    e.check_export("alice", None, &[ &alice, &alice_bob ]);
    e.check_export("bob", None, &[ &bob ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Bob adds a certificate to Alice's keyring.",
        &format!("-S{}", bob.fingerprint()),
    ])?;

    e.git(&["log"])?;
    assert!(e.sq_git(&["log", "--trust-root", &root]).is_err());


    // Reset to c3.  Make sure Alice can add a certificate to an
    // existing entity.
    e.git(&["reset", "--soft", &c3])?;
    e.check_export("alice", None, &[ &alice, &alice_bob ]);
    e.check_export("bob", None, &[ &bob ]);
    assert_eq!(c3, e.git_current_commit()?);

    e.git(&[
        "commit",
        "-m", "Alice adds the certificate to her keyring.",
        &format!("-S{}", alice.fingerprint()),
    ])?;

    e.git(&["log"])?;
    assert!(e.sq_git(&["log", "--trust-root", &root]).is_ok());


    // And make sure the new certificate can add commits.
    fs::write(p.join("b"), "bbb.")?;
    e.git(&["add", "b"])?;
    e.git(&[
        "commit",
        "-m", "Alice makes a commit signed with the new certificate.",
        &format!("-S{}", alice_bob.fingerprint()),
    ])?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;

    Ok(())
}

#[test]
fn keyring_update_remove_certificate() -> anyhow::Result<()> {
    // Consider:
    //
    // Alice is the project maintainer.  She gives Bob commit rights.
    // Bob modifies Alice's keyring to remove her certificate.
    // That's not allowed.  Make sure we catch it.
    let e = Environment::new()?;
    let p = e.git_state();

    let (alice1, alice1_pgp) = e.gen("alice1", None, None);
    let (alice2, alice2_pgp) = e.gen("alice2", None, None);
    let (bob, bob_pgp) = e.gen("bob", None, None);

    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice1_pgp,
        "--project-maintainer" // All capabilities.
    ])?;
    e.check_export("alice", None, &[ &alice1 ]);
    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice2_pgp,
        "--project-maintainer" // All capabilities.
    ])?;
    e.check_export("alice", None, &[ &alice1, &alice2 ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Alice makes herself a release manager.",
        &format!("-S{}", alice1.fingerprint()),
    ])?;
    let root = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    e.sq_git(&[
        "policy",
        "authorize",
        "bob",
        "--cert-file", &bob_pgp,
        "--committer" // Committer
    ])?;
    e.check_export("alice", None, &[ &alice1, &alice2 ]);
    e.check_export("bob", None, &[ &bob ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Alice makes Bob a committer.",
        &format!("-S{}", alice2.fingerprint()),
    ])?;
    let _c2 = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    fs::write(p.join("a"), "aaa.")?;
    e.git(&["add", "a"])?;
    e.git(&[
        "commit",
        "-m", "Bob makes a commit.",
        &format!("-S{}", bob.fingerprint()),
    ])?;
    let c3 = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    std::fs::remove_file(p.join("openpgp-policy.toml")).expect("can remove");
    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice1_pgp,
        "--project-maintainer" // All capabilities.
    ])?;
    e.sq_git(&[
        "policy",
        "authorize",
        "bob",
        "--cert-file", &bob_pgp,
        "--committer" // Committer
    ])?;
    e.check_export("alice", None, &[ &alice1 ]);
    e.check_export("bob", None, &[ &bob ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Bob removes one of Alice's certificates.",
        &format!("-S{}", bob.fingerprint()),
    ])?;

    e.git(&["log"])?;
    assert!(e.sq_git(&["log", "--trust-root", &root]).is_err());

    // Reset to c3.  Make sure alice can remove the certificate.
    e.git(&["reset", "--soft", &c3])?;
    e.check_export("alice", None, &[ &alice1 ]);
    e.check_export("bob", None, &[ &bob ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Alice removes one of her certificates.",
        &format!("-S{}", alice2.fingerprint()),
    ])?;

    Ok(())
}

#[test]
fn keyring_update_add_packet() -> anyhow::Result<()> {
    // It's always safe to add to an existing certificate.
    let e = Environment::new()?;
    let p = e.git_state();

    let (alice, alice_pgp) = e.gen("alice", None, None);
    let (bob, bob_pgp) = e.gen("bob", None, None);

    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice_pgp,
        "--project-maintainer" // All capabilities.
    ])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Alice makes herself a release manager.",
        &format!("-S{}", alice.fingerprint()),
    ])?;
    let root = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    e.sq_git(&[
        "policy",
        "authorize",
        "bob",
        "--cert-file", &bob_pgp,
        "--committer" // Committer.
    ])?;
    e.git(&["add", "openpgp-policy.toml"])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ &bob ]);
    e.git(&[
        "commit",
        "-m", "Alice makes Bob a committer.",
        &format!("-S{}", alice.fingerprint()),
    ])?;
    let _c2 = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    fs::write(p.join("a"), "aaa.")?;
    e.git(&["add", "a"])?;
    e.git(&[
        "commit",
        "-m", "Bob makes a commit.",
        &format!("-S{}", bob.fingerprint()),
    ])?;
    let _c3 = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    // Bob updates his certificate.
    let bob2 = rotate_subkeys(&bob);
    assert!(bob.keys().count() < bob2.keys().count());
    let bob2_pgp = e.serialize_cert("bob2", &bob2);
    e.import(&bob2).expect("can import");

    e.sq_git(&[
        "policy",
        "authorize",
        "bob",
        "--cert-file", &bob2_pgp,
        "--committer" // Committer
    ])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ &bob2 ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Bob updates his certificate.",
        &format!("-S{}", bob.fingerprint()),
    ])?;

    e.git(&["log"])?;
    assert!(e.sq_git(&["log", "--trust-root", &root]).is_ok());

    // Bob updates Alice's certificate.
    let alice_vc = alice.with_policy(P, None).expect("valid cert");
    let alice2 = KeyBuilder::new(KeyFlags::signing())
        .subkey(alice_vc).unwrap()
        .attach_cert().unwrap();
    assert!(alice.keys().count() < alice2.keys().count());
    let alice2_pgp = e.serialize_cert("alice2", &alice2);
    e.import(&alice2).expect("can import");

    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice2_pgp,
    ])?;
    e.check_export("alice", None, &[ &alice2 ]);
    e.check_export("bob", None, &[ &bob2 ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Bob updates Alice's certificate.",
        &format!("-S{}", bob.fingerprint()),
    ])?;

    e.git(&["log"])?;
    assert!(e.sq_git(&["log", "--trust-root", &root]).is_ok());

    Ok(())
}

#[test]
fn keyring_update_remove_packet() -> anyhow::Result<()> {
    // Removing a packet requires authorization.
    let e = Environment::new()?;
    let p = e.git_state();

    let (alice, alice_pgp) = e.gen("alice", None, None);
    let (bob, bob_pgp) = e.gen("bob", None, None);

    let bob_vc = bob.with_policy(P, None).expect("valid cert");
    let bob2 = KeyBuilder::new(KeyFlags::signing())
        .subkey(bob_vc).unwrap()
        .attach_cert().unwrap();
    assert!(bob.keys().count() < bob2.keys().count());
    let bob2_pgp = e.serialize_cert("bob2", &bob2);
    e.import(&bob2).expect("can import");

    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice_pgp,
        "--project-maintainer" // All capabilities.
    ])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Alice makes herself a release manager.",
        &format!("-S{}", alice.fingerprint()),
    ])?;
    let root = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    e.sq_git(&[
        "policy",
        "authorize",
        "bob",
        "--cert-file", &bob2_pgp,
        "--committer" // Committer.
    ])?;
    e.git(&["add", "openpgp-policy.toml"])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ &bob2 ]);
    e.git(&[
        "commit",
        "-m", "Alice makes Bob a committer.",
        &format!("-S{}", alice.fingerprint()),
    ])?;
    let _c2 = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    fs::write(p.join("a"), "aaa.")?;
    e.git(&["add", "a"])?;
    e.git(&[
        "commit",
        "-m", "Bob makes a commit.",
        &format!("-S{}", bob.fingerprint()),
    ])?;
    let c3 = e.git_current_commit()?;

    e.git(&["log"])?;
    e.sq_git(&["log", "--trust-root", &root])?;


    // Bob tries to strip a User ID from his certificate.  This should
    // fail.
    std::fs::remove_file(p.join("openpgp-policy.toml")).expect("can remove");
    e.sq_git(&[
        "policy",
        "authorize",
        "alice",
        "--cert-file", &alice_pgp,
        "--project-maintainer" // All capabilities.
    ])?;
    e.sq_git(&[
        "policy",
        "authorize",
        "bob",
        "--cert-file", &bob_pgp,
        "--committer" // Committer
    ])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ &bob ]);

    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Bob strips a user ID from his certificate.",
        &format!("-S{}", bob.fingerprint()),
    ])?;

    e.git(&["log"])?;
    assert!(e.sq_git(&["log", "--trust-root", &root]).is_err());


    // Reset to c3.  Make sure alice can remove the user ID.
    e.git(&["reset", "--soft", &c3])?;
    e.check_export("alice", None, &[ &alice ]);
    e.check_export("bob", None, &[ &bob ]);
    e.git(&["add", "openpgp-policy.toml"])?;
    e.git(&[
        "commit",
        "-m", "Alice strips a user ID from Bob's certificate.",
        &format!("-S{}", alice.fingerprint()),
    ])?;

    Ok(())
}