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 | // *****************************************************************************
/*!
\file src/cli_matrix_thread.cpp
\copyright 2022-2025 J. Bakosi,
All rights reserved. See the LICENSE file for details.
\brief Piac matrix client functionality
*/
// *****************************************************************************
#include <iostream>
#include <fstream>
#include <nlohmann/json.hpp>
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpadded"
#pragma clang diagnostic ignored "-Wextra-semi"
#pragma clang diagnostic ignored "-Wweak-vtables"
#pragma clang diagnostic ignored "-Wold-style-cast"
#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
#pragma clang diagnostic ignored "-Wdocumentation-unknown-command"
#endif
#include "mtxclient/http/client.hpp"
#include "mtxclient/crypto/client.hpp"
#include "mtx/responses/sync.hpp"
#include "mtx/responses/common.hpp"
#include "mtx/responses/create_room.hpp"
#include "mtx/events.hpp"
#include "mtx/events/encrypted.hpp"
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
#include "cli_matrix_thread.hpp"
#include "logging_util.hpp"
#include "string_util.hpp"
constexpr auto OLM_ALGO = "m.olm.v1.curve25519-aes-sha2";
static std::shared_ptr< mtx::http::Client> g_mtxclient = nullptr;
static std::shared_ptr< mtx::crypto::OlmClient> g_olmclient = nullptr;
static std::string g_mtx_account_db_filename;
static std::string g_mtx_session_db_filename;
static std::string g_mtx_db_storage_key;
static std::vector< zmqpp::socket > g_msg_mtx;
uint16_t piac::g_matrix_sync_timeout = 10'000; // milliseconds
bool piac::g_matrix_connected = false;
bool piac::g_matrix_shutdown = false;
zmqpp::context piac::g_ctx_msg;
struct OutboundSessionData {
std::string session_id;
std::string session_key;
uint64_t message_index = 0;
};
static inline void
to_json( nlohmann::json& obj, const OutboundSessionData& msg )
// *****************************************************************************
//! Serialize OutboundSessionData to json format
//! \param[in,out] obj nlohmann::json object to write to
//! \param[in] msg OutboundSessionData message to read from
// *****************************************************************************
{
obj[ "session_id" ] = msg.session_id;
obj[ "session_key" ] = msg.session_key;
obj[ "message_index" ] = msg.message_index;
}
static inline void
from_json( const nlohmann::json& obj, OutboundSessionData& msg )
// *****************************************************************************
//! Deserialize OutboundSessionData from json format
//! \param[in] obj nlohmann::json object to read from
//! \param[in,out] msg OutboundSessionData message to write to
// *****************************************************************************
{
msg.session_id = obj.at( "session_id" ).get< std::string >();
msg.session_key = obj.at( "session_key" ).get< std::string >();
msg.message_index = obj.at( "message_index" ).get< uint64_t >();
}
struct OutboundSessionDataRef {
OlmOutboundGroupSession* session;
OutboundSessionData data;
};
struct DevKeys {
std::string ed25519;
std::string curve25519;
};
static inline void
to_json( nlohmann::json& obj, const DevKeys& msg )
// *****************************************************************************
//! Serialize DevKeys to json format
//! \param[in,out] obj nlohmann::json object to write to
//! \param[in] msg DevKeys message to read from
// *****************************************************************************
{
obj[ "ed25519" ] = msg.ed25519;
obj[ "curve25519" ] = msg.curve25519;
}
static inline void
from_json( const nlohmann::json& obj, DevKeys& msg )
// *****************************************************************************
//! Deserialize DevKeys from json format
//! \param[in] obj nlohmann::json object to read from
//! \param[in,out] msg DevKeys message to write to
// *****************************************************************************
{
msg.ed25519 = obj.at( "ed25519" ).get< std::string >();
msg.curve25519 = obj.at( "curve25519" ).get< std::string >();
}
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpadded"
#endif
struct OlmCipherContent {
std::string body;
uint8_t type;
};
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
inline void from_json(const nlohmann::json& obj, OlmCipherContent& msg )
// *****************************************************************************
//! Deserialize OlmCipherContent from json format
//! \param[in] obj nlohmann::json object to read from
//! \param[in,out] msg OlmCipherContent to write to
// *****************************************************************************
{
msg.body = obj.at("body").get< std::string >();
msg.type = obj.at("type").get< uint8_t >();
}
struct OlmMessage {
std::string sender_key;
std::string sender;
using RecipientKey = std::string;
std::map< RecipientKey, OlmCipherContent > ciphertext;
};
inline void from_json( const nlohmann::json& obj, OlmMessage& msg )
// *****************************************************************************
//! Deserialize OlmMessage from json format
//! \param[in] obj nlohmann::json object to read from
//! \param[in,out] msg OlmMessage to write to
// *****************************************************************************
{
if (obj.at("type") != "m.room.encrypted") {
throw std::invalid_argument( "invalid type for olm message" );
}
if (obj.at("content").at("algorithm") != OLM_ALGO)
throw std::invalid_argument("invalid algorithm for olm message");
msg.sender = obj.at("sender").get< std::string >();
msg.sender_key = obj.at("content").at("sender_key").get< std::string >();
msg.ciphertext = obj.at("content").at("ciphertext").
get< std::map< std::string, OlmCipherContent > >();
}
struct Storage {
using OlmSessionPtr = mtx::crypto::OlmSessionPtr;
using InboundGroupSessionPtr = mtx::crypto::InboundGroupSessionPtr;
using OutboundGroupSessionPtr = mtx::crypto::OutboundGroupSessionPtr;
//! Storage for the user_id -> list of devices mapping
std::map< std::string, std::vector< std::string > > devices;
//! Storage for the identity key for a device.
std::map< std::string, DevKeys > device_keys;
//! Flag that indicate if a specific room has encryption enabled.
std::map< std::string, bool > encrypted_rooms;
//! Keep track of members per room.
std::map< std::string, std::map< std::string, bool > > members;
void add_member( const std::string& room_id, const std::string& user_id ) {
members[room_id][user_id] = true;
}
//! Mapping from curve25519 to session
std::map< std::string, OlmSessionPtr > olm_inbound_sessions;
std::map< std::string, OlmSessionPtr > olm_outbound_sessions;
std::map< std::string, InboundGroupSessionPtr > inbound_group_sessions;
std::map< std::string, OutboundSessionData > outbound_group_session_data;
std::map< std::string, OutboundGroupSessionPtr > outbound_group_sessions;
bool outbound_group_exists( const std::string& room_id ) {
return
outbound_group_sessions.find( room_id ) !=
end( outbound_group_sessions ) &&
outbound_group_session_data.find( room_id ) !=
end( outbound_group_session_data );
}
void set_outbound_group_session( const std::string& room_id,
OutboundGroupSessionPtr session,
OutboundSessionData data )<--- Function parameter 'data' should be passed by const reference. [+]Parameter 'data' is passed by value. It could be passed as a const reference which is usually faster and recommended in C++.
{
outbound_group_session_data[ room_id ] = data;
outbound_group_sessions[ room_id ] = std::move( session );
}
OutboundSessionDataRef
get_outbound_group_session( const std::string& room_id ) {
return { outbound_group_sessions[ room_id ].get(),
outbound_group_session_data[ room_id ] };
}
bool inbound_group_exists( const std::string& room_id,
const std::string& session_id,
const std::string& sender_key )
{
const auto key = room_id + session_id + sender_key;
return inbound_group_sessions.find( key ) != end(inbound_group_sessions);
}
void set_inbound_group_session( const std::string& room_id,
const std::string& session_id,
const std::string& sender_key,
InboundGroupSessionPtr session )
{
const auto key = room_id + session_id + sender_key;
inbound_group_sessions[ key ] = std::move( session );
}
OlmInboundGroupSession*
get_inbound_group_session( const std::string& room_id,
const std::string& session_id,
const std::string& sender_key )
{
const auto key = room_id + session_id + sender_key;
return inbound_group_sessions[ key ].get();
}
void load() {
using namespace std;
using namespace mtx::crypto;
MDEBUG( "matrix session restoring storage" );
ifstream db( g_mtx_session_db_filename );
if (not db.is_open()) {
MINFO( "couldn't open matrix session db " << g_mtx_session_db_filename );
return;
}
string db_data( (istreambuf_iterator< char >( db )),
istreambuf_iterator< char >() );
if (db_data.empty()) return;
nlohmann::json obj = nlohmann::json::parse( db_data );
devices = obj.at( "devices" ).get< map< string, vector< string > > >();
device_keys = obj.at( "device_keys" ).get< map< string, DevKeys > >();
encrypted_rooms = obj.at( "encrypted_rooms" ).get< map< string, bool> >();
members = obj.at( "members" ).get< map< string, map< string, bool > > >();
if (obj.count( "olm_inbound_sessions" ) != 0) {
auto sessions = obj.at( "olm_inbound_sessions" ).get<map<string, string>>();
for (const auto &s : sessions)
olm_inbound_sessions[ s.first ] =
unpickle< SessionObject >( s.second, g_mtx_db_storage_key );
}
if (obj.count( "olm_outbound_sessions" ) != 0) {
auto sessions = obj.at("olm_outbound_sessions").get<map<string,string>>();
for (const auto &s : sessions)
olm_outbound_sessions[ s.first ] =
unpickle< SessionObject >( s.second, g_mtx_db_storage_key );
}
if (obj.count( "inbound_group_sessions" ) != 0) {
auto sessions = obj.at("inbound_group_sessions").get<map<string, string>>();
for (const auto &s : sessions)
inbound_group_sessions[ s.first ] =
unpickle< InboundSessionObject >( s.second, g_mtx_db_storage_key );
}
if (obj.count( "outbound_group_sessions" ) != 0) {
auto sessions = obj.at("outbound_group_sessions").get<map<string, string>>();
for (const auto &s : sessions)
outbound_group_sessions[ s.first ] =
unpickle< OutboundSessionObject >( s.second, g_mtx_db_storage_key );
}
if (obj.count( "outbound_group_session_data" ) != 0) {
auto sessions = obj.at( "outbound_group_session_data" ).
get<map<string,OutboundSessionData>>();
for (const auto &s : sessions)
outbound_group_session_data[s.first] = s.second;
}
}
void save() {
using namespace mtx::crypto;
MDEBUG( "matrix session saving storage" );
std::ofstream db( g_mtx_session_db_filename );
if (not db.is_open()) {
MERROR( "Couldn't open matrix session db " << g_mtx_session_db_filename );
return;
}
nlohmann::json data;
data[ "devices" ] = devices;
data[ "device_keys" ] = device_keys;
data[ "encrypted_rooms" ] = encrypted_rooms;
data[ "members" ] = members;
// Save inbound sessions
for (const auto &s : olm_inbound_sessions)
data[ "olm_inbound_sessions" ][ s.first ] =
pickle< SessionObject >( s.second.get(), g_mtx_db_storage_key );
for (const auto &s : olm_outbound_sessions)
data[ "olm_outbound_sessions" ][ s.first ] =
pickle< SessionObject >( s.second.get(), g_mtx_db_storage_key );
for (const auto &s : inbound_group_sessions)
data[ "inbound_group_sessions" ][ s.first ] =
pickle< InboundSessionObject >( s.second.get(), g_mtx_db_storage_key );
for (const auto &s : outbound_group_sessions)
data[ "outbound_group_sessions" ][ s.first ] =
pickle< OutboundSessionObject >( s.second.get(), g_mtx_db_storage_key );
for (const auto &s : outbound_group_session_data)
data[ "outbound_group_session_data" ][ s.first ] = s.second;
// Save to file
db << data.dump( 2 );
db.close();
}
};
static Storage g_storage;
static void
print_errors( mtx::http::RequestErr err )
// *****************************************************************************
//! Log matrix request errors
//! \param[in] err Matrix error object
// *****************************************************************************
{
if (err->status_code)
MERROR( "status code: " << static_cast<uint16_t>(err->status_code));
if (not err->matrix_error.error.empty() )
MERROR( "error msg: " << err->matrix_error.error );
if (err->error_code)
MERROR( "error code: " << err->error_code );
if (not err->parse_error.empty())
MERROR( "parse error: " << err->parse_error );
}
static void
decrypt_olm_message( const OlmMessage& olm_msg )
// *****************************************************************************
//! Decrypt Olm message
//! \param[in] olm_msg Message to decrypt
// *****************************************************************************
{
MINFO( "OLM message" );
MINFO( "sender: " << olm_msg.sender );
MINFO( "sender_key: " << olm_msg.sender_key );
const auto my_id_key = g_olmclient->identity_keys().curve25519;
for (const auto& cipher : olm_msg.ciphertext) {
if (cipher.first == my_id_key) {
const auto msg_body = cipher.second.body;
const auto msg_type = cipher.second.type;
MINFO( "the message is meant for us" );
MINFO( "body: " << msg_body );
MINFO( "type: " << msg_type );
if (msg_type == 0) {
MINFO( "opening session with " << olm_msg.sender );
auto inbound_session = g_olmclient->create_inbound_session( msg_body );
auto ok = mtx::crypto::matches_inbound_session_from(
inbound_session.get(), olm_msg.sender_key, msg_body );
if (not ok) {
MERROR( "session could not be established" );
} else {
auto output = g_olmclient->decrypt_message( inbound_session.get(),
msg_type,
msg_body );
auto plaintext = nlohmann::json::parse(
std::string( begin(output), end(output) ) );
MINFO( "decrypted message: " << plaintext.dump(2) );
g_storage.olm_inbound_sessions.emplace( olm_msg.sender_key,
std::move( inbound_session ) );
std::string room_id =
plaintext.at( "content" ).at( "room_id" ).get< std::string >();
std::string session_id =
plaintext.at( "content ").at( "session_id" ).get <std::string >();
std::string session_key =
plaintext.at( "content" ).at( "session_key" ).get <std::string >();
if (g_storage.inbound_group_exists( room_id, session_id,
olm_msg.sender_key ))
{
MWARNING( "megolm session already exists" );
} else {
auto megolm_session =
g_olmclient->init_inbound_group_session( session_key );
g_storage.set_inbound_group_session( room_id,
session_id,
olm_msg.sender_key,
std::move( megolm_session ) );
MINFO( "megolm_session saved" );
}
}
}
}
}
}
static void
handle_to_device_msgs( const mtx::responses::ToDevice& msgs )
// *****************************************************************************
//! Handle to-device messages
//! \param[in] msgs Messages to handle
// *****************************************************************************
{
if (not msgs.events.empty()) {
MINFO( "inspecting to_device messages " << msgs.events.size() );
}
for (const auto& msg : msgs.events) {
MINFO( std::visit(
[](const auto& e){ return nlohmann::json(e); }, msg ).dump( 2 ) );
try {
OlmMessage olm_msg = std::visit(
[](const auto &e){ return nlohmann::json(e).get< OlmMessage >(); }, msg
);
decrypt_olm_message( std::move( olm_msg ) );
} catch ( const nlohmann::json::exception& e ) {
MWARNING( "parsing error for olm message: " << e.what() );
} catch ( const std::invalid_argument& e ) {
MWARNING( "validation error for olm message: " << e.what() );
}
}
}
static void
keys_uploaded_cb( const mtx::responses::UploadKeys&, mtx::http::RequestErr err )
// *****************************************************************************
// *****************************************************************************
{
if (err) {
print_errors( err );
return;
}
g_olmclient->mark_keys_as_published();
MINFO( "keys uploaded" );
}
template< class T >
static bool is_room_encryption( const T& event )
// *****************************************************************************
// *****************************************************************************
{
using namespace mtx::events;
using namespace mtx::events::state;
return std::holds_alternative< StateEvent< Encryption > >( event );
}
template< class T >
static std::string
get_json( const T& event )
// *****************************************************************************
// *****************************************************************************
{
return std::visit( [](auto e){ return nlohmann::json(e).dump(2); }, event );
}
static void
mark_encrypted_room( const RoomId& id )
// *****************************************************************************
// *****************************************************************************
{
MINFO( "encryption is enabled for room: " << id.get() );
g_storage.encrypted_rooms[ id.get() ] = true;
}
template<class T>
static bool
is_member_event( const T& event )
// *****************************************************************************
// *****************************************************************************
{
using namespace mtx::events;
using namespace mtx::events::state;
return std::holds_alternative< StateEvent< Member > >( event );
}
static bool
is_encrypted( const mtx::events::collections::TimelineEvents& event )
// *****************************************************************************
// *****************************************************************************
{
using mtx::events::EncryptedEvent;
using mtx::events::msg::Encrypted;
return std::holds_alternative< EncryptedEvent< Encrypted > >( event );
}
template<class Container, class Item>
static bool
exists( const Container& container, const Item& item )
// *****************************************************************************
// *****************************************************************************
{
return container.find(item) != end(container);
}
static void
save_device_keys( const mtx::responses::QueryKeys& res )
// *****************************************************************************
// *****************************************************************************
{
for (const auto &entry : res.device_keys) {
const auto user_id = entry.first;
if (not exists( g_storage.devices, user_id ))
MINFO( "keys for " << user_id );
std::vector< std::string > device_list;
for (const auto &device : entry.second) {
const auto key_struct = device.second;
const std::string device_id = key_struct.device_id;
const std::string index = "curve25519:" + device_id;
if (key_struct.keys.find(index) == end(key_struct.keys)) continue;
const auto key = key_struct.keys.at( index );
if (!exists(g_storage.device_keys, device_id)) {
MINFO( "save device id => key: " << device_id << " => " << key );
g_storage.device_keys[ device_id ] =
{ key_struct.keys.at("ed25519:" + device_id),
key_struct.keys.at("curve25519:" + device_id) };
}
device_list.push_back( device_id );
}
if (not exists( g_storage.devices, user_id )) {
g_storage.devices[ user_id ] = device_list;
}
}
}
static void
get_device_keys( const UserId& user )
// *****************************************************************************
// *****************************************************************************
{
// Retrieve all devices keys
mtx::requests::QueryKeys query;
query.device_keys[ user.get() ] = {};
g_mtxclient->query_keys( query,
[](const mtx::responses::QueryKeys &res, mtx::http::RequestErr err) {
if (err) {
print_errors( err );
return;
}
for (const auto& key : res.device_keys) {
const auto user_id = key.first;
const auto devices = key.second;
for (const auto &device : devices) {
const auto id = device.first;
const auto data = device.second;
try {
auto ok = verify_identity_signature(
nlohmann::json( data ).get< mtx::crypto::DeviceKeys >(),
DeviceId( id ), UserId( user_id ) );
if (not ok) {
MWARNING( "signature could not be verified" );
MWARNING( nlohmann::json( data ).dump( 2 ) );
}
} catch (const mtx::crypto::olm_exception &e) {
MWARNING( "exception: " << e.what() );
}
}
}
save_device_keys( std::move(res) );
} );
}
static void
send_group_message( OlmOutboundGroupSession* session,
const std::string& session_id,
const std::string& room_id,
const std::string& msg )
// *****************************************************************************
// *****************************************************************************
{
// Create event payload
nlohmann::json doc{ {"type", "m.room.message"},
{"content", {{"type", "m.text"}, {"body", msg}}},
{"room_id", room_id} };
auto payload = g_olmclient->encrypt_group_message( session, doc.dump() );
using namespace mtx::events;
using namespace mtx::identifiers;
using namespace mtx::http;
msg::Encrypted data;
data.ciphertext = std::string( begin(payload), end(payload) );
data.sender_key = g_olmclient->identity_keys().curve25519;
data.session_id = session_id;
data.device_id = g_mtxclient->device_id();
data.algorithm = OLM_ALGO;
g_mtxclient->send_room_message< msg::Encrypted >(
room_id, data, [](const mtx::responses::EventId& res, RequestErr err) {
if (err) {
print_errors( err );
return;
}
MINFO("message sent with event_id: " << res.event_id.to_string());
} );
}
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpadded"
#endif
static void
create_outbound_megolm_session( const std::string& room_id,
const std::string& reply_msg )
// *****************************************************************************
// *****************************************************************************
{
// Create an outbound session
auto outbound_session = g_olmclient->init_outbound_group_session();
const auto session_id = mtx::crypto::session_id( outbound_session.get() );
const auto session_key = mtx::crypto::session_key( outbound_session.get() );
mtx::events::DeviceEvent< mtx::events::msg::RoomKey > megolm_payload;
megolm_payload.content.algorithm = OLM_ALGO;
megolm_payload.content.room_id = room_id;
megolm_payload.content.session_id = session_id;
megolm_payload.content.session_key = session_key;
megolm_payload.type = mtx::events::EventType::RoomKey;
if (g_storage.members.find(room_id) == end(g_storage.members)) {
MERROR( "no members found for room " << room_id );
return;
}
const auto members = g_storage.members[ room_id ];
for (const auto &member : members) {
const auto devices = g_storage.devices[ member.first ];
// TODO: Figure out for which devices we don't have olm sessions.
for (const auto &dev : devices) {
// TODO: check if we have downloaded the keys
const auto device_keys = g_storage.device_keys[ dev ];
auto to_device_cb = [](mtx::http::RequestErr err) {
if (err) {
print_errors( err );
}
};
if (g_storage.olm_outbound_sessions.find(device_keys.curve25519) !=
end(g_storage.olm_outbound_sessions))
{
MINFO("found existing olm outbound session with device" << dev );
auto olm_session =
g_storage.olm_outbound_sessions[ device_keys.curve25519 ].get();
auto device_msg =
g_olmclient->create_olm_encrypted_content( olm_session,
megolm_payload,
UserId( member.first ),
device_keys.ed25519,
device_keys.curve25519 );
nlohmann::json body{{"messages", {{member, {{dev, device_msg}}}}}};
g_mtxclient->send_to_device("m.room.encrypted", body, to_device_cb);
// TODO: send message to device
} else {
MINFO( "claiming one time keys for device " << dev );
using mtx::responses::ClaimKeys;
using mtx::http::RequestErr;
auto cb = [member = member.first, dev, megolm_payload, to_device_cb](
const ClaimKeys &res, RequestErr err) {
if (err) {
print_errors(err);
return;
}
MINFO( "claimed keys for member - dev: " << member << " - " << dev );
MINFO( "room_key " << nlohmann::json(megolm_payload).dump(4) );
MWARNING( "signed one time keys" );
auto retrieved_devices = res.one_time_keys.at( member );
for (const auto &rd : retrieved_devices) {
MINFO( "devices: " << rd.first << " : \n " << rd.second.dump(2) );
// TODO: Verify signatures
auto otk = rd.second.begin()->at("key");
auto id_key = g_storage.device_keys[dev].curve25519;
auto session = g_olmclient->create_outbound_session( id_key,
otk.get< std::string >() );
auto device_msg = g_olmclient->create_olm_encrypted_content(
session.get(),
megolm_payload,
UserId(member),
g_storage.device_keys[dev].ed25519,
g_storage.device_keys[dev].curve25519 );
// TODO: saving should happen when the message is sent
g_storage.olm_outbound_sessions[ id_key ] = std::move(session);
nlohmann::json body{{"messages", {{member, {{dev, device_msg}}}}}};
g_mtxclient->send_to_device("m.room.encrypted", body, to_device_cb);
}
};
mtx::requests::ClaimKeys claim_keys;
claim_keys.one_time_keys[ member.first ][ dev ] =
mtx::crypto::SIGNED_CURVE25519;
// TODO: we should bulk request device keys here
g_mtxclient->claim_keys(claim_keys, cb);
}
}
}
MINFO( "waiting to send sendToDevice messages" );
std::this_thread::sleep_for( std::chrono::milliseconds(2000) );
MINFO( "sending encrypted group message" );
// TODO: This should be done after all sendToDevice messages have been sent.
send_group_message( outbound_session.get(), session_id, room_id, reply_msg );
// TODO: save message index also.
g_storage.set_outbound_group_session(
room_id, std::move(outbound_session), {session_id, session_key} );
}
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
static void
invite_room( const std::string& src_user,
const std::string& target_user,
const std::string& ad )
// *****************************************************************************
// Invite user to a room
// *****************************************************************************
{
MINFO( src_user << " invites " << target_user << " to room" );
mtx::requests::CreateRoom req;
req.name = "Conversation between " + src_user + " and " + target_user;
req.topic = ad;
req.invite = { '@' + target_user + ':' + g_mtxclient->server() };
g_mtxclient->create_room( req,
[&](const mtx::responses::CreateRoom& res, mtx::http::RequestErr err) {
print_errors( err );
auto room_id = res.room_id.to_string();
MINFO( src_user << " created room id " << room_id );
g_mtxclient->invite_user( room_id,
'@' + target_user + ':' + g_mtxclient->server(),
[room_id](const mtx::responses::Empty&, mtx::http::RequestErr) {} );
});
}
void
piac::matrix_message( const std::string& src_user,
const std::string& target_user,
const std::string& msg )
// *****************************************************************************
// Send a message to a user
// *****************************************************************************
{
MINFO( src_user << " messages " << target_user );
invite_room( src_user, target_user, msg );
}
static void
send_encrypted_reply( const std::string& room_id, const std::string& reply_msg )
// *****************************************************************************
// *****************************************************************************
{
MINFO( "sending encrypted reply" );
// Create a megolm session if it doesn't already exist
if (g_storage.outbound_group_exists( room_id )) {
auto session_obj = g_storage.get_outbound_group_session( room_id );
send_group_message( session_obj.session,
session_obj.data.session_id,
room_id,
reply_msg );
} else {
MINFO( "creating new megolm outbound session" );
create_outbound_megolm_session( room_id, reply_msg );
}
}
static void
parse_messages( const mtx::responses::Sync& res )
// *****************************************************************************
//! Parse received messages after sync
//! \param[in] res Sync response to parse
// *****************************************************************************
{
MDEBUG( "parse_messages" );
for (const auto& room : res.rooms.invite) {
auto room_id = room.first;
MINFO( "joining room " + room_id );
g_mtxclient->join_room( room_id,
[room_id](const mtx::responses::RoomId&, mtx::http::RequestErr e) {
if (e) {
print_errors( e );
MERROR( "failed to join room " << room_id );
return;
}
} );
}
// Check if we have any new m.room_key messages
// (i.e starting a new megolm session)
handle_to_device_msgs( res.to_device );
// Check if the uploaded one time keys are enough
for (const auto &device : res.device_one_time_keys_count) {
if (device.second < 50) {
MDEBUG( "number of one time keys: " << device.second );
g_olmclient->generate_one_time_keys( 50 - device.second );
g_mtxclient->upload_keys( g_olmclient->create_upload_keys_request(),
&keys_uploaded_cb );
}
}
for (const auto &room : res.rooms.join) {
const std::string room_id = room.first;
for (const auto &e : room.second.state.events) {
if (is_room_encryption( e )) {
mark_encrypted_room( RoomId(room_id) );
MDEBUG( "room state events " << get_json(e) );
} else if (is_member_event( e )) {
using namespace mtx::events;
auto m = std::get< StateEvent< state::Member > >( e );
get_device_keys( UserId( m.state_key ) );
g_storage.add_member( room_id, m.state_key );
}
}
for (const auto &e : room.second.timeline.events) {
if (is_room_encryption(e)) {
mark_encrypted_room( RoomId( room_id ) );
MDEBUG( "room timeline events " << get_json(e) );
} else if (is_member_event( e )) {
using namespace mtx::events;
auto m = std::get< StateEvent< state::Member > >( e );
get_device_keys( UserId( m.state_key ) );
g_storage.add_member( room_id, m.state_key );
} else if (is_encrypted( e )) {
MDEBUG( "received an encrypted event: " << room_id );
MDEBUG( get_json(e) );
using mtx::events::EncryptedEvent;
using mtx::events::msg::Encrypted;
auto msg = std::get< EncryptedEvent< Encrypted > >( e );
if (g_storage.inbound_group_exists(
room_id, msg.content.session_id, msg.content.sender_key))
{
auto r = g_olmclient->decrypt_group_message(
g_storage.get_inbound_group_session(
room_id, msg.content.session_id, msg.content.sender_key ),
msg.content.ciphertext );
auto msg_str = std::string( begin(r.data), end(r.data) );
const auto body = nlohmann::json::parse(msg_str).
at("content").at("body").get< std::string >();
MDEBUG( "decrypted data: " << body );
MDEBUG( "decrypted message index: " << r.message_index );
if (msg.sender != g_mtxclient->user_id().to_string()) {
// Send a reply back to the sender
std::string reply_txt( msg.sender + ": you said '" + body + "'");
send_encrypted_reply( room_id, reply_txt );
}
} else {
MWARNING( "no megolm session found to decrypt the event" );
}
}
}
}
// tell the message thread that we have just parsed messages
zmqpp::message msg;
msg << "parsed_messages";
g_msg_mtx.back().send( msg );
}
static void
sync_handler( const mtx::responses::Sync& res, mtx::http::RequestErr err )
// *****************************************************************************
// Callback to executed after a /sync request completes.
//! \param[in] res Sync response
//! \param[in] err Errors if any
// *****************************************************************************
{
MDEBUG( "sync_handler" );
mtx::http::SyncOpts opts;
if (err) {
MERROR( "error during sync" );
print_errors( err );
opts.since = g_mtxclient->next_batch_token();
g_mtxclient->sync( opts, &sync_handler );
return;
}
if (piac::g_matrix_shutdown) return;
parse_messages( res );
opts.timeout = piac::g_matrix_sync_timeout;
opts.since = res.next_batch;
g_mtxclient->set_next_batch_token( res.next_batch );
g_mtxclient->sync( opts, &sync_handler );
}
static void
initial_sync_handler( const mtx::responses::Sync& res,
mtx::http::RequestErr err )
// *****************************************************************************
// Callback execute after the first (initial) /sync request completes
//! \param[in] res Sync response
//! \param[in] err Errors if any
// *****************************************************************************
{
MDEBUG( "initial_sync_handler" );
mtx::http::SyncOpts opts;
if (err) {
MERROR( "error during initial sync" );
print_errors( err );
if (err->status_code != 200) {
MERROR( "retrying initial sync ..." );
opts.timeout = 0;
g_mtxclient->sync( opts, &initial_sync_handler );
}
return;
}
if (piac::g_matrix_shutdown) return;
parse_messages( res );
for (const auto &room : res.rooms.join) {
const auto room_id = room.first;
for (const auto &e : room.second.state.events) {
if (is_member_event(e)) {
using namespace mtx::events;
auto m = std::get< StateEvent< state::Member > >( e );
get_device_keys( UserId( m.state_key ) );
g_storage.add_member( room_id, m.state_key );
}
}
}
opts.since = res.next_batch;
opts.timeout = piac::g_matrix_sync_timeout;
g_mtxclient->set_next_batch_token( res.next_batch );
g_mtxclient->sync( opts, &sync_handler );
}
static void
login_cb( const mtx::responses::Login&, mtx::http::RequestErr error )
// *****************************************************************************
//! Callback executed after login attempt
//! \param[in] error Error if any
// *****************************************************************************
{
MLOG_SET_THREAD_NAME( "mtx" );
MDEBUG( "login_cb" );
if (error) {
MERROR( "login error" );
print_errors( error );
if (not error->matrix_error.error.empty() ) {
std::cerr << error->matrix_error.error << '\n';
}
return;
}
MDEBUG( "user id: " + g_mtxclient->user_id().to_string() );
MDEBUG( "device id: " + g_mtxclient->device_id() );
MDEBUG( "ed25519: " + g_olmclient->identity_keys().ed25519 );
MDEBUG( "curve25519: " + g_olmclient->identity_keys().curve25519 );
// Upload one-time keys
g_olmclient->set_user_id( g_mtxclient->user_id().to_string() );
g_olmclient->set_device_id( g_mtxclient->device_id() );
g_olmclient->generate_one_time_keys( 50 );
g_mtxclient->upload_keys( g_olmclient->create_upload_keys_request(),
[](const mtx::responses::UploadKeys&, mtx::http::RequestErr err ) {
if (err) {
print_errors(err);
return;
}
g_olmclient->mark_keys_as_published();
MDEBUG( "keys uploaded" );
MDEBUG( "starting initial sync" );
mtx::http::SyncOpts opts;
opts.timeout = 0;
g_mtxclient->sync( opts, &initial_sync_handler );
} );
}
void
piac::matrix_thread( const std::string& server,
const std::string& username,
const std::string& password,
const std::string& db_key )
// *****************************************************************************
// Entry point to thread to communicate with a matrix server
//! \param[in] server Matrix hostname to connect to as \<host\>[:port]
//! \param[in] username Username to use
//! \param[in] password Password to use
//! \param[in] db_key Database key to use to encrypt session db on disk
// *****************************************************************************
{
MLOG_SET_THREAD_NAME( "mtx" );
MINFO( "mtx thread initialized" );
MDEBUG( "matrix login request to server: " << server << ", username: " <<
username << ", connected: " << std::boolalpha << g_matrix_connected );
if (g_matrix_connected) {
MDEBUG( "already connected" );
return;
}
int port = 443;
auto [host,prt] = split( server, ":" );
if (prt.empty()) {
g_mtxclient = std::make_shared< mtx::http::Client >( host );
} else {
try {
port = std::stoi( prt );
} catch (std::exception&) {
std::cerr << "invalid <host>:<port> format\n";
return;
}
g_mtxclient = std::make_shared< mtx::http::Client >( host, port );
}
MDEBUG( "will connect as @" << username << ':' << host << ':' << port );
g_mtxclient->verify_certificates( false );
g_olmclient = std::make_shared< mtx::crypto::OlmClient >();
std::string db_base_filename = "piac-matrix-@" + username + ':' + server;
g_mtx_account_db_filename = db_base_filename + ".account.json";
g_mtx_session_db_filename = db_base_filename + ".session.json";
g_mtx_db_storage_key = db_key;
std::ifstream db( g_mtx_account_db_filename );
std::string db_data( (std::istreambuf_iterator< char >( db )),
std::istreambuf_iterator< char >() );
if (db_data.empty()) {
g_olmclient->create_new_account();
} else {
g_olmclient->load(
nlohmann::json::parse(db_data).at("account").get<std::string>(),
g_mtx_db_storage_key );
}
g_storage.load();
// create socket to forward matrix messages to
g_msg_mtx.emplace_back( piac::g_ctx_msg, zmqpp::socket_type::pair );
g_msg_mtx.back().connect( "inproc://msg_mtx" );
MDEBUG( "Connected to inproc:://msg_mtx" );
g_matrix_connected = true;
g_mtxclient->login( username, password, login_cb ); // blocking, syncing...
g_mtxclient->close();
g_matrix_connected = false;
g_matrix_shutdown = false;
// tell the message thread that we are shutting down
zmqpp::message msg;
msg << "SHUTDOWN";
g_msg_mtx.back().send( msg );
g_msg_mtx.clear();
MDEBUG( "saving matrix session to " +
g_mtx_account_db_filename + " and " + g_mtx_session_db_filename );
g_storage.save();
std::ofstream odb( g_mtx_account_db_filename );
if (not odb.is_open()) {
MERROR( "Couldn't open matrix account db " << g_mtx_account_db_filename );
return;
}
nlohmann::json data;
data[ "account" ] = g_olmclient->save( g_mtx_db_storage_key );
odb << data.dump( 2 );
odb.close();
MINFO( "mtx thread quit" );
}
|