@@ -305,6 +305,22 @@ void MetaServiceImpl::get_obj_store_info(google::protobuf::RpcController* contro
305
305
}
306
306
}
307
307
308
+ static bool is_vault_id_not_used (const InstanceInfoPB& instance, const std::string& vault_id) {
309
+ if (std::find_if (instance.resource_ids ().begin (), instance.resource_ids ().end (),
310
+ [&vault_id](const auto & id) { return id == vault_id; }) !=
311
+ instance.resource_ids ().end ()) {
312
+ return false ;
313
+ }
314
+
315
+ if (std::find_if (instance.obj_info ().begin (), instance.obj_info ().end (),
316
+ [&vault_id](const auto & obj) { return obj.id () == vault_id; }) !=
317
+ instance.obj_info ().end ()) {
318
+ return false ;
319
+ }
320
+
321
+ return true ;
322
+ }
323
+
308
324
// The next available vault id would be max(max(obj info id), max(vault id)) + 1.
309
325
static std::string next_available_vault_id (const InstanceInfoPB& instance) {
310
326
int vault_id = 0 ;
@@ -328,6 +344,12 @@ static std::string next_available_vault_id(const InstanceInfoPB& instance) {
328
344
instance.resource_ids ().begin (), instance.resource_ids ().end (),
329
345
std::accumulate (instance.obj_info ().begin (), instance.obj_info ().end (), vault_id, max),
330
346
max);
347
+
348
+ // just add a defensive logic, we should use int64 in the future.
349
+ while (!is_vault_id_not_used (instance, std::to_string (prev + 1 ))) {
350
+ prev += 1 ;
351
+ }
352
+
331
353
return std::to_string (prev + 1 );
332
354
}
333
355
@@ -454,14 +476,41 @@ static void create_object_info_with_encrypt(const InstanceInfoPB& instance, Obje
454
476
obj->set_sse_enabled (sse_enabled);
455
477
}
456
478
457
- static int add_vault_into_instance (InstanceInfoPB& instance, Transaction* txn,
458
- StorageVaultPB& vault_param, MetaServiceCode& code,
459
- std::string& msg) {
479
+ static int check_duplicated_vault_name (const InstanceInfoPB& instance, const std::string& candidate_name,
480
+ MetaServiceCode& code, std::string& msg) {
460
481
if (std::find_if (instance.storage_vault_names ().begin (), instance.storage_vault_names ().end (),
461
- [&vault_param ](const auto & name) { return name == vault_param. name () ; }) !=
482
+ [&candidate_name ](const auto & name) { return name == candidate_name ; }) !=
462
483
instance.storage_vault_names ().end ()) {
463
484
code = MetaServiceCode::ALREADY_EXISTED;
464
- msg = fmt::format (" vault_name={} already created" , vault_param.name ());
485
+ msg = fmt::format (" candidate_name={} already created" , candidate_name);
486
+ return -1 ;
487
+ }
488
+
489
+ return 0 ;
490
+ }
491
+
492
+ static int check_new_vault_name (const InstanceInfoPB& instance, const std::string& candidate_name,
493
+ MetaServiceCode& code, std::string& msg) {
494
+ if (!is_valid_storage_vault_name (candidate_name)) {
495
+ code = MetaServiceCode::INVALID_ARGUMENT;
496
+ std::stringstream ss;
497
+ ss << " invalid storage vault name =" << candidate_name << " the name must satisfy "
498
+ << pattern_str;
499
+ msg = ss.str ();
500
+ return -1 ;
501
+ }
502
+
503
+ if (check_duplicated_vault_name (instance, candidate_name, code, msg) != 0 ) {
504
+ return -1 ;
505
+ }
506
+
507
+ return 0 ;
508
+ }
509
+
510
+ static int add_vault_into_instance (InstanceInfoPB& instance, Transaction* txn,
511
+ StorageVaultPB& vault_param, MetaServiceCode& code,
512
+ std::string& msg) {
513
+ if (check_new_vault_name (instance, vault_param.name (), code, msg) != 0 ) {
465
514
return -1 ;
466
515
}
467
516
@@ -583,12 +632,7 @@ static int alter_hdfs_storage_vault(InstanceInfoPB& instance, std::unique_ptr<Tr
583
632
584
633
auto origin_vault_info = new_vault.DebugString ();
585
634
if (vault.has_alter_name ()) {
586
- if (!is_valid_storage_vault_name (vault.alter_name ())) {
587
- code = MetaServiceCode::INVALID_ARGUMENT;
588
- std::stringstream ss;
589
- ss << " invalid storage vault name =" << vault.alter_name () << " the name must satisfy "
590
- << pattern_str;
591
- msg = ss.str ();
635
+ if (check_new_vault_name (instance, vault.alter_name (), code, msg) != 0 ) {
592
636
return -1 ;
593
637
}
594
638
new_vault.set_name (vault.alter_name ());
@@ -623,12 +667,6 @@ static int alter_hdfs_storage_vault(InstanceInfoPB& instance, std::unique_ptr<Tr
623
667
txn->put (vault_key, val);
624
668
LOG (INFO) << " put vault_id=" << vault_id << " , vault_key=" << hex (vault_key)
625
669
<< " , origin vault=" << origin_vault_info << " , new_vault=" << new_vault_info;
626
- err = txn->commit ();
627
- if (err != TxnErrorCode::TXN_OK) {
628
- code = cast_as<ErrCategory::COMMIT>(err);
629
- msg = fmt::format (" failed to commit kv txn, err={}" , err);
630
- LOG (WARNING) << msg;
631
- }
632
670
633
671
return 0 ;
634
672
}
@@ -700,14 +738,10 @@ static int alter_s3_storage_vault(InstanceInfoPB& instance, std::unique_ptr<Tran
700
738
}
701
739
702
740
if (vault.has_alter_name ()) {
703
- if (!is_valid_storage_vault_name (vault.alter_name ())) {
704
- code = MetaServiceCode::INVALID_ARGUMENT;
705
- std::stringstream ss;
706
- ss << " invalid storage vault name =" << vault.alter_name () << " the name must satisfy "
707
- << pattern_str;
708
- msg = ss.str ();
741
+ if (check_new_vault_name (instance, vault.alter_name (), code, msg) != 0 ) {
709
742
return -1 ;
710
743
}
744
+
711
745
new_vault.set_name (vault.alter_name ());
712
746
*name_itr = vault.alter_name ();
713
747
}
@@ -747,12 +781,6 @@ static int alter_s3_storage_vault(InstanceInfoPB& instance, std::unique_ptr<Tran
747
781
txn->put (vault_key, val);
748
782
LOG (INFO) << " put vault_id=" << vault_id << " , vault_key=" << hex (vault_key)
749
783
<< " , origin vault=" << origin_vault_info << " , new vault=" << new_vault_info;
750
- err = txn->commit ();
751
- if (err != TxnErrorCode::TXN_OK) {
752
- code = cast_as<ErrCategory::COMMIT>(err);
753
- msg = fmt::format (" failed to commit kv txn, err={}" , err);
754
- LOG (WARNING) << msg;
755
- }
756
784
757
785
return 0 ;
758
786
}
@@ -998,16 +1026,10 @@ void MetaServiceImpl::alter_storage_vault(google::protobuf::RpcController* contr
998
1026
ObjectStorageDesc {ak, sk, bucket, prefix, endpoint, external_endpoint, region};
999
1027
ObjectStoreInfoPB last_item = object_info_pb_factory (tmp_tuple, obj, instance,
1000
1028
encryption_info, cipher_ak_sk_pair);
1001
- if (instance.storage_vault_names ().end () !=
1002
- std::find_if (instance.storage_vault_names ().begin (),
1003
- instance.storage_vault_names ().end (),
1004
- [&](const std::string& candidate_name) {
1005
- return candidate_name == request->vault ().name ();
1006
- })) {
1007
- code = MetaServiceCode::ALREADY_EXISTED;
1008
- msg = fmt::format (" vault_name={} already created" , request->vault ().name ());
1029
+ if (check_new_vault_name (instance, request->vault ().name (), code, msg) != 0 ) {
1009
1030
return ;
1010
1031
}
1032
+
1011
1033
StorageVaultPB vault;
1012
1034
vault.set_id (last_item.id ());
1013
1035
vault.set_name (request->vault ().name ());
@@ -1097,11 +1119,11 @@ void MetaServiceImpl::alter_storage_vault(google::protobuf::RpcController* contr
1097
1119
}
1098
1120
case AlterObjStoreInfoRequest::ALTER_S3_VAULT: {
1099
1121
alter_s3_storage_vault (instance, std::move (txn), request->vault (), code, msg);
1100
- return ;
1122
+ break ;
1101
1123
}
1102
1124
case AlterObjStoreInfoRequest::ALTER_HDFS_VAULT: {
1103
1125
alter_hdfs_storage_vault (instance, std::move (txn), request->vault (), code, msg);
1104
- return ;
1126
+ break ;
1105
1127
}
1106
1128
case AlterObjStoreInfoRequest::DROP_S3_VAULT:
1107
1129
[[fallthrough]];
0 commit comments