-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Secrets Manager Proxy #121
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
e284250
new secrets_manager files
yanw-bq f475fb2
working secrets manager client
yanw-bq de868c1
add cache for secrets manager proxy
yanw-bq 137a46b
first unit test for secrets manager proxy
yanw-bq 1df5b16
added more unit tests
yanw-bq aa36d58
fix unique lock missing template arguments
yanw-bq d79d04e
fix multiple calls to aws api in secrets manager unit tests
yanw-bq aeb1cdb
fix multiple aws init/shutdown api calls in integration tests
yanw-bq a488eb2
fix calling init/shutdownApi in windows
yanw-bq da389ed
verbose log for windows community tests
yanw-bq b34edcc
wrap initapi and shutdownapi inside secrets manager proxy contructor/…
yanw-bq aa9f344
move init/shutdown aws api to alloc/free env handle
yanw-bq 7a03c5a
move init/shutdown aws api to alloc/free env handle
yanw-bq 53d33c0
test
yanw-bq b92f928
test
yanw-bq 35412c0
fix static variables
yanw-bq 6170637
fix atomic int init
yanw-bq 1e884d0
fix unit tests
yanw-bq 9e779b5
renaming
yanw-bq ba6a975
cleanup
yanw-bq dfdf0d5
introduce aws sdk helpoer
yanw-bq 5fd5051
address comments
yanw-bq c63eebe
nit
yanw-bq fcaef7c
fix rebase
yanw-bq 4b45ead
fix rebase
yanw-bq 61c996d
set error
yanw-bq c7d1f2f
fix build
yanw-bq 83ab3d0
better error message
yanw-bq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License, version 2.0 | ||
// (GPLv2), as published by the Free Software Foundation, with the | ||
// following additional permissions: | ||
// | ||
// This program is distributed with certain software that is licensed | ||
// under separate terms, as designated in a particular file or component | ||
// or in the license documentation. Without limiting your rights under | ||
// the GPLv2, the authors of this program hereby grant you an additional | ||
// permission to link the program and your derivative works with the | ||
// separately licensed software that they have included with the program. | ||
// | ||
// Without limiting the foregoing grant of rights under the GPLv2 and | ||
// additional permission as to separately licensed software, this | ||
// program is also subject to the Universal FOSS Exception, version 1.0, | ||
// a copy of which can be found along with its FAQ at | ||
// http://oss.oracle.com/licenses/universal-foss-exception. | ||
// | ||
// This program is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
// See the GNU General Public License, version 2.0, for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see | ||
// http://www.gnu.org/licenses/gpl-2.0.html. | ||
|
||
#include <aws/secretsmanager/SecretsManagerServiceClientModel.h> | ||
#include <aws/secretsmanager/model/GetSecretValueRequest.h> | ||
|
||
#include "aws_sdk_helper.h" | ||
#include "secrets_manager_proxy.h" | ||
|
||
#include "mylog.h" | ||
|
||
#undef GetMessage // workaround for AWSError method GetMessage() | ||
|
||
using namespace Aws::SecretsManager; | ||
|
||
namespace { | ||
AWS_SDK_HELPER SDK_HELPER; | ||
const Aws::String USERNAME_KEY{ "username" }; | ||
const Aws::String PASSWORD_KEY{ "password" }; | ||
} | ||
|
||
std::map<std::pair<Aws::String, Aws::String>, Aws::Utils::Json::JsonValue> SECRETS_MANAGER_PROXY::secrets_cache; | ||
std::mutex SECRETS_MANAGER_PROXY::secrets_cache_mutex; | ||
|
||
SECRETS_MANAGER_PROXY::SECRETS_MANAGER_PROXY(DBC* dbc, DataSource* ds) : CONNECTION_PROXY(dbc, ds) { | ||
++SDK_HELPER; | ||
|
||
SecretsManagerClientConfiguration config; | ||
const auto region = ds_get_utf8attr(ds->auth_region, &ds->auth_region8); | ||
config.region = region ? region : Aws::Region::US_EAST_1; | ||
this->sm_client = std::make_shared<SecretsManagerClient>(config); | ||
|
||
const auto secret_ID = ds_get_utf8attr(ds->auth_secret_id, &ds->auth_secret_id8); | ||
this->secret_key = std::make_pair(secret_ID ? secret_ID : "", config.region); | ||
this->next_proxy = nullptr; | ||
} | ||
|
||
#ifdef UNIT_TEST_BUILD | ||
SECRETS_MANAGER_PROXY::SECRETS_MANAGER_PROXY(DBC* dbc, DataSource* ds, CONNECTION_PROXY* next_proxy, | ||
std::shared_ptr<SecretsManagerClient> sm_client) : | ||
CONNECTION_PROXY(dbc, ds), sm_client{std::move(sm_client)} { | ||
|
||
const Aws::String region = ds_get_utf8attr(ds->auth_region, &ds->auth_region8); | ||
const Aws::String secret_ID = ds_get_utf8attr(ds->auth_secret_id, &ds->auth_secret_id8); | ||
this->secret_key = std::make_pair(secret_ID, region); | ||
this->next_proxy = next_proxy; | ||
} | ||
#endif | ||
|
||
SECRETS_MANAGER_PROXY::~SECRETS_MANAGER_PROXY() { | ||
this->sm_client.reset(); | ||
--SDK_HELPER; | ||
} | ||
|
||
bool SECRETS_MANAGER_PROXY::connect(const char* host, const char* user, const char* passwd, const char* database, | ||
unsigned int port, const char* unix_socket, unsigned long flags) { | ||
|
||
if (this->secret_key.first.empty()) { | ||
const auto error = "Missing required config parameter for Secrets Manager: Secret ID"; | ||
MYLOG_DBC_TRACE(dbc, error); | ||
this->set_custom_error_message(error); | ||
return false; | ||
} | ||
|
||
bool fetched = update_secret(false); | ||
std::string username = get_from_secret_json_value(USERNAME_KEY); | ||
std::string password = get_from_secret_json_value(PASSWORD_KEY); | ||
fetched = false; | ||
bool ret = next_proxy->connect(host, username.c_str(), password.c_str(), database, port, unix_socket, flags); | ||
|
||
if (!ret && next_proxy->error_code() == ER_ACCESS_DENIED_ERROR && !fetched) { | ||
// Login unsuccessful with cached credentials | ||
// Try to re-fetch credentials and try again | ||
fetched = update_secret(true); | ||
if (fetched) { | ||
username = get_from_secret_json_value(USERNAME_KEY); | ||
password = get_from_secret_json_value(PASSWORD_KEY); | ||
ret = next_proxy->connect(host, username.c_str(), password.c_str(), database, port, unix_socket, flags); | ||
} | ||
} | ||
|
||
return ret; | ||
} | ||
|
||
bool SECRETS_MANAGER_PROXY::update_secret(bool force_re_fetch) { | ||
bool fetched = false; | ||
{ | ||
std::unique_lock<std::mutex> lock(secrets_cache_mutex); | ||
|
||
const auto search = secrets_cache.find(this->secret_key); | ||
if (search != secrets_cache.end() && !force_re_fetch) { | ||
this->secret_json_value = search->second; | ||
} | ||
else { | ||
this->secret_json_value = fetch_latest_credentials(); | ||
fetched = true; | ||
secrets_cache[this->secret_key] = this->secret_json_value; | ||
} | ||
} | ||
|
||
return fetched; | ||
} | ||
|
||
Aws::Utils::Json::JsonValue SECRETS_MANAGER_PROXY::fetch_latest_credentials() const { | ||
Aws::String secret_string; | ||
|
||
Model::GetSecretValueRequest request; | ||
request.SetSecretId(this->secret_key.first); | ||
auto get_secret_value_outcome = this->sm_client->GetSecretValue(request); | ||
|
||
if (get_secret_value_outcome.IsSuccess()) { | ||
secret_string = get_secret_value_outcome.GetResult().GetSecretString(); | ||
} | ||
else { | ||
MYLOG_DBC_TRACE(dbc, get_secret_value_outcome.GetError().GetMessage().c_str()); | ||
} | ||
return parse_json_value(secret_string); | ||
} | ||
|
||
Aws::Utils::Json::JsonValue SECRETS_MANAGER_PROXY::parse_json_value(Aws::String json_string) const { | ||
auto res_json = Aws::Utils::Json::JsonValue(json_string); | ||
if (!res_json.WasParseSuccessful()) { | ||
MYLOG_DBC_TRACE(dbc, res_json.GetErrorMessage().c_str()); | ||
throw std::runtime_error("Error parsing secrets manager response body. " + res_json.GetErrorMessage()); | ||
} | ||
return res_json; | ||
} | ||
|
||
std::string SECRETS_MANAGER_PROXY::get_from_secret_json_value(std::string key) const { | ||
std::string value; | ||
const auto view = this->secret_json_value.View(); | ||
|
||
if (view.ValueExists(key)) { | ||
value = view.GetString(key); | ||
} | ||
else { | ||
const auto error = "Unable to extract the " + key + " from secrets manager response."; | ||
MYLOG_DBC_TRACE(dbc, error.c_str()); | ||
throw std::runtime_error(error); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Likewise. Where does this exception get caught? |
||
} | ||
return value; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License, version 2.0 | ||
// (GPLv2), as published by the Free Software Foundation, with the | ||
// following additional permissions: | ||
// | ||
// This program is distributed with certain software that is licensed | ||
// under separate terms, as designated in a particular file or component | ||
// or in the license documentation. Without limiting your rights under | ||
// the GPLv2, the authors of this program hereby grant you an additional | ||
// permission to link the program and your derivative works with the | ||
// separately licensed software that they have included with the program. | ||
// | ||
// Without limiting the foregoing grant of rights under the GPLv2 and | ||
// additional permission as to separately licensed software, this | ||
// program is also subject to the Universal FOSS Exception, version 1.0, | ||
// a copy of which can be found along with its FAQ at | ||
// http://oss.oracle.com/licenses/universal-foss-exception. | ||
// | ||
// This program is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
// See the GNU General Public License, version 2.0, for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see | ||
// http://www.gnu.org/licenses/gpl-2.0.html. | ||
|
||
#ifndef __SECRETS_MANAGER_PROXY__ | ||
#define __SECRETS_MANAGER_PROXY__ | ||
|
||
#include <aws/core/Aws.h> | ||
#include <aws/core/utils/json/JsonSerializer.h> | ||
#include <aws/secretsmanager/SecretsManagerClient.h> | ||
#include <map> | ||
|
||
#include "connection_proxy.h" | ||
#include "driver.h" | ||
|
||
class SECRETS_MANAGER_PROXY : public CONNECTION_PROXY { | ||
public: | ||
SECRETS_MANAGER_PROXY(DBC* dbc, DataSource* ds); | ||
#ifdef UNIT_TEST_BUILD | ||
SECRETS_MANAGER_PROXY(DBC* dbc, DataSource* ds, CONNECTION_PROXY* next_proxy, std::shared_ptr<Aws::SecretsManager::SecretsManagerClient> sm_client); | ||
#endif | ||
~SECRETS_MANAGER_PROXY() override; | ||
|
||
bool connect(const char* host, const char* user, const char* passwd, const char* database, | ||
unsigned int port, const char* unix_socket, unsigned long flags) override; | ||
|
||
private: | ||
std::shared_ptr<Aws::SecretsManager::SecretsManagerClient> sm_client; | ||
std::pair<Aws::String, Aws::String> secret_key; | ||
Aws::Utils::Json::JsonValue secret_json_value; | ||
|
||
bool update_secret(bool force_re_fetch); | ||
Aws::Utils::Json::JsonValue fetch_latest_credentials() const; | ||
Aws::Utils::Json::JsonValue parse_json_value(Aws::String json_string) const; | ||
std::string get_from_secret_json_value(std::string key) const; | ||
|
||
static std::map<std::pair<Aws::String, Aws::String>, Aws::Utils::Json::JsonValue> secrets_cache; | ||
static std::mutex secrets_cache_mutex; | ||
|
||
#ifdef UNIT_TEST_BUILD | ||
// Allows for testing private/protected methods | ||
friend class TEST_UTILS; | ||
#endif | ||
}; | ||
|
||
#endif /* __SECRETS_MANAGER_PROXY__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where does this exception get caught and handled?