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
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
use futures_util::StreamExt as _;
use super::*;
/// Maximum number of records per transaction
const MAX_RECORDS_PER_TRANSACTION: usize = 32;
impl_veilid_log_facility!("stor");
#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
pub struct OutboundTransactionHandle {
keys: Arc<Vec<OpaqueRecordKey>>,
}
impl OutboundTransactionHandle {
pub fn new(keys: Vec<OpaqueRecordKey>) -> Self {
Self {
keys: Arc::new(keys),
}
}
pub fn keys(&self) -> &[OpaqueRecordKey] {
self.keys.as_ref()
}
}
impl fmt::Display for OutboundTransactionHandle {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let othstr = self
.keys
.iter()
.map(|x| x.to_string())
.collect::<Vec<_>>()
.join(",");
write!(f, "[{}]", othstr)
}
}
impl StorageManager {
/// Create a new outbound transaction over a set of records
/// If an existing transaction exists over these records
/// or a transaction can not be performed at this time, this will fail.
/// Returns a transaction handle if the transaction was created
/// Returns Err(VeilidAPIError::TryAgain) if the transaction could not be created
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "stor", skip(self), ret)
)]
pub async fn begin_transaction(
&self,
record_keys: Vec<RecordKey>,
options: Option<TransactDHTRecordsOptions>,
) -> VeilidAPIResult<OutboundTransactionHandle> {
let Ok(_guard) = self.startup_lock.enter() else {
apibail_not_initialized!();
};
// Early rejection if no records are being transacted over
if record_keys.is_empty() {
apibail_missing_argument!(
"begin_transaction requires one or more records",
"record_keys"
);
}
// Enforce record limit
if record_keys.len() > MAX_RECORDS_PER_TRANSACTION {
apibail_invalid_argument!(
format!(
"begin_transaction has more than {} records",
MAX_RECORDS_PER_TRANSACTION
),
"record_keys",
record_keys.len()
);
}
// Early rejection if there are duplicate records
if record_keys.has_duplicates() {
apibail_missing_argument!(
"transaction can not have duplicate record keys",
"record_keys"
);
}
let records_lock = self
.record_lock_table
.lock_records(
record_keys.iter().map(|x| x.opaque()).collect(),
StorageManagerRecordLockPurpose::TransactBegin,
)
.await;
// Early rejection if dht is not online
if !self.dht_is_online() {
apibail_try_again!("dht is not online");
}
// Resolve options
let options = options.unwrap_or_default();
let required_strict_consensus_count = self.config().network.dht.set_value_count as usize;
let required_get_consensus_count = self.config().network.dht.get_value_count as usize;
let rpc_timeout = TimestampDuration::new_ms(self.config().network.rpc.timeout_ms.into());
let consensus_width = self.config().network.dht.consensus_width as usize;
// Get opened records and construct record states
let (transaction_handle, begin_params_list) = {
let mut inner = self.inner.lock();
let mut record_params = vec![];
for record_key in record_keys {
let opaque_record_key = record_key.opaque();
let Some(opened_record) = inner.opened_records.get(&opaque_record_key) else {
apibail_generic!("record key not open: {}", opaque_record_key);
};
if record_key.encryption_key().map(|x| x.value()) != opened_record.encryption_key()
{
apibail_generic!(
"record encryption key does not match opened record encryption key: {}",
opaque_record_key
);
}
// Get signing keypair for this transaction
let signing_keypair = opened_record
.writer()
.cloned()
.or_else(|| options.default_signing_keypair.clone())
.unwrap_or_else(|| {
self.anonymous_signing_keys
.get(opaque_record_key.kind())
.unwrap_or_log()
});
// Get safety selection for this record
let safety_selection = opened_record.safety_selection();
// Add parameters for this record
record_params.push(OutboundTransactionRecordParams {
record_key,
signing_keypair,
required_strict_consensus_count,
required_get_consensus_count,
safety_selection,
});
}
// Obtain the outbound transaction manager
let otm = &mut inner.outbound_transaction_manager;
// Create a new transaction if possible
let transaction_handle = otm.new_transaction(record_params)?;
// Get parameters for beginning a transaction
let begin_params_list =
match otm.prepare_transact_begin_params(transaction_handle.clone()) {
Ok(v) => v,
Err(e) => {
veilid_log!(self debug "error in prepare_transact_begin_params: {}", e);
// Drop the transaction and ignore the result because there can't be any background tokens yet
let _ = otm.drop_transaction(transaction_handle);
return Err(e);
}
};
(transaction_handle, begin_params_list)
};
self.rollback_guard_locked(&records_lock, transaction_handle.clone(), async {
// Snapshot local valuedata for transaction before beginning fanouts
self.save_local_snapshot(transaction_handle.clone()).await?;
let mut opt_begin_error: Option<VeilidAPIError> = None;
let mut unord = FuturesUnordered::new();
// Send outbound begin transactions on pending records
for begin_params in begin_params_list {
let registry = self.registry();
unord.push(Box::pin(async move {
let this = registry.storage_manager();
this.outbound_transact_begin(begin_params)
.measure_debug(
rpc_timeout,
veilid_log_dbg!(
this,
"StorageManager::begin_transaction outbound_transact_begin"
),
)
.await
}));
}
let mut begin_results = vec![];
while let Some(res) = unord.next().await {
match res {
Ok(result) => {
// Process fanout results for cache regardless of consensus
let subkey_count = result.descriptor.schema()?.subkey_count();
if result.seqs.len() != subkey_count
&& !result.fanout_result.value_nodes.is_empty()
{
apibail_internal!(
"seqs returned does not match subkey count: {} != {}: {:?}",
result.seqs.len(),
subkey_count,
result
);
}
let max_subkey = result.descriptor.schema()?.max_subkey();
let existed = self.process_fanout_results(
result.params.opaque_record_key.clone(),
core::iter::once((
ValueSubkeyRangeSet::single_range(0, max_subkey),
result.fanout_result.clone(),
)),
false,
consensus_width,
)?;
if !existed {
apibail_internal!(
"Record went missing during transaction despite lock: {}",
result.params.opaque_record_key
);
}
begin_results.push(result);
}
Err(e) => {
veilid_log!(self debug "error in outbound_transact_begin: {}", e);
if opt_begin_error.is_none() {
opt_begin_error = Some(e);
}
}
}
}
if let Err(e) = self
.inner
.lock()
.outbound_transaction_manager
.record_transact_begin_results(begin_results)
{
veilid_log!(self debug "error in record_transact_begin_results: {}", e);
if opt_begin_error.is_none() {
opt_begin_error = Some(e);
}
}
// Rollback if any errors happened
if let Some(begin_error) = opt_begin_error {
return Err(begin_error);
}
// Otherwise return handle
Ok(transaction_handle)
})
.await
}
/// Save the local snapshot for a new transaction
async fn save_local_snapshot(
&self,
transaction_handle: OutboundTransactionHandle,
) -> VeilidAPIResult<()> {
let local_record_store = self.get_local_record_store()?;
let local_snapshots = {
let mut local_snapshot_locks = vec![];
for opaque_record_key in transaction_handle.keys() {
local_snapshot_locks.push(
local_record_store
.prepare_snapshot_lock(opaque_record_key.clone())
.await,
);
}
let mut local_snapshots = vec![];
for local_snapshot_lock in local_snapshot_locks {
if let Some(local_snapshot) = local_record_store
.snapshot_record_locked(&local_snapshot_lock)
.await?
{
local_snapshots.push((local_snapshot_lock.record(), local_snapshot));
}
}
local_snapshots
};
{
let mut inner = self.inner.lock();
let transaction_state = inner
.outbound_transaction_manager
.get_transaction_state_mut(&transaction_handle)?;
for (opaque_record_key, local_snapshot) in local_snapshots {
let record_state = transaction_state
.get_record_state_mut(&opaque_record_key)
.ok_or_else(|| {
VeilidAPIError::internal(format!(
"missing record state: {}",
opaque_record_key
))
})?;
record_state.set_local_snapshot(local_snapshot);
}
}
Ok(())
}
/// Finalize a transaction over a set of records
/// If an existing transaction does not exist over these records
/// or a transaction can not be performed at this time, this will fail.
/// Returns Err(VeilidAPIError::TryAgain) if the transaction could not be finalized at this time
/// Returns Err(_) if the transaction finalize failed and resulted in rollback or drop
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "stor", skip(self))
)]
pub async fn end_and_commit_transaction(
&self,
transaction_handle: OutboundTransactionHandle,
) -> VeilidAPIResult<()> {
let Ok(_guard) = self.startup_lock.enter() else {
apibail_not_initialized!();
};
// Early rejection if dht is not online
if !self.dht_is_online() {
apibail_try_again!("dht is not online");
}
let records_lock = self
.record_lock_table
.lock_records(
transaction_handle.keys().to_vec(),
StorageManagerRecordLockPurpose::TransactEndAndCommit,
)
.await;
self.end_transaction_locked(&records_lock, transaction_handle.clone())
.await?;
self.commit_transaction_locked(&records_lock, transaction_handle.clone())
.await?;
// If we get here, it's time to push everything
// to the local record store and drop the transaction
self.flush_committed_transaction_locked(&records_lock, transaction_handle)
.await;
Ok(())
}
/// End a transaction over a set of records
/// If an existing transaction does not exist over these records
/// or a transaction can not be performed at this time, this will fail.
/// Returns Err(VeilidAPIError::TryAgain) if the transaction could not be ended at this time
/// Returns Err(_) if the transaction end failed and resulted in rollback or drop
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "stor", skip(self, records_lock))
)]
pub(super) async fn end_transaction_locked(
&self,
records_lock: &StorageManagerRecordsLockGuard,
transaction_handle: OutboundTransactionHandle,
) -> VeilidAPIResult<()> {
Box::pin(
self.rollback_guard_locked(records_lock, transaction_handle.clone(), async move {
let command_params_list = {
let mut inner = self.inner.lock();
// Obtain the outbound transaction manager
let otm = &mut inner.outbound_transaction_manager;
// Prepare for rollback
otm.prepare_transact_end_params(transaction_handle.clone())
.inspect_err(|e| {
veilid_log!(self debug "error in prepare_transact_end_params: {}", e);
})?
};
// Cancel all scheduled keepalives (sync); marks transaction cancelled so no new Gets are enqueued.
self.outbound_transaction_keepalive_processor
.unregister(transaction_handle.clone());
let rpc_timeout =
TimestampDuration::new_ms(self.config().network.rpc.timeout_ms.into());
// End transactions on all records.
let mut unord = FuturesUnordered::new();
for command_params in command_params_list {
let fut = self
.outbound_transact_command(command_params)
.measure_debug(
rpc_timeout,
veilid_log_dbg!(
self,
"StorageManager::end_transaction_locked outbound_transact_command"
),
);
unord.push(fut);
}
let mut results = vec![];
let mut opt_end_error = None;
while let Some(res) = unord.next().await {
match res {
Ok(v) => {
//
results.push(v);
}
Err(e) => {
veilid_log!(self debug "error in end transaction: {}", e);
if opt_end_error.is_none() {
opt_end_error = Some(e);
}
}
}
}
// Store end results
{
let mut inner = self.inner.lock();
let otm = &mut inner.outbound_transaction_manager;
if let Err(e) =
otm.record_transact_end_results(transaction_handle.clone(), results)
{
veilid_log!(self debug "Recording end transaction failed: {}", e);
if opt_end_error.is_none() {
opt_end_error = Some(e);
}
}
};
// Rollback if any errors happened
if let Some(end_error) = opt_end_error {
return Err(end_error);
}
Ok(())
}),
)
.await
}
/// Commit a transaction over a set of records
/// If an existing transaction does not exist over these records
/// or a transaction can not be performed at this time, this will fail.
/// Returns Err(VeilidAPIError::TryAgain) if the transaction could not be committed at this time
/// Returns Err(_) if the transaction commit failed and resulted in rollback or drop
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "stor", skip(self, records_lock))
)]
pub(super) async fn commit_transaction_locked(
&self,
records_lock: &StorageManagerRecordsLockGuard,
transaction_handle: OutboundTransactionHandle,
) -> VeilidAPIResult<()> {
Box::pin(
self.rollback_guard_locked(records_lock, transaction_handle.clone(), async move {
let command_params_list = {
let mut inner = self.inner.lock();
// Obtain the outbound transaction manager
let otm = &mut inner.outbound_transaction_manager;
// Prepare for commit
otm.prepare_transact_commit_params(transaction_handle.clone())
.inspect_err(|e| {
veilid_log!(self debug "error in prepare_transact_commit_params: {}", e);
})?
};
let rpc_timeout =
TimestampDuration::new_ms(self.config().network.rpc.timeout_ms.into());
// Commit transactions on all records
let mut unord = FuturesUnordered::new();
for command_params in command_params_list {
let fut = self
.outbound_transact_command(command_params)
.measure_debug(
rpc_timeout,
veilid_log_dbg!(
self,
"StorageManager::commit_transaction_locked outbound_transact_command"
),
);
unord.push(fut);
}
let mut results = vec![];
let mut opt_commit_error = None;
while let Some(res) = unord.next().await {
match res {
Ok(v) => {
//
results.push(v);
}
Err(e) => {
veilid_log!(self debug "Commit transaction failed: {}", e);
if opt_commit_error.is_none() {
opt_commit_error = Some(e);
}
}
}
}
// Store commit results
{
let mut inner = self.inner.lock();
if let Err(e) = inner
.outbound_transaction_manager
.record_transact_commit_results(transaction_handle.clone(), results)
{
veilid_log!(self debug "Recording commit transaction failed: {}", e);
if opt_commit_error.is_none() {
opt_commit_error = Some(e);
}
}
if let Some(err) = opt_commit_error {
return Err(err);
}
}
Ok(())
}),
)
.await
}
/// Removes the transaction from the transaction manager
/// and flushes its contents to the storage manager
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "dht", skip(self, records_lock))
)]
pub(super) async fn flush_committed_transaction_locked(
&self,
records_lock: &StorageManagerRecordsLockGuard,
transaction_handle: OutboundTransactionHandle,
) {
let (keys_and_subkeys, cleanup) = {
let mut inner = self.inner.lock();
let Some(transaction_state) = inner
.outbound_transaction_manager
.drop_transaction(transaction_handle.clone())
else {
veilid_log!(self error "missing transaction in flush: {}", transaction_handle);
return;
};
let mut keys_and_subkeys = vec![];
for record_state in transaction_state.get_record_states() {
let opaque_record_key = record_state.record_key().opaque();
let local_commit_results = match record_state.local_commit_results() {
Ok(v) => v,
Err(e) => {
veilid_log!(self error "failed to get local commit results for transaction {}: {}", transaction_handle, e);
return;
}
};
#[cfg(feature = "verbose-tracing")]
{
veilid_log!(self debug "Flush commit for handle={} record={}: {} subkeys to write locally",
transaction_handle,
opaque_record_key,
local_commit_results.len()
);
for (subkey, svd) in &local_commit_results {
veilid_log!(self debug " subkey {} seq={}", subkey, svd.value_data().seq());
}
}
keys_and_subkeys.push((opaque_record_key, local_commit_results));
}
let cleanup = transaction_state.into_transaction_cleanup(transaction_handle.clone());
(keys_and_subkeys, cleanup)
};
// Wait for background operations to finish
cleanup.await;
// Record the set values locally since they were successfully set online
if let Err(e) = self
.handle_set_local_values_with_multiple_records_lock(records_lock, keys_and_subkeys)
.await
{
veilid_log!(self error "failed to set local values with commit results for transaction {}: {}", transaction_handle, e);
}
}
/// Roll back a transaction
/// If the transaction no longer exists, this does nothing.
/// If an error is returned, the transaction is left in a failed state and can either
/// * be dropped/ignored and the remote transaction will time out
/// * another rollback attempt can be made, which may result in a more polite termination of the remote transaction
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "dht", skip(self))
)]
pub async fn rollback_transaction(
&self,
transaction_handle: OutboundTransactionHandle,
) -> VeilidAPIResult<()> {
let Ok(_guard) = self.startup_lock.enter() else {
apibail_not_initialized!();
};
let records_lock = self
.record_lock_table
.lock_records(
transaction_handle.keys().to_vec(),
StorageManagerRecordLockPurpose::TransactRollback,
)
.await;
// Early exit if transaction is already gone
if !self
.inner
.lock()
.outbound_transaction_manager
.transaction_exists(&transaction_handle)
{
return Ok(());
}
// Early rejection if dht is not online
if !self.dht_is_online() {
apibail_try_again!("dht is not online");
}
// Send all rollbacks to the network
self.rollback_transaction_locked(&records_lock, transaction_handle.clone())
.await?;
// Transaction is done successfully, drop it and wait for background tasks to complete if any
self.drop_transaction_and_wait_locked(&records_lock, transaction_handle)
.await;
Ok(())
}
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "dht", skip(self, _records_lock))
)]
pub(super) async fn rollback_transaction_locked(
&self,
_records_lock: &StorageManagerRecordsLockGuard,
transaction_handle: OutboundTransactionHandle,
) -> VeilidAPIResult<()> {
let command_params_list = {
let mut inner = self.inner.lock();
// Obtain the outbound transaction manager
let otm = &mut inner.outbound_transaction_manager;
// Prepare for rollback
otm.prepare_rollback_transact_value_params(transaction_handle.clone(), None)
.inspect_err(|e| {
veilid_log!(self debug "error in prepare_rollback_transact_value_params: {}", e);
})?
};
let rpc_timeout = TimestampDuration::new_ms(self.config().network.rpc.timeout_ms.into());
// Rollback transactions on all records
let mut unord = FuturesUnordered::new();
for command_params in command_params_list {
let fut = self
.outbound_transact_command(command_params)
.measure_debug(
rpc_timeout,
veilid_log_dbg!(
self,
"StorageManager::rollback_transaction_locked outbound_transact_command"
),
);
unord.push(fut);
}
let mut results = vec![];
let mut opt_rollback_error = None;
while let Some(res) = unord.next().await {
match res {
Ok(v) => {
//
results.push(v);
}
Err(e) => {
if opt_rollback_error.is_none() {
opt_rollback_error = Some(e);
}
}
}
}
// Store rollback results
{
let mut inner = self.inner.lock();
let otm = &mut inner.outbound_transaction_manager;
if let Err(e) =
otm.record_transact_rollback_results(transaction_handle.clone(), results)
{
if opt_rollback_error.is_none() {
opt_rollback_error = Some(e);
}
}
}
if let Some(rberr) = opt_rollback_error {
return Err(rberr);
}
Ok(())
}
/// Get a value within a transaction
/// Does not use fanout
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "dht", skip(self), ret)
)]
pub async fn transaction_get(
&self,
transaction_handle: OutboundTransactionHandle,
record_key: RecordKey,
subkey: ValueSubkey,
) -> VeilidAPIResult<Option<ValueData>> {
let Ok(_guard) = self.startup_lock.enter() else {
apibail_not_initialized!();
};
let rpc_timeout = TimestampDuration::new_ms(self.config().network.rpc.timeout_ms.into());
let _subkey_lock = self
.record_lock_table
.lock_subkey(
record_key.opaque(),
subkey,
StorageManagerSubkeyLockPurpose::TransactGet,
)
.measure_debug(
TimestampDuration::new_ms(200),
veilid_log_dbg!(self, "StorageManager::transaction_get lock_subkey"),
)
.await;
// Early rejection if dht is not online
if !self.dht_is_online() {
apibail_try_again!("dht is not online");
}
let (concurrency_semaphore, command_params) = {
let opaque_record_key = record_key.opaque();
let mut inner = self.inner.lock();
let otm = &mut inner.outbound_transaction_manager;
let concurrency_semaphore = otm
.get_transaction_state(&transaction_handle)?
.get_operation_concurrency_semaphore();
// Prepare for get value
let command_params = otm
.prepare_transact_get_params(transaction_handle.clone(), &opaque_record_key, subkey)
.inspect_err(|e| {
veilid_log!(self debug "error in prepare_transact_get_params: {}", e);
})?;
(concurrency_semaphore, command_params)
};
// Wait for concurrency semaphore
let sem = concurrency_semaphore
.acquire()
.measure_debug(
TimestampDuration::new_ms(200),
veilid_log_dbg!(
self,
"StorageManager::transaction_get concurrency semaphore"
),
)
.await;
// Send all get commands
let result = self
.outbound_transact_command(command_params)
.measure_debug(
rpc_timeout,
veilid_log_dbg!(
self,
"StorageManager::transaction_get outbound_transact_command"
),
)
.await
.inspect_err(|e| {
veilid_log!(self debug "Transaction get failed: {}", e);
})?;
// Done with network access, release the semaphore
drop(sem);
let subkey_get_result = {
let mut inner = self.inner.lock();
let otm = &mut inner.outbound_transaction_manager;
otm.record_transact_get_result(transaction_handle.clone(), result)
.inspect_err(|e| {
veilid_log!(self debug "Recording get transaction failed: {}", e);
})?;
// Return newest value
let outbound_transaction_state = otm
.get_transaction_state(&transaction_handle)
.inspect_err(|e| {
veilid_log!(self debug "Missing transaction state: {}", e);
})?;
let Some(record_state) =
outbound_transaction_state.get_record_state(&record_key.opaque())
else {
apibail_internal!("missing record in get: {}", record_key.opaque());
};
record_state.current_subkey_get_result(subkey)?
};
let Some(get_signed_value_data) = subkey_get_result.opt_value else {
// No value
return Ok(None);
};
let get_value_data = self
.maybe_decrypt_value_data(&record_key, get_signed_value_data.value_data())
.await?;
// Return the value we got
Ok(Some(get_value_data))
}
/// Set a value within a transaction
/// Does not use fanout
#[cfg_attr(feature = "instrument", instrument(level = "trace", target = "dht", skip(self, data), fields(data.len = data.len()), ret))]
pub async fn transaction_set(
&self,
transaction_handle: OutboundTransactionHandle,
record_key: RecordKey,
subkey: ValueSubkey,
data: Vec<u8>,
options: Option<DHTTransactionSetValueOptions>,
) -> VeilidAPIResult<Option<ValueData>> {
#[cfg(feature = "verbose-tracing")]
let set_start = {
veilid_log!(self debug "transaction_set enter: handle={} key={} subkey={}",
transaction_handle, record_key.opaque(), subkey,
);
Timestamp::now()
};
let Ok(_guard) = self.startup_lock.enter() else {
apibail_not_initialized!();
};
let rpc_timeout = TimestampDuration::new_ms(self.config().network.rpc.timeout_ms.into());
let _subkey_lock = self
.record_lock_table
.lock_subkey(
record_key.opaque(),
subkey,
StorageManagerSubkeyLockPurpose::TransactSet,
)
.measure_debug(
TimestampDuration::new_ms(200),
veilid_log_dbg!(self, "StorageManager::transaction_set lock_subkey"),
)
.await;
let opaque_record_key = record_key.opaque();
// Early rejection if dht is not online
if !self.dht_is_online() {
apibail_try_again!("dht is not online");
}
let (concurrency_semaphore, command_params) = {
let (concurrency_semaphore, writer, last_get_result) = {
let inner = &*self.inner.lock();
let otm = &inner.outbound_transaction_manager;
let concurrency_semaphore = otm
.get_transaction_state(&transaction_handle)?
.get_operation_concurrency_semaphore();
// Get last known value for this subkey from the transaction
let last_get_result = {
let outbound_transaction_state =
otm.get_transaction_state(&transaction_handle)?;
let record_state = outbound_transaction_state
.get_record_state(&opaque_record_key)
.ok_or_else(|| VeilidAPIError::internal("missing record state"))?;
record_state.current_subkey_get_result(subkey)?
};
// Use the specified writer, or if not specified, the default writer when the record was opened
let opt_writer = {
let Some(opened_record) = inner.opened_records.get(&opaque_record_key) else {
apibail_generic!("record not open");
};
opened_record.writer().cloned()
};
let opt_writer = options
.as_ref()
.and_then(|o| o.writer.clone())
.or(opt_writer);
// If we don't have a writer then we can't write
let Some(writer) = opt_writer else {
apibail_generic!("value is not writable");
};
(concurrency_semaphore, writer, last_get_result)
};
// Make signed value data (encrypted) and value data (unencrypted) and get descriptor for this value
let (signed_value_data, _, _) = self
.prepare_set_value_data(&record_key, subkey, data, &writer, last_get_result)
.await?;
// Prepare for set value
let command_params = {
let inner = &mut *self.inner.lock();
let otm = &mut inner.outbound_transaction_manager;
otm.prepare_transact_set_params(
transaction_handle.clone(),
&opaque_record_key,
subkey,
signed_value_data.clone(),
)
.inspect_err(|e| {
veilid_log!(self debug "error in prepare_transact_set_params: {}", e);
})?
};
(concurrency_semaphore, command_params)
};
// Wait for concurrency semaphore
let sem = concurrency_semaphore
.acquire()
.measure_debug(
TimestampDuration::new_ms(200),
veilid_log_dbg!(
self,
"StorageManager::transaction_set concurrency semaphore"
),
)
.await;
// Send all set commands
let result = self
.outbound_transact_command(command_params)
.measure_debug(
rpc_timeout,
veilid_log_dbg!(
self,
"StorageManager::transaction_set outbound_transact_command"
),
)
.await
.inspect_err(|e| {
veilid_log!(self debug "Transaction set failed: {}", e);
})?;
// Done with network access, release the semaphore
drop(sem);
let opt_current_signed_value_data = {
let mut inner = self.inner.lock();
let otm = &mut inner.outbound_transaction_manager;
otm.record_transact_set_result(transaction_handle.clone(), result)
.inspect_err(|e| {
veilid_log!(self debug "Recording set transaction failed: {}", e);
})?;
// Return newer value if it is not what we set
let outbound_transaction_state = otm
.get_transaction_state(&transaction_handle)
.inspect_err(|e| {
veilid_log!(self debug "Missing transaction state: {}", e);
})?;
let record_state = outbound_transaction_state
.get_record_state(&opaque_record_key)
.ok_or_else(|| VeilidAPIError::internal("missing record state"))?;
// If there is an updated value, it means the set succeeded
// If the set found a newer value online then this gets cleared for the subkey
if let Some(updated_consensus) = record_state.updated_consensus().get(subkey) {
// There is an updated value after we did the set
// Ensure the updated consensus meets the strict consensus requirement.
let required = record_state.required_strict_consensus_count();
if updated_consensus.strict_consensus_count < required {
// Otherwise, ask the app to try the set again to continue to attempt consensus
#[cfg(feature = "verbose-tracing")]
{
let set_elapsed = Timestamp::now().duration_since(set_start);
veilid_log!(self debug "transaction_set FAILED consensus: handle={} key={} subkey={} strict_count={} required={} updated_consensus={:?} elapsed={}",
transaction_handle, record_key.opaque(), subkey,
updated_consensus.strict_consensus_count,
required,
updated_consensus,
set_elapsed,
);
}
apibail_try_again!("set did not reach consensus");
}
// Return that the set updated with consensus successfully
#[cfg(feature = "verbose-tracing")]
{
let set_elapsed = Timestamp::now().duration_since(set_start);
veilid_log!(self debug "transaction_set OK: handle={} key={} subkey={} elapsed={}",
transaction_handle, record_key.opaque(), subkey, set_elapsed,
);
}
return Ok(None);
};
// If the set found a newer value it would be recorded in the current consensus
// unless an error condition was hit, in which case we should have failed out with an error
let Some(current_subkey_consensus) = record_state.current_consensus().get(subkey)
else {
apibail_internal!(
"record subkey {} should have a current consensus: {}",
subkey,
record_key.opaque()
);
};
// Return current subkey consensus value data
current_subkey_consensus.opt_value.clone()
};
let Some(current_signed_value_data) = opt_current_signed_value_data else {
apibail_internal!(
"record subkey {} consensus value should not be missing: {}",
subkey,
record_key.opaque()
);
};
let current_value_data = self
.maybe_decrypt_value_data(&record_key, current_signed_value_data.value_data())
.await?;
// Return that a newer or different value was found online
#[cfg(feature = "verbose-tracing")]
{
let set_elapsed = Timestamp::now().duration_since(set_start);
veilid_log!(self debug "transaction_set NEWER_VALUE: handle={} key={} subkey={} elapsed={}",
transaction_handle, record_key.opaque(), subkey, set_elapsed,
);
}
Ok(Some(current_value_data))
}
/// Inspect a record within a transaction, does not perform any network
/// activity, as the transaction state keeps all of the required information
/// after the begin.
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "dht", skip(self), ret)
)]
pub fn transaction_inspect(
&self,
transaction_handle: OutboundTransactionHandle,
record_key: RecordKey,
subkeys: Option<ValueSubkeyRangeSet>,
scope: DHTReportScope,
) -> VeilidAPIResult<DHTRecordReport> {
let Ok(_guard) = self.startup_lock.enter() else {
apibail_not_initialized!();
};
let mut inner = self.inner.lock();
inner.outbound_transaction_manager.get_record_report(
transaction_handle,
&record_key.opaque(),
subkeys,
scope,
)
}
/// Background rollback function used to remove nodes from a transaction
/// and speculatively issue rollback RPCs to them to help them release their server
/// side transactions early. Runs detached in the background as we never care about
/// the result.
pub(super) fn partial_drop_and_background_rollback_locked(
&self,
_records_lock: &StorageManagerRecordsLockGuard,
transaction_handle: OutboundTransactionHandle,
per_record_node_xids_to_drop: PerRecordNodeTransactionIds,
per_record_node_xids_to_rollback: PerRecordNodeTransactionIds,
) -> VeilidAPIResult<()> {
let stop_source = StopSource::new();
let command_params_list = {
let mut inner = self.inner.lock();
// Obtain the outbound transaction manager
let otm = &mut inner.outbound_transaction_manager;
// Prepare all rollbacks -first-
let command_params_list = otm.prepare_rollback_transact_value_params(
transaction_handle.clone(),
Some(per_record_node_xids_to_rollback),
)
.inspect_err(|e| {
veilid_log!(self debug "error in prepare_rollback_transact_value_params: {}", e);
})?;
// Then process all node xid drops -second-
let state = inner
.outbound_transaction_manager
.get_transaction_state_mut(&transaction_handle)?;
// Remove drops from the transaction -second-
for (opaque_record_key, node_xids_to_drop) in per_record_node_xids_to_drop {
let Some(record_state) = state.get_record_state_mut(&opaque_record_key) else {
veilid_log!(self debug "Missing record state for {} in transaction in background drop", opaque_record_key);
continue;
};
record_state.remove_node_transactions(&node_xids_to_drop);
}
// Add the background task stop token to this transaction's drop wait list
let stop_token = stop_source.token();
state.add_background_token(stop_token);
command_params_list
};
// Process background rollbacks -third-
let rpc_timeout = TimestampDuration::new_ms(self.config().network.rpc.timeout_ms.into());
let registry = self.registry();
let background_rollback_fut = async move {
let this = registry.storage_manager();
// Rollback transactions on all records
let mut unord = FuturesUnordered::new();
for command_params in command_params_list {
let fut = this
.outbound_transact_command(command_params)
.measure_debug(
rpc_timeout,
veilid_log_dbg!(
this,
"StorageManager::partial_drop_and_background_rollback_locked outbound_transact_command"
),
);
unord.push(fut);
}
while let Some(res) = unord.next().await {
match res {
Ok(result) => {
let mut command_node_xids = result.get_command_node_xids();
for pnr in result.per_node_results {
if !command_node_xids.remove(&pnr.node_transaction_id) {
veilid_log!(this debug
"node transaction has multiple results: {} pnr={:?}",
result.params.opaque_record_key,
pnr
);
}
}
// Any commands that did not return a result the background rollback
if !command_node_xids.is_empty() {
veilid_log!(this debug "Partial rollback of {} failed for: {:?}", transaction_handle, command_node_xids);
}
}
Err(e) => {
veilid_log!(this debug "Error in partial_drop_and_background_rollback_locked: {}", e);
}
}
}
// If the transaction still exists, remove the completed background tokens
// It may not exist other errors happened after the the partial_drop_and_background_rollback_locked
{
let mut inner = this.inner.lock();
if let Ok(transaction_state) = inner
.outbound_transaction_manager
.get_transaction_state_mut(&transaction_handle)
{
transaction_state.remove_completed_background_tokens();
}
}
// Move the stop source in here and drop it when we're done
drop(stop_source);
};
// Attach this stop token to the transaction
self.background_operation_processor
.add_future(background_rollback_fut);
Ok(())
}
/// Guard function used to ensure that errors on whole-transaction operations cause rollback attempts
/// Also validates that the state is the same for all records in the transaction and attempts to
/// reconcile node states that are different.
/// For example, if a single node ends up in an 'End' state while other nodes end up in 'Rollback'
/// this routine will make a best-effort attempt to rollback the 'End' state node.
pub(super) async fn rollback_guard_locked<V, F: Future<Output = VeilidAPIResult<V>>>(
&self,
records_lock: &StorageManagerRecordsLockGuard,
transaction_handle: OutboundTransactionHandle,
future: F,
) -> VeilidAPIResult<V> {
let res = future.await;
let mut opt_cleanup = None;
let out = match res {
Ok(v) => {
// If results are okay, process the stage consensus operations
self.rollback_guard_locked_success(
records_lock,
transaction_handle,
v,
&mut opt_cleanup,
)
}
Err(e) => {
// If there was an error, we always want to roll back unless the transaction has completed
veilid_log!(self debug target: "network_result", "Rolling back due to error: {:?}: {}", transaction_handle, e);
// Roll back everything
if let Err(rbe) = self
.rollback_transaction_locked(records_lock, transaction_handle.clone())
.await
{
veilid_log!(self debug "Error in roll back transaction: {}", rbe);
}
// Drop the transaction and wait for background tasks to complete if any
self.drop_transaction_and_wait_locked(records_lock, transaction_handle)
.await;
return Err(e);
}
};
// If we have cleanup to do, process it
if let Some(cleanup) = opt_cleanup {
cleanup.await;
}
out
}
// Process stage consensus operations
// Returns either the value or an error if consensus operations could not be performed
// Also returns cleanup to process through the mutable reference parameter
fn rollback_guard_locked_success<V>(
&self,
records_lock: &StorageManagerRecordsLockGuard,
transaction_handle: OutboundTransactionHandle,
value: V,
opt_cleanup: &mut Option<TransactionCleanup>,
) -> VeilidAPIResult<V> {
let stage_consensus = {
let mut inner = self.inner.lock();
let res = inner
.outbound_transaction_manager
.get_transaction_state(&transaction_handle);
let state = match res {
Ok(state) => state,
Err(e) => {
veilid_log!(self debug "Error getting transaction state in guard: {}", e);
// Drop the transaction and return cleanup to process
if let Some(state) = inner
.outbound_transaction_manager
.drop_transaction(transaction_handle.clone())
{
*opt_cleanup = Some(state.into_transaction_cleanup(transaction_handle));
}
return Err(e);
}
};
let Some(stage_consensus) = state.stage_consensus() else {
// Should not be trying to roll back something that is still in the INIT state
apibail_internal!(
"no stage consensus yet for rollback guard: {}",
transaction_handle
);
};
stage_consensus
};
let rollback_ids = stage_consensus.per_record_node_xids_to_rollback;
let drop_ids = stage_consensus.per_record_node_xids_to_drop;
if rollback_ids.iter().any(|(_, xids)| !xids.is_empty())
|| drop_ids.iter().any(|(_, xids)| !xids.is_empty())
{
// Perform partial speculative rollback and drop from transaction
if let Err(e) = self.partial_drop_and_background_rollback_locked(
records_lock,
transaction_handle.clone(),
drop_ids,
rollback_ids,
) {
veilid_log!(self debug "Error in partial drop and roll back transaction: {}", e);
// Drop the transaction and return cleanup to process
if let Some(state) = self
.inner
.lock()
.outbound_transaction_manager
.drop_transaction(transaction_handle.clone())
{
*opt_cleanup = Some(state.into_transaction_cleanup(transaction_handle));
}
return Err(e);
}
}
Ok(value)
}
/// Convenience function to drop transaction and wait for background tasks to complete
async fn drop_transaction_and_wait_locked(
&self,
_records_lock: &StorageManagerRecordsLockGuard,
transaction_handle: OutboundTransactionHandle,
) {
let opt_cleanup = {
let mut inner = self.inner.lock();
inner
.outbound_transaction_manager
.drop_transaction(transaction_handle.clone())
.map(|state| state.into_transaction_cleanup(transaction_handle))
};
if let Some(cleanup) = opt_cleanup {
cleanup.await;
}
}
/// Schedule a transaction to be dropped
#[cfg_attr(
feature = "instrument",
instrument(level = "trace", target = "dht", skip(self))
)]
pub fn drop_transaction_sync(&self, transaction_handle: OutboundTransactionHandle) {
let registry = self.registry();
self.background_operation_processor.add_future(async move {
let this = registry.storage_manager();
let records_lock = this
.record_lock_table
.lock_records(
transaction_handle.keys().to_vec(),
StorageManagerRecordLockPurpose::TransactDrop,
)
.await;
// Drop the transaction and wait for background tasks to complete if any
this.drop_transaction_and_wait_locked(&records_lock, transaction_handle)
.await;
});
}
}