Skip to content

Commit 7849280

Browse files
author
Yongqiang YANG
committed
[fix](vault) avoid duplicated name and id
1 parent 074cff4 commit 7849280

File tree

1 file changed

+61
-39
lines changed

1 file changed

+61
-39
lines changed

cloud/src/meta-service/meta_service_resource.cpp

+61-39
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,22 @@ void MetaServiceImpl::get_obj_store_info(google::protobuf::RpcController* contro
305305
}
306306
}
307307

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+
308324
// The next available vault id would be max(max(obj info id), max(vault id)) + 1.
309325
static std::string next_available_vault_id(const InstanceInfoPB& instance) {
310326
int vault_id = 0;
@@ -328,6 +344,12 @@ static std::string next_available_vault_id(const InstanceInfoPB& instance) {
328344
instance.resource_ids().begin(), instance.resource_ids().end(),
329345
std::accumulate(instance.obj_info().begin(), instance.obj_info().end(), vault_id, max),
330346
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+
331353
return std::to_string(prev + 1);
332354
}
333355

@@ -454,14 +476,41 @@ static void create_object_info_with_encrypt(const InstanceInfoPB& instance, Obje
454476
obj->set_sse_enabled(sse_enabled);
455477
}
456478

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) {
460481
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; }) !=
462483
instance.storage_vault_names().end()) {
463484
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) {
465514
return -1;
466515
}
467516

@@ -583,12 +632,7 @@ static int alter_hdfs_storage_vault(InstanceInfoPB& instance, std::unique_ptr<Tr
583632

584633
auto origin_vault_info = new_vault.DebugString();
585634
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) {
592636
return -1;
593637
}
594638
new_vault.set_name(vault.alter_name());
@@ -623,12 +667,6 @@ static int alter_hdfs_storage_vault(InstanceInfoPB& instance, std::unique_ptr<Tr
623667
txn->put(vault_key, val);
624668
LOG(INFO) << "put vault_id=" << vault_id << ", vault_key=" << hex(vault_key)
625669
<< ", 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-
}
632670

633671
return 0;
634672
}
@@ -700,14 +738,10 @@ static int alter_s3_storage_vault(InstanceInfoPB& instance, std::unique_ptr<Tran
700738
}
701739

702740
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) {
709742
return -1;
710743
}
744+
711745
new_vault.set_name(vault.alter_name());
712746
*name_itr = vault.alter_name();
713747
}
@@ -747,12 +781,6 @@ static int alter_s3_storage_vault(InstanceInfoPB& instance, std::unique_ptr<Tran
747781
txn->put(vault_key, val);
748782
LOG(INFO) << "put vault_id=" << vault_id << ", vault_key=" << hex(vault_key)
749783
<< ", 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-
}
756784

757785
return 0;
758786
}
@@ -998,16 +1026,10 @@ void MetaServiceImpl::alter_storage_vault(google::protobuf::RpcController* contr
9981026
ObjectStorageDesc {ak, sk, bucket, prefix, endpoint, external_endpoint, region};
9991027
ObjectStoreInfoPB last_item = object_info_pb_factory(tmp_tuple, obj, instance,
10001028
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) {
10091030
return;
10101031
}
1032+
10111033
StorageVaultPB vault;
10121034
vault.set_id(last_item.id());
10131035
vault.set_name(request->vault().name());
@@ -1097,11 +1119,11 @@ void MetaServiceImpl::alter_storage_vault(google::protobuf::RpcController* contr
10971119
}
10981120
case AlterObjStoreInfoRequest::ALTER_S3_VAULT: {
10991121
alter_s3_storage_vault(instance, std::move(txn), request->vault(), code, msg);
1100-
return;
1122+
break;
11011123
}
11021124
case AlterObjStoreInfoRequest::ALTER_HDFS_VAULT: {
11031125
alter_hdfs_storage_vault(instance, std::move(txn), request->vault(), code, msg);
1104-
return;
1126+
break;
11051127
}
11061128
case AlterObjStoreInfoRequest::DROP_S3_VAULT:
11071129
[[fallthrough]];

0 commit comments

Comments
 (0)