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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
|
"""
Roster and operator pairing (M3, and the mechanism that will close H3).
Negative assertions, per the posture set in Phase 11.5: each test states an attack
or a mistake that must not work. The one to keep an eye on is
`test_daemon_does_not_auto_pin_keystore_key` — the auto-pin is what made node
sovereignty inert as shipped, and it fails closed, so nothing else in the suite
notices if it comes back.
See `docs/MESHBAY_DESIGN.md` §3.4.
"""
import base64
import time
from pathlib import Path
import pytest
from cryptography.hazmat.primitives import serialization
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey
from cryptography.hazmat.primitives.asymmetric.x25519 import X25519PrivateKey
from meshbay_common.crypto import generate_gek, pk_to_b64, unwrap_gek_aes
from meshbay_common.join import ROLE_MEMBER, ROLE_OPERATOR, join_transcript
from meshbay_node.indexer.group_index import GroupIndex
from meshbay_node.roster import Roster, hash_code, normalize_code
from meshbay_node.transport.webrtc_server import WebRTCPeerSession
from conftest import one_root
# ── Fixtures ──────────────────────────────────────────────────────────────────
@pytest.fixture
async def roster(tmp_path):
r = Roster(db_path=tmp_path / "roster.db")
await r.open()
yield r
await r.close()
def _keypair_full():
"""(sk_ed, pk_ed_b64, pk_x_b64, sk_x) — the X25519 secret is needed to unwrap."""
sk_ed = Ed25519PrivateKey.generate()
sk_x = X25519PrivateKey.generate()
pk_ed_b64 = pk_to_b64(sk_ed.public_key())
pk_x_b64 = base64.b64encode(
sk_x.public_key().public_bytes(
encoding=serialization.Encoding.Raw,
format=serialization.PublicFormat.Raw,
)
).decode()
return sk_ed, pk_ed_b64, pk_x_b64, sk_x
def _keypair():
sk_ed, pk_ed_b64, pk_x_b64, _ = _keypair_full()
return sk_ed, pk_ed_b64, pk_x_b64
def _x_raw(sk_x, pk_x_b64):
"""(sk_x_raw, pk_x_raw) — what unwrap_gek_aes wants."""
return (sk_x.private_bytes(serialization.Encoding.Raw,
serialization.PrivateFormat.Raw,
serialization.NoEncryption()),
base64.b64decode(pk_x_b64))
def _session(tmp_path: Path, roster, user_id: str = "grenet",
group_id: str | None = None, gek: bytes | None = None,
join_policy: str = "invite") -> WebRTCPeerSession:
"""A peer session with the join path wired and sending stubbed out."""
shared_root = tmp_path / "shared"
shared_root.mkdir(exist_ok=True)
index = GroupIndex(group_id="g" * 32, sk_node=Ed25519PrivateKey.generate())
session = WebRTCPeerSession.__new__(WebRTCPeerSession)
session._ctx = {
"roots": one_root(shared_root),
"index": index,
"sk_node": index.sk_node,
"roster": roster,
}
if group_id:
session._ctx["groups"] = {
group_id: {
"gek": gek,
"roots": one_root(shared_root),
"index": index,
"join_policy": join_policy,
},
}
session._group_id = group_id
session._user_id = user_id
session._username = user_id
session._pk_user = ""
session._uploads = {}
session._join_attempts = 0
session._nonce_node = b"\x11" * 32
session._remote_ip = ""
session.sent = []
session._send = session.sent.append
session._audit = lambda *a, **k: None
session._ctx["daemon_state"] = {
"roster": roster,
"groups_ctx": session._ctx.get("groups", {}),
}
return session
def _join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code="", user_id="grenet",
group_id="", nonce=None, ts=None):
ts = int(time.time()) if ts is None else ts
transcript = join_transcript(
node_pk_b64=session._node_pk_b64(),
group_id=group_id,
user_id=user_id,
pk_ed25519_b64=pk_ed_b64,
pk_x25519_b64=pk_x_b64,
nonce_node=nonce if nonce is not None else session._nonce_node,
ts=ts,
)
return {
"type": "join_request",
"group_id": group_id,
"pk_ed25519": pk_ed_b64,
"pk_x25519": pk_x_b64,
"code": code,
"ts": ts,
"sig": base64.b64encode(sk_ed.sign(transcript)).decode(),
}
def _last(session):
return session.sent[-1] if session.sent else {}
# ── Roster ────────────────────────────────────────────────────────────────────
async def test_invite_is_single_use(roster):
code = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
assert await roster.consume_invite(code, "grenet") is not None
assert await roster.consume_invite(code, "grenet") is None, (
"a pairing code must not be redeemable twice")
async def test_invite_is_bound_to_one_account(roster):
"""A leaked code must be useless to whoever finds it."""
code = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
assert await roster.consume_invite(code, "eve") is None
assert await roster.consume_invite(code, "grenet") is not None
async def test_expired_invite_is_refused(roster):
code = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli", ttl=-1)
assert await roster.consume_invite(code, "grenet") is None
async def test_reinvite_supersedes_the_previous_code(roster):
first = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
second = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
assert await roster.consume_invite(first, "grenet") is None
assert await roster.consume_invite(second, "grenet") is not None
async def test_codes_are_not_stored_in_the_clear(roster, tmp_path):
code = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
rows = await roster.list_invites()
assert rows and rows[0]["code_hash"] != normalize_code(code)
assert rows[0]["code_hash"] == hash_code(code)
def test_code_normalization_absorbs_human_error():
"""Someone reading a code aloud must not be able to get it wrong."""
assert normalize_code("k7m2-qx4p") == normalize_code("K7M2QX4P")
assert normalize_code("O1IL") == "0111"
assert normalize_code(" k7m2 qx4p ") == "K7M2QX4P"
async def test_operator_pks_reflect_unpinning(roster):
_, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("grenet", "grenet", pk_ed_b64, pk_x_b64, "code")
await roster.set_member("", "grenet", ROLE_OPERATOR, "active", "local-cli")
assert await roster.operator_pks() == [pk_ed_b64]
await roster.unpin("grenet")
assert await roster.operator_pks() == [], (
"authority must disappear with the pin, without a daemon restart")
# ── Join / pairing over MNP ───────────────────────────────────────────────────
async def test_pairing_with_a_valid_code_pins_the_identity(tmp_path, roster):
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
code = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code=code))
assert _last(session).get("ok") is True
pinned = await roster.get_identity("grenet")
assert pinned["pk_ed25519"] == pk_ed_b64
assert await roster.operator_pks() == [pk_ed_b64]
async def test_pairing_without_a_code_is_refused(tmp_path, roster):
"""Fails closed: an unknown identity gets nothing until someone authorizes it."""
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await session._do_join_request(_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64))
assert _last(session).get("ok") is False
assert _last(session).get("reason") == "code_required"
assert await roster.get_identity("grenet") is None
async def test_wrong_code_pins_nothing(tmp_path, roster):
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code="ZZZZ-ZZZZ"))
assert _last(session).get("reason") == "code_invalid"
assert await roster.get_identity("grenet") is None
async def test_signature_must_cover_the_presented_keys(tmp_path, roster):
"""
The heart of it: the X25519 key is only trustworthy because the Ed25519
identity signed it. Swapping in another encryption key after signing must fail.
"""
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
code = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
msg = _join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code=code)
_, _, attacker_pk_x = _keypair()
msg["pk_x25519"] = attacker_pk_x
await session._do_join_request(msg)
assert _last(session).get("reason") == "signature_invalid"
assert await roster.get_identity("grenet") is None
async def test_join_cannot_be_replayed_onto_another_connection(tmp_path, roster):
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
code = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
# Signed against a nonce this connection never issued.
msg = _join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code=code,
nonce=b"\x99" * 32)
await session._do_join_request(msg)
assert _last(session).get("reason") == "signature_invalid"
assert await roster.get_identity("grenet") is None
async def test_a_key_this_node_never_pinned_is_refused(tmp_path, roster):
"""
11.5.8's rule, applied to people: an unrecognised key does not get in, and
a code cannot talk its way past that.
What changed with device linking (2026-08-18) is the way back, not the
refusal. This used to be `key_changed` and needed an operator to unpin; now
it is `unknown_device` and the person approves the new key from a device
already paired here. Nothing is pinned either way, which is the part that
matters.
"""
session = _session(tmp_path, roster)
_, old_pk_ed, old_pk_x = _keypair()
await roster.pin_identity("grenet", "grenet", old_pk_ed, old_pk_x, "code")
sk_ed2, new_pk_ed, new_pk_x = _keypair()
await session._do_join_request(
_join_msg(session, sk_ed2, new_pk_ed, new_pk_x, code="ANY-CODE"))
assert _last(session).get("reason") == "unknown_device"
assert await roster.find_device("grenet", new_pk_ed) is None
assert [d["pk_ed25519"] for d in await roster.list_devices("grenet")] == \
[old_pk_ed]
async def test_a_pinned_key_arriving_with_a_different_x25519_is_refused(
tmp_path, roster):
"""
The join transcript signs both keys together, so a pinned Ed25519 key
presenting a different encryption key is either a client that regenerated
half its identity or two messages spliced. Either way the pair is not the
one admitted, and the group key must not be wrapped for it.
"""
session = _session(tmp_path, roster)
sk_ed, pk_ed, pk_x = _keypair()
await roster.pin_identity("grenet", "grenet", pk_ed, pk_x, "code")
_, _, other_pk_x = _keypair()
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed, other_pk_x, code="ANY-CODE"))
assert _last(session).get("reason") == "key_changed"
assert (await roster.find_device("grenet", pk_ed))["pk_x25519"] == pk_x
async def test_attempts_are_bounded(tmp_path, roster):
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli")
for _ in range(6):
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code="AAAA-AAAA"))
assert any(m.get("detail") == "Too many attempts" for m in session.sent), (
"a connection must not be able to sit there guessing codes")
async def test_failures_are_counted_across_connections(tmp_path, roster):
"""
The adversary who can mint a token for any account is the hub, and it can
reconnect at will — so a per-connection budget alone would bound nothing.
"""
shared_ctx = None
for _ in range(6):
session = _session(tmp_path, roster)
if shared_ctx is None:
shared_ctx = session._ctx
else:
session._ctx = shared_ctx # same node, new connection
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
for _ in range(4):
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code="AAAA-AAAA"))
assert any(m.get("detail") == "Pairing temporarily locked"
for m in session.sent), (
"reconnecting must not reset the pairing budget")
async def test_group_id_cannot_name_another_group(tmp_path, roster):
session = _session(tmp_path, roster)
session._group_id = "a" * 32
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, group_id="b" * 32))
assert _last(session).get("reason") == "group_mismatch"
# ── H3: the node wraps the group key, and only for people it admitted ─────────
GROUP = "g" * 32
async def test_node_wraps_the_gek_for_the_key_the_member_proved(tmp_path, roster):
"""
The H3 fix. Nobody fetches a public key from the hub: the node encrypts the
group key for the X25519 key the joiner signed with their pinned identity, so
a hub substituting a key of its own has nothing to substitute into.
"""
gek = generate_gek()
session = _session(tmp_path, roster, user_id="bob", group_id=GROUP, gek=gek)
sk_ed, pk_ed_b64, pk_x_b64, sk_x = _keypair_full()
code = await roster.create_invite(GROUP, "bob", ROLE_MEMBER, "grenet")
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code=code,
user_id="bob", group_id=GROUP))
reply = _last(session)
assert reply["ok"] is True and reply["gek"] is True
pk_x_raw = base64.b64decode(pk_x_b64)
sk_x_raw = sk_x.private_bytes(
encoding=serialization.Encoding.Raw,
format=serialization.PrivateFormat.Raw,
encryption_algorithm=serialization.NoEncryption(),
)
assert unwrap_gek_aes(reply, sk_x_raw, pk_x_raw) == gek
async def test_hub_membership_alone_yields_no_key(tmp_path, roster):
"""
A hub can invent an account, add it to a group and mint it a token. What it
cannot do is put it on the node's roster — so the key never leaves.
"""
gek = generate_gek()
session = _session(tmp_path, roster, user_id="eve", group_id=GROUP, gek=gek)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
# Pinned on this node (say, for another group) but never admitted to this
# one, and with no invite waiting for it here.
await roster.pin_identity("eve", "eve", pk_ed_b64, pk_x_b64, "code")
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
user_id="eve", group_id=GROUP))
reply = _last(session)
assert reply.get("ok") is False
assert not reply.get("gek")
assert reply.get("reason") == "not_authorized_for_group"
assert "wrapped_b64" not in reply
async def test_open_join_group_admits_without_a_code(tmp_path, roster):
"""§3.4: where anyone may join, a code protects nothing and is not required."""
gek = generate_gek()
session = _session(tmp_path, roster, user_id="newcomer", group_id=GROUP,
gek=gek, join_policy="open")
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
user_id="newcomer", group_id=GROUP))
reply = _last(session)
assert reply["ok"] is True and reply["gek"] is True
pinned = await roster.get_identity("newcomer")
assert pinned["pinned_via"] == "tofu"
async def test_invite_only_group_still_demands_a_code(tmp_path, roster):
"""Being public (discoverable) is not being open (admitting anyone)."""
gek = generate_gek()
session = _session(tmp_path, roster, user_id="newcomer", group_id=GROUP,
gek=gek, join_policy="invite")
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
user_id="newcomer", group_id=GROUP))
assert _last(session).get("reason") == "code_required"
assert await roster.get_identity("newcomer") is None
async def test_known_device_can_still_be_invited_to_another_group(tmp_path, roster):
"""
The regression: grenet's device is pinned here as a member of group A. cbesson
invites grenet to invite-only group B; grenet opens B. This used to answer
`not_authorized_for_group` with no way back — the device-linking `known`
fast-path dropped straight into `_join_ok` and never looked at a code. With a
real invite waiting it must ask for the code, and a valid one must admit.
"""
GROUP_A = "a" * 32
GROUP_B = "b" * 32
gek_b = generate_gek()
sk_ed, pk_ed_b64, pk_x_b64, sk_x = _keypair_full()
await roster.pin_identity("grenet", "grenet", pk_ed_b64, pk_x_b64, "code")
await roster.set_member(GROUP_A, "grenet", ROLE_MEMBER, "active", "cbesson")
code = await roster.create_invite(GROUP_B, "grenet", ROLE_MEMBER, "cbesson")
session = _session(tmp_path, roster, user_id="grenet", group_id=GROUP_B,
gek=gek_b, join_policy="invite")
# First connect (node-wide group_id=""), no code: prompt for it, do not refuse.
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
user_id="grenet", group_id=""))
assert _last(session).get("reason") == "code_required"
assert await roster.get_member(GROUP_B, "grenet") is None
# grenet enters the code cbesson sent through another channel.
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
code=code, user_id="grenet", group_id=GROUP_B))
reply = _last(session)
assert reply["ok"] is True and reply["gek"] is True
assert unwrap_gek_aes(reply, *_x_raw(sk_x, pk_x_b64)) == gek_b
member = await roster.get_member(GROUP_B, "grenet")
assert member and member["role"] == ROLE_MEMBER and member["status"] == "active"
async def test_known_pin_with_no_invite_still_gets_the_flat_refusal(tmp_path, roster):
"""H3 guard: a pinned identity with no membership and no invite waiting for
it here gets `not_authorized_for_group`, not a code prompt."""
GROUP_B = "b" * 32
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("eve", "eve", pk_ed_b64, pk_x_b64, "code")
await roster.set_member("a" * 32, "eve", ROLE_MEMBER, "active", "cbesson")
session = _session(tmp_path, roster, user_id="eve", group_id=GROUP_B,
gek=generate_gek(), join_policy="invite")
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
user_id="eve", group_id=""))
assert _last(session).get("reason") == "not_authorized_for_group"
async def test_known_device_already_a_member_still_needs_no_code(tmp_path, roster):
"""Guard for the fix above: an existing member of B joins B with no code."""
GROUP_B = "b" * 32
gek_b = generate_gek()
sk_ed, pk_ed_b64, pk_x_b64, sk_x = _keypair_full()
await roster.pin_identity("grenet", "grenet", pk_ed_b64, pk_x_b64, "code")
await roster.set_member(GROUP_B, "grenet", ROLE_MEMBER, "active", "cbesson")
session = _session(tmp_path, roster, user_id="grenet", group_id=GROUP_B,
gek=gek_b, join_policy="invite")
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
user_id="grenet", group_id=""))
reply = _last(session)
assert reply["ok"] is True and reply["gek"] is True
assert unwrap_gek_aes(reply, *_x_raw(sk_x, pk_x_b64)) == gek_b
async def test_unknown_group_is_invite_only(tmp_path, roster):
"""
Fail closed: a group whose policy the node cannot read is treated as
invite-only, never as open.
"""
session = _session(tmp_path, roster, user_id="newcomer")
session._group_id = "unconfigured-group"
assert session._group_join_policy("unconfigured-group") == "invite"
assert session._group_join_policy("") == "invite"
def test_join_policy_is_carried_from_node_config():
"""
The policy reaches the transport from node.toml. If it ever came from the hub
instead, a hub could declare any group open and be handed its key.
"""
daemon_src = (Path(__file__).parent.parent
/ "src" / "meshbay_node" / "daemon.py").read_text(encoding="utf-8")
assert '"join_policy": group_cfg.join_policy' in daemon_src
config_src = (Path(__file__).parent.parent
/ "src" / "meshbay_node" / "config.py").read_text(encoding="utf-8")
assert "join_policy" in config_src, "GroupConfig must carry the admission policy"
async def test_revoked_member_stops_receiving_the_key(tmp_path, roster):
"""
Wrapping on demand is what makes revocation work. A stored bundle survived
revocation; this does not. (Rotating the GEK is still required — the
ex-member has the old one.)
"""
gek = generate_gek()
session = _session(tmp_path, roster, user_id="bob", group_id=GROUP, gek=gek)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("bob", "bob", pk_ed_b64, pk_x_b64, "code")
await roster.set_member(GROUP, "bob", ROLE_MEMBER, "active", "grenet")
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
user_id="bob", group_id=GROUP))
assert _last(session)["gek"] is True
await roster.set_status(GROUP, "bob", "revoked")
session.sent.clear()
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64,
user_id="bob", group_id=GROUP))
assert _last(session).get("gek") is False
# ── What a first-time joiner can know ─────────────────────────────────────────
def test_challenge_carries_node_pk_in_source():
"""
Belt and braces for the above: the field must be in the message the node
builds, whatever the surrounding handshake does.
"""
source = (Path(__file__).parent.parent
/ "src" / "meshbay_node" / "transport"
/ "webrtc_server.py").read_text(encoding="utf-8")
challenge = source[source.find("MNP.HANDSHAKE_CHALLENGE,"):]
challenge = challenge[:challenge.find("})")]
assert "node_pk" in challenge, (
"the challenge must announce the node key — a first-time joiner cannot "
"learn it any other way, and join_request signs it")
async def test_a_key_pinned_by_one_node_is_worthless_at_another(tmp_path, roster):
"""
The whole point of per-node identity: node A's operator who cracks the bundle
on their own disk holds a key node B has never seen. Presenting it there is a
first contact like any other — it needs a code from B's operator.
"""
gek = generate_gek()
node_b = _session(tmp_path, roster, user_id="bob", group_id=GROUP, gek=gek)
# The key bob uses at node A. Node B's roster knows nothing about it.
sk_ed_a, pk_ed_a, pk_x_a = _keypair()
await node_b._do_join_request(
_join_msg(node_b, sk_ed_a, pk_ed_a, pk_x_a,
user_id="bob", group_id=GROUP))
assert _last(node_b).get("reason") == "code_required"
assert await roster.get_identity("bob") is None
async def test_the_stolen_key_cannot_be_forced_in_with_someone_elses_code(
tmp_path, roster):
"""And a code issued for another account does not help either."""
gek = generate_gek()
session = _session(tmp_path, roster, user_id="eve", group_id=GROUP, gek=gek)
sk_ed, pk_ed, pk_x = _keypair()
code = await roster.create_invite(GROUP, "bob", ROLE_MEMBER, "grenet")
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed, pk_x, code=code,
user_id="eve", group_id=GROUP))
assert _last(session).get("reason") == "code_invalid"
assert await roster.get_identity("eve") is None
# ── Code lifetimes ────────────────────────────────────────────────────────────
async def test_invitations_outlive_pairing_codes(roster):
"""
An invitation crosses a human conversation; a pairing code crosses an SSH
session. A day was long enough for the second and not for the first — a code
that dies over a weekend means someone has to be at a browser to reissue it.
"""
from meshbay_node.roster import DEFAULT_INVITE_TTL, DEFAULT_PAIR_TTL
assert DEFAULT_INVITE_TTL == 7 * 24 * 3600
assert DEFAULT_PAIR_TTL == 24 * 3600
assert DEFAULT_INVITE_TTL > DEFAULT_PAIR_TTL
def test_code_lifetimes_are_configurable(tmp_path):
"""The operator decides, not the default."""
from meshbay_node.config import load_config
path = tmp_path / "node.toml"
path.write_text(
'[hub]\nurl = "https://example.org"\nusername = "grenet"\n'
"[node]\ninvite_ttl_hours = 72\npair_ttl_hours = 2\n"
)
cfg = load_config(path)
assert cfg.node.invite_ttl_hours == 72
assert cfg.node.pair_ttl_hours == 2
default = load_config(tmp_path / "missing.toml")
assert default.node.invite_ttl_hours == 168
assert default.node.pair_ttl_hours == 24
async def test_expiry_is_enforced_at_redemption(tmp_path, roster):
"""Purging is housekeeping; the check that matters happens on use."""
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
code = await roster.create_invite("", "grenet", ROLE_OPERATOR, "local-cli", ttl=-1)
await session._do_join_request(
_join_msg(session, sk_ed, pk_ed_b64, pk_x_b64, code=code))
assert _last(session).get("reason") == "code_invalid"
assert await roster.get_identity("grenet") is None
# ── M3: where node authority comes from ───────────────────────────────────────
async def test_admin_signature_verified_against_the_paired_key(tmp_path, roster):
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("grenet", "grenet", pk_ed_b64, pk_x_b64, "code")
await roster.set_member("", "grenet", ROLE_OPERATOR, "active", "local-cli")
transcript = b"meshbay:admin:v1 whatever"
assert await session._verify_admin_sig(transcript, sk_ed.sign(transcript))
stranger = Ed25519PrivateKey.generate()
assert not await session._verify_admin_sig(
transcript, stranger.sign(transcript))
async def test_unpinned_operator_loses_authority_immediately(tmp_path, roster):
"""No caching: revoking a paired browser must not need a daemon restart."""
session = _session(tmp_path, roster)
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("grenet", "grenet", pk_ed_b64, pk_x_b64, "code")
await roster.set_member("", "grenet", ROLE_OPERATOR, "active", "local-cli")
transcript = b"meshbay:admin:v1 whatever"
assert await session._verify_admin_sig(transcript, sk_ed.sign(transcript))
await roster.unpin("grenet")
assert not await session._verify_admin_sig(transcript, sk_ed.sign(transcript))
# ── Operator surface (slice 3) ────────────────────────────────────────────────
def _ui_client(tmp_path, roster, **extra):
from fastapi.testclient import TestClient
from meshbay_node.config import Config
from meshbay_node.ui.app import create_ui_app
state = {
"status": "running", "groups_ctx": {GROUP: {"gek": b"k" * 32}},
"indexes": {}, "ui_token": "tok", "roster": roster,
"node_user_id": "grenet", "config": Config(),
}
state.update(extra)
return TestClient(create_ui_app(state)), state
async def test_revoke_endpoint_stops_authorization(tmp_path, roster):
client, _ = _ui_client(tmp_path, roster)
_, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("bob", "bob", pk_ed_b64, pk_x_b64, "code")
await roster.set_member(GROUP, "bob", ROLE_MEMBER, "active", "grenet")
assert await roster.is_authorized(GROUP, "bob")
resp = client.post(f"/api/members/bob/revoke?group_id={GROUP}&t=tok")
assert resp.status_code == 200
assert "gek rotate" in resp.json()["reminder"], (
"revocation must remind the operator to rotate the key they still hold")
assert not await roster.is_authorized(GROUP, "bob")
async def test_unpin_endpoint_allows_repairing(tmp_path, roster):
client, _ = _ui_client(tmp_path, roster)
_, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("bob", "bob", pk_ed_b64, pk_x_b64, "code")
assert client.post("/api/members/bob/unpin?t=tok").status_code == 200
assert await roster.get_identity("bob") is None
assert client.post("/api/members/bob/unpin?t=tok").status_code == 404
async def test_operator_surface_needs_the_session_token(tmp_path, roster):
"""11.5.3 applies to every one of these: they change who may hold the key."""
client, _ = _ui_client(tmp_path, roster)
for path in ("/api/roster",
"/api/operator/pair",
f"/api/members/bob/revoke?group_id={GROUP}",
"/api/members/bob/unpin",
f"/api/groups/{GROUP}/invites?username=bob"):
method = client.get if path == "/api/roster" else client.post
assert method(path).status_code == 403, f"{path} reachable without a token"
async def test_cli_invite_asks_the_hub_for_an_account_never_a_key(tmp_path, roster):
"""
The CLI resolves a username to an account id through the hub, and stops there.
A key fetched from the hub is what H3 was; an account id is not a secret and
a wrong one produces an invite whose code the hub never learns.
"""
class _Hub:
_session = object()
added = []
async def get_user_pubkeys(self, username):
return {"user_id": f"id-of-{username}",
"pk_x25519": "SHOULD-NOT-BE-USED",
"pk_ed25519": "SHOULD-NOT-BE-USED"}
async def add_group_member(self, group_id, username):
self.added.append((group_id, username))
return {"status": "stored"}
hub = _Hub()
client, _ = _ui_client(tmp_path, roster, hub=hub)
resp = client.post(f"/api/groups/{GROUP}/invites?username=bob&t=tok")
assert resp.status_code == 200
body = resp.json()
assert body["user_id"] == "id-of-bob"
# The CLI path is the one with no browser to register the membership, so
# the node must do it — `/v1/groups/mine` joins `GroupMember`, and without
# a row there the invitee never sees the group. Nothing checked this when
# the registration was added, which is how it came to be skipped whenever
# the hub was merely absent.
assert hub.added == [(GROUP, "bob")]
invites = await roster.list_invites()
assert [i["user_id"] for i in invites] == ["id-of-bob"]
# Whatever the hub said about keys was never stored anywhere.
assert "SHOULD-NOT-BE-USED" not in str(invites)
assert await roster.get_identity("id-of-bob") is None
async def test_an_unreachable_hub_leaves_no_invite_behind(tmp_path, roster):
"""
A code the invitee could never redeem must not exist.
`create_invite` used to write the invite to the roster and *then* ask for
the hub, so an unreachable hub raised `Hub not connected` after the code was
already stored: the operator saw an error, no code, and a valid invitation
sat in the roster that nobody had been given. Every retry left another.
The registration now happens first, so a hub that is down costs nothing.
"""
class _DeadHub:
_session = object()
async def get_user_pubkeys(self, username):
return {"user_id": f"id-of-{username}"}
async def add_group_member(self, group_id, username):
raise ConnectionError("hub is down")
client, _ = _ui_client(tmp_path, roster, hub=_DeadHub())
resp = client.post(f"/api/groups/{GROUP}/invites?username=bob&t=tok")
assert resp.status_code != 200, "an invite was issued that cannot be redeemed"
assert await roster.list_invites() == [], (
"the hub was unreachable and an invitation was left in the roster "
"anyway — a code nobody was handed, and nobody can use")
def _run_cli(monkeypatch, tmp_path, argv, responses):
"""Drive the real CLI with the daemon API stubbed, capturing the calls."""
import sys as _sys
from meshbay_node import daemon as _daemon
calls = []
def fake_api(cfg, path, method="GET", timeout=30):
calls.append((method, path))
for key, value in responses.items():
if key in path:
return value
return {}
monkeypatch.setattr(_daemon, "_daemon_api", fake_api)
conf = tmp_path / "node.toml"
tp = tmp_path.as_posix() # a raw Windows path is a TOML escape error
conf.write_text(
f'data_dir = "{tp}"\n'
'[hub]\nurl = "https://example.org"\nusername = "grenet"\n'
f'[[groups]]\nid = "{GROUP}"\nname = "demo"\n'
f'shared_dir = "{tp}"\n',
encoding="utf-8",
)
monkeypatch.setattr(_sys, "argv",
["meshbay-node", *argv, "--config", str(conf)])
try:
_daemon.main()
except SystemExit as e:
calls.append(("exit", e.code))
return calls
def test_cli_member_commands_reach_the_right_endpoints(monkeypatch, tmp_path, capsys):
resolved = {"user_id": "u-bob", "source": "roster"}
calls = _run_cli(monkeypatch, tmp_path, ["member", "revoke", "bob"],
{"/api/resolve": resolved,
"revoke": {"status": "revoked", "reminder": "gek-init"}})
assert ("POST", f"/api/members/u-bob/revoke?group_id={GROUP}") in calls
# The operator is told the revocation does not take back the key they hold.
assert "rotate" in capsys.readouterr().out.lower()
calls = _run_cli(monkeypatch, tmp_path, ["member", "unpin", "bob"],
{"/api/resolve": resolved, "unpin": {"status": "unpinned"}})
assert ("POST", "/api/members/u-bob/unpin") in calls
def test_cli_resolves_a_name_before_acting(monkeypatch, tmp_path):
"""
The name has to be turned into an account first, and the node's own roster is
asked before the hub. A JWT carries no username, so an identity pinned without
an invitation has none — the hub fallback is what keeps it manageable.
"""
calls = _run_cli(monkeypatch, tmp_path, ["member", "revoke", "bob"],
{"/api/resolve": {"user_id": "u-bob", "source": "hub"},
"revoke": {"status": "revoked", "reminder": "gek-init"}})
assert ("GET", "/api/resolve?username=bob") == calls[0], (
"the CLI must resolve the name before acting on anyone")
assert ("POST", f"/api/members/u-bob/revoke?group_id={GROUP}") in calls
def test_daemon_does_not_auto_pin_keystore_key():
"""
M3: the daemon used to auto-pin its own keystore key as the admin key, while
the browser signs with the user's identity key. Different keys, so every
privileged operation failed closed with a signature error that looked like a
bug elsewhere — and the demo only worked because a deploy script overwrote it.
Authority now comes from the roster, or from an explicit node.toml value.
"""
source = (Path(__file__).parent.parent
/ "src" / "meshbay_node" / "daemon.py").read_text(encoding="utf-8")
assert "Auto-pinning admin key" not in source
assert "_resolve_admin_pk" not in source, (
"the auto-pin resolver is back — node authority must be established "
"locally by pairing, never inferred from the node's own keystore (M3)")
def test_admin_authority_is_never_fetched_from_the_hub():
"""
The fix M3 invites: ask the hub which key belongs to the operator. That would
hand a malicious hub the node — the same substitution as H3, one level deeper.
"""
src = Path(__file__).parent.parent / "src" / "meshbay_node"
verifier = (src / "transport" / "webrtc_server.py").read_text(encoding="utf-8")
body = verifier[verifier.index("async def _verify_admin_sig"):]
body = body[:body.index("\n def ", 1)]
assert "operator_pks" in body, "the roster is where authority comes from"
# Past the docstring: it names what was removed on purpose, so a reader knows
# not to put it back. What must not reappear is code.
code = body[body.index('"""', body.index('"""') + 3):]
for forbidden in ("hub", "pubkeys", "admin_pk_ed25519"):
assert forbidden not in code, (
f"_verify_admin_sig mentions {forbidden!r} — authority must come from "
"the local roster and nothing else")
daemon = (src / "daemon.py").read_text(encoding="utf-8")
assert "has_operator()" in daemon, "the daemon reads authority from the roster"
assert "admin_pk_ed25519" not in daemon, (
"the node.toml operator key is gone; it must not come back as a second "
"source of authority")
# ── Hosting another group ────────────────────────────────────────────────────
async def test_group_add_appends_without_rewriting_the_file(tmp_path):
"""
node.toml is hand-written and full of comments explaining decisions. The
block is appended as text for that reason: a round trip through a TOML
writer would silently throw all of it away.
"""
from meshbay_node.config import load_config
conf = tmp_path / "node.toml"
conf.write_text(
'# keep me\n[hub]\nurl = "https://meshbay.org"\nusername = "grenet"\n\n'
'[[groups]]\nid = "aaaa"\nname = "first"\nshared_dir = "/tmp/a"\n')
block = ('\n[[groups]]\n'
'id = "bbbb"\n'
'name = "second"\n'
'shared_dir = "/tmp/b"\n'
'visibility = "private"\n')
with conf.open("a") as f:
f.write(block)
assert "# keep me" in conf.read_text(encoding="utf-8"), "comments must survive"
cfg = load_config(conf)
assert [g.name for g in cfg.groups] == ["first", "second"]
assert [g.shared_dir for g in cfg.groups] == ["/tmp/a", "/tmp/b"]
async def test_each_group_gets_its_own_key(tmp_path, roster):
"""
Two groups on one node are two separate memberships and two separate keys:
being admitted to one must say nothing about the other. This is the property
that makes hosting a second group meaningful rather than cosmetic.
"""
from meshbay_common.crypto import generate_gek
gek_a, gek_b = generate_gek(), generate_gek()
assert gek_a != gek_b
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("member", "member", pk_ed_b64, pk_x_b64, "code")
await roster.set_member("group-a", "member", ROLE_MEMBER, "active", "op")
assert await roster.is_authorized("group-a", "member") is True
assert await roster.is_authorized("group-b", "member") is False, (
"membership of one group must not admit anyone to another")
# ── Removing a directory ─────────────────────────────────────────────────────
async def _dir_session(tmp_path, roster):
"""A session with a shared root and an operator paired, ready for admin ops."""
session = _session(tmp_path, roster, group_id="g1", gek=generate_gek())
session._admin_ops = {}
session._ctx["has_admin_authority"] = True
return session
async def test_a_directory_with_anything_in_it_is_refused(tmp_path, roster):
session = await _dir_session(tmp_path, roster)
full = tmp_path / "shared" / "full"
full.mkdir()
(full / "keep.txt").write_text("still here")
await session._do_dir_delete({"dir": "shared/full"})
assert _last(session).get("detail") == "Directory is not empty"
assert full.exists() and (full / "keep.txt").exists()
async def test_no_challenge_is_issued_without_an_operator(tmp_path, roster):
"""Fails closed, and says so, rather than asking for a signature nobody can give."""
session = await _dir_session(tmp_path, roster)
session._ctx["has_admin_authority"] = False
(tmp_path / "shared" / "empty").mkdir()
await session._do_dir_delete({"dir": "shared/empty"})
assert _last(session).get("detail") == "No authorized key for deletion"
assert (tmp_path / "shared" / "empty").exists()
async def test_a_root_itself_is_not_a_target(tmp_path, roster):
"""
Neither the virtual root nor a root directory can be removed this way.
Removing a root is a configuration change: doing it through a file operation
would leave the group config naming a directory nobody can reach. And the
virtual root is not a directory on anyone's disk at all — it belongs to no
volume.
"""
session = await _dir_session(tmp_path, roster)
for attempt in ("", ".", "/", "../shared", "shared", "shared/", "SHARED"):
await session._do_dir_delete({"dir": attempt})
assert _last(session).get("type") == "error", f"{attempt!r} was accepted"
assert (tmp_path / "shared").is_dir()
async def test_escaping_the_shared_root_is_refused(tmp_path, roster):
session = await _dir_session(tmp_path, roster)
outside = tmp_path / "outside"
outside.mkdir()
# Both shapes: a path that names no root at all, and one that starts inside
# a real root and then climbs out of it.
for attempt in ("../outside", "../../outside", "sub/../../outside",
"shared/../outside", "shared/../../outside",
"shared/sub/../../outside"):
await session._do_dir_delete({"dir": attempt})
assert _last(session).get("type") == "error", f"{attempt!r} was accepted"
assert outside.is_dir(), "a path leaving the shared root removed a directory"
async def test_an_empty_directory_needs_a_signature_and_then_goes(tmp_path, roster):
"""The whole round trip: challenge, operator signature, removal."""
from meshbay_common.adminop import admin_transcript
sk_ed, pk_ed_b64, pk_x_b64 = _keypair()
await roster.pin_identity("grenet", "grenet", pk_ed_b64, pk_x_b64, "code")
await roster.set_member("", "grenet", ROLE_OPERATOR, "active", "local-cli")
session = await _dir_session(tmp_path, roster)
(tmp_path / "shared" / "gone").mkdir()
await session._do_dir_delete({"dir": "shared/gone"})
challenge = _last(session)
assert challenge["type"] == "admin_challenge"
assert challenge["op"] == "dir_delete"
assert challenge["subject"] == "shared/gone"
transcript = admin_transcript(
op="dir_delete", node_pk_b64=session._node_pk_b64(), group_id="g1",
subject="shared/gone", nonce=base64.b64decode(challenge["nonce"]),
ts=challenge["ts"])
await session._admin_exec_dir_delete(
session._admin_ops.pop(challenge["op_id"]) if session._admin_ops
else {"op": "dir_delete", "subject": "shared/gone"},
transcript, sk_ed.sign(transcript))
assert _last(session)["type"] == "dir_delete_ack"
assert not (tmp_path / "shared" / "gone").exists()
async def test_someone_elses_signature_does_not_remove_it(tmp_path, roster):
from meshbay_common.adminop import admin_transcript
sk_op, pk_op, pk_x = _keypair()
await roster.pin_identity("grenet", "grenet", pk_op, pk_x, "code")
await roster.set_member("", "grenet", ROLE_OPERATOR, "active", "local-cli")
sk_member, pk_member, pk_x_m = _keypair()
await roster.pin_identity("mallory", "mallory", pk_member, pk_x_m, "code")
await roster.set_member("g1", "mallory", ROLE_MEMBER, "active", "grenet")
session = await _dir_session(tmp_path, roster)
(tmp_path / "shared" / "theirs").mkdir()
transcript = admin_transcript(
op="dir_delete", node_pk_b64=session._node_pk_b64(), group_id="g1",
subject="shared/theirs", nonce=b"\x22" * 32, ts=int(time.time()))
await session._admin_exec_dir_delete(
{"op": "dir_delete", "subject": "shared/theirs"},
transcript, sk_member.sign(transcript))
assert _last(session).get("detail") == "Signature verification failed"
assert (tmp_path / "shared" / "theirs").is_dir(), (
"a member's signature removed a directory — only the operator may")
# ── Removing a member ────────────────────────────────────────────────────────
async def test_revoking_needs_an_operator_signature(tmp_path, roster):
from meshbay_common.adminop import admin_transcript
sk_op, pk_op, pk_x_op = _keypair()
await roster.pin_identity("grenet", "grenet", pk_op, pk_x_op, "code")
await roster.set_member("", "grenet", ROLE_OPERATOR, "active", "local-cli")
sk_m, pk_m, pk_x_m = _keypair()
await roster.pin_identity("victim", "victim", pk_m, pk_x_m, "code")
await roster.set_member("g1", "victim", ROLE_MEMBER, "active", "grenet")
session = _session(tmp_path, roster, group_id="g1", gek=generate_gek())
session._admin_ops = {}
session._ctx["has_admin_authority"] = True
session._ctx["peers"] = {}
transcript = admin_transcript(
op="member_revoke", node_pk_b64=session._node_pk_b64(), group_id="g1",
subject="victim", nonce=b"\x33" * 32, ts=int(time.time()))
# A member's own signature is not enough.
await session._admin_exec_member_revoke(
{"op": "member_revoke", "subject": "victim"}, transcript,
sk_m.sign(transcript))
assert _last(session).get("detail") == "Signature verification failed"
assert (await roster.get_member("g1", "victim"))["status"] == "active"
# The operator's is.
await session._admin_exec_member_revoke(
{"op": "member_revoke", "subject": "victim"}, transcript,
sk_op.sign(transcript))
assert _last(session)["type"] == "member_revoke_ack"
assert (await roster.get_member("g1", "victim"))["status"] == "revoked"
async def test_revoking_is_confined_to_the_group_it_was_asked_for(tmp_path, roster):
"""
A node hosting two groups must not lose someone from both. Their pinned
identity survives as well — forgetting a key is `member unpin`, and saying
"remove them" should not silently do it.
"""
from meshbay_common.adminop import admin_transcript
sk_op, pk_op, pk_x_op = _keypair()
await roster.pin_identity("grenet", "grenet", pk_op, pk_x_op, "code")
await roster.set_member("", "grenet", ROLE_OPERATOR, "active", "local-cli")
_, pk_m, pk_x_m = _keypair()
await roster.pin_identity("both", "both", pk_m, pk_x_m, "code")
await roster.set_member("g1", "both", ROLE_MEMBER, "active", "grenet")
await roster.set_member("g2", "both", ROLE_MEMBER, "active", "grenet")
session = _session(tmp_path, roster, group_id="g1", gek=generate_gek())
session._admin_ops = {}
session._ctx["has_admin_authority"] = True
session._ctx["peers"] = {}
transcript = admin_transcript(
op="member_revoke", node_pk_b64=session._node_pk_b64(), group_id="g1",
subject="both", nonce=b"\x44" * 32, ts=int(time.time()))
await session._admin_exec_member_revoke(
{"op": "member_revoke", "subject": "both"}, transcript,
sk_op.sign(transcript))
assert (await roster.get_member("g1", "both"))["status"] == "revoked"
assert (await roster.get_member("g2", "both"))["status"] == "active"
assert await roster.get_identity("both") is not None, (
"the pinned identity was dropped; that is `member unpin`, not this")
async def test_an_operator_cannot_revoke_themselves(tmp_path, roster):
"""It would leave the group with nobody able to invite or remove."""
session = _session(tmp_path, roster, group_id="g1", gek=generate_gek())
session._admin_ops = {}
session._ctx["has_admin_authority"] = True
session._do_member_revoke({"user_id": session._user_id})
assert _last(session).get("detail") == "Cannot revoke yourself"
|