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
|
// OpenVPN -- An application to securely tunnel IP networks
// over a single port, with support for SSL/TLS-based
// session authentication and key exchange,
// packet encryption, packet authentication, and
// packet compression.
//
// Copyright (C) 2012- OpenVPN Inc.
//
// SPDX-License-Identifier: MPL-2.0 OR AGPL-3.0-only WITH openvpn3-openssl-exception
//
// Get AWS info such as instanceId, region, and privateIp.
// Also optionally call AWSPC API with product code to get
// number of licensed concurrent connections.
#pragma once
#include <string>
#include <utility>
#include <openvpn/aws/awscreds.hpp>
#include <openvpn/ws/httpcliset.hpp>
#include <openvpn/common/jsonhelper.hpp>
#include <openvpn/common/hexstr.hpp>
#include <openvpn/common/enumdir.hpp>
#include <openvpn/common/file.hpp>
#include <openvpn/random/devurand.hpp>
#include <openvpn/frame/frame_init.hpp>
#include <openvpn/openssl/sign/verify.hpp>
#include <openvpn/openssl/sign/pkcs7verify.hpp>
#include <openvpn/ssl/sslchoose.hpp>
namespace openvpn::AWS {
class PCQuery : public RC<thread_unsafe_refcount>
{
public:
typedef RCPtr<PCQuery> Ptr;
OPENVPN_EXCEPTION(awspc_query_error);
struct Info
{
std::string instanceId;
std::string region;
std::string az;
std::string privateIp;
Creds creds;
int concurrentConnections = -1;
std::string error;
bool is_error() const
{
return !error.empty();
}
bool instance_data_defined() const
{
return !instanceId.empty() && !region.empty() && !privateIp.empty();
}
// example: [instanceId=i-ae91d23e region=us-east-1 privateIp=10.0.0.218 concurrentConnections=10]
std::string to_string() const
{
std::string ret = "[instanceId=" + instanceId + " region=" + region;
if (!privateIp.empty())
ret += " privateIp=" + privateIp;
if (concurrentConnections >= 0)
ret += " concurrentConnections=" + std::to_string(concurrentConnections);
if (!error.empty())
ret += " error='" + error + '\'';
ret += ']';
return ret;
}
};
PCQuery(WS::ClientSet::Ptr cs_arg,
const bool lookup_product_code_arg,
const int debug_level_arg)
: cs(std::move(cs_arg)),
rng(new DevURand()),
frame(frame_init_simple(1024)),
lookup_product_code(lookup_product_code_arg),
debug_level(debug_level_arg)
{
}
PCQuery(WS::ClientSet::Ptr cs_arg,
const std::string &role_for_credentials_arg,
const std::string &certs_dir_arg)
: cs(std::move(cs_arg)),
rng(new DevURand()),
frame(frame_init_simple(1024)),
lookup_product_code(false),
debug_level(0),
role_for_credentials(role_for_credentials_arg),
certs_dir(certs_dir_arg)
{
}
WS::ClientSet::TransactionSet::Ptr prepare_transaction_set()
{
// make HTTP context
WS::Client::Config::Ptr http_config(new WS::Client::Config());
http_config->frame = frame;
http_config->connect_timeout = 15;
http_config->general_timeout = 30;
// make transation set
WS::ClientSet::TransactionSet::Ptr ts = new WS::ClientSet::TransactionSet;
ts->host.host = "169.254.169.254";
ts->host.port = "80";
ts->http_config = http_config;
ts->max_retries = 3;
ts->debug_level = debug_level;
return ts;
}
void start(std::function<void(Info info)> completion_arg)
{
// make sure we are not in a pending state
if (pending)
throw awspc_query_error("request pending");
pending = true;
// save completion method
completion = std::move(completion_arg);
// init return object
info = Info();
try
{
auto ts = prepare_transaction_set();
{
std::unique_ptr<WS::ClientSet::Transaction> t(new WS::ClientSet::Transaction);
t->req.method = "PUT";
t->req.uri = "/latest/api/token";
t->ci.extra_headers.emplace_back("X-aws-ec2-metadata-token-ttl-seconds: 60");
ts->transactions.push_back(std::move(t));
}
// completion handler
ts->completion = [self = Ptr(this)](WS::ClientSet::TransactionSet &ts)
{
self->token_query_complete(ts);
};
// do the request
cs->new_request(ts);
}
catch (const std::exception &e)
{
done(e.what());
}
}
void stop()
{
if (cs)
cs->stop();
}
private:
void done(std::string error)
{
pending = false;
info.error = std::move(error);
if (completion)
completion(std::move(info));
}
void local_query_complete(WS::ClientSet::TransactionSet <s)
{
try
{
// get transactions and check that they succeeded
WS::ClientSet::Transaction &ident_trans = *lts.transactions.at(0);
if (!ident_trans.request_status_success())
{
done("could not fetch AWS identity document: " + ident_trans.format_status(lts));
return;
}
WS::ClientSet::Transaction &sig_trans = *lts.transactions.at(1);
if (!sig_trans.request_status_success())
{
done("could not fetch AWS identity document signature: " + sig_trans.format_status(lts));
return;
}
// get identity document and signature
const std::string ident = ident_trans.content_in.to_string();
const std::string sig = "-----BEGIN PKCS7-----\n"
+ sig_trans.content_in.to_string()
+ "\n-----END PKCS7-----\n";
if (debug_level >= 3)
{
OPENVPN_LOG("IDENT\n"
<< ident);
OPENVPN_LOG("SIG\n"
<< sig);
}
// verify signature on identity document
{
std::list<OpenSSLPKI::X509> certs;
if (certs_dir.empty())
certs.emplace_back(awscert(), "AWS Cert");
else
{
enum_dir(certs_dir, [&certs, certs_dir = certs_dir](const std::string &file)
{ certs.emplace_back(read_text(certs_dir + "/" + file), "AWS Cert"); });
}
OpenSSLSign::verify_pkcs7(certs, sig, ident);
}
// parse the identity document (JSON)
{
const std::string title = "identity-document";
const Json::Value root = json::parse(ident, title);
info.region = json::get_string(root, "region", title);
info.az = json::get_string(root, "availabilityZone", title);
info.instanceId = json::get_string(root, "instanceId", title);
info.privateIp = json::get_string(root, "privateIp", title);
}
if (lookup_product_code)
{
WS::ClientSet::Transaction &pc_trans = *lts.transactions.at(2);
if (pc_trans.request_status_success())
{
const std::string pc = pc_trans.content_in.to_string();
queue_pc_validation(pc);
}
else
done("could not fetch AWS product code: " + pc_trans.format_status(lts));
}
if (!role_for_credentials.empty())
{
WS::ClientSet::Transaction &cred_trans = *lts.transactions.at(lookup_product_code ? 3 : 2);
if (cred_trans.request_status_success())
{
const std::string creds = cred_trans.content_in.to_string();
const Json::Value root = json::parse(creds);
info.creds.access_key = json::get_string(root, "AccessKeyId");
info.creds.secret_key = json::get_string(root, "SecretAccessKey");
info.creds.token = json::get_string(root, "Token");
done("");
}
else
done("could not fetch role credentials: " + cred_trans.format_status(lts));
}
else
done("");
}
catch (const std::exception &e)
{
done(e.what());
}
}
void token_query_complete(WS::ClientSet::TransactionSet <s)
{
try
{
// get transaction and check that they succeeded
WS::ClientSet::Transaction &token_trans = *lts.transactions.at(0);
if (!token_trans.request_status_success())
{
done("could not fetch AWS session token: " + token_trans.format_status(lts));
return;
}
const std::string token = token_trans.content_in.to_string();
auto ts = prepare_transaction_set();
// transaction #1
{
std::unique_ptr<WS::ClientSet::Transaction> t(new WS::ClientSet::Transaction);
t->req.method = "GET";
t->req.uri = "/latest/dynamic/instance-identity/document";
t->ci.extra_headers.emplace_back("X-aws-ec2-metadata-token: " + token);
ts->transactions.push_back(std::move(t));
}
// transaction #2
{
std::unique_ptr<WS::ClientSet::Transaction> t(new WS::ClientSet::Transaction);
t->req.method = "GET";
t->req.uri = "/latest/dynamic/instance-identity/pkcs7";
t->ci.extra_headers.emplace_back("X-aws-ec2-metadata-token: " + token);
ts->transactions.push_back(std::move(t));
}
// transaction #3
if (lookup_product_code)
{
std::unique_ptr<WS::ClientSet::Transaction> t(new WS::ClientSet::Transaction);
t->req.method = "GET";
t->req.uri = "/latest/meta-data/product-codes";
t->ci.extra_headers.emplace_back("X-aws-ec2-metadata-token: " + token);
ts->transactions.push_back(std::move(t));
}
// transaction #4
if (!role_for_credentials.empty())
{
std::unique_ptr<WS::ClientSet::Transaction> t(new WS::ClientSet::Transaction);
t->req.method = "GET";
t->req.uri = "/latest/meta-data/iam/security-credentials/" + role_for_credentials;
t->ci.extra_headers.emplace_back("X-aws-ec2-metadata-token: " + token);
ts->transactions.push_back(std::move(t));
}
// completion handler
ts->completion = [self = Ptr(this)](WS::ClientSet::TransactionSet &ts)
{
self->local_query_complete(ts);
};
// do the request
cs->new_request(ts);
}
catch (const std::exception &e)
{
done(e.what());
}
}
void queue_pc_validation(const std::string &pc)
{
if (debug_level >= 3)
OPENVPN_LOG("PRODUCT CODE: " << pc);
// SSL flags
unsigned int ssl_flags = SSLConst::ENABLE_CLIENT_SNI;
if (debug_level >= 1)
ssl_flags |= SSLConst::LOG_VERIFY_STATUS;
// make SSL context using awspc_web_cert() as our CA bundle
SSLLib::SSLAPI::Config::Ptr ssl(new SSLLib::SSLAPI::Config);
ssl->set_mode(Mode(Mode::CLIENT));
ssl->load_ca(awspc_web_cert(), false);
ssl->set_local_cert_enabled(false);
ssl->set_tls_version_min(TLSVersion::Type::V1_2);
ssl->set_remote_cert_tls(KUParse::TLS_WEB_SERVER);
ssl->set_flags(ssl_flags);
ssl->set_frame(frame);
ssl->set_rng(rng);
// make HTTP context
WS::Client::Config::Ptr hc(new WS::Client::Config());
hc->frame = frame;
hc->ssl_factory = ssl->new_factory();
hc->user_agent = "PG";
hc->connect_timeout = 30;
hc->general_timeout = 60;
// make host list
WS::ClientSet::HostRetry::Ptr hr(new WS::ClientSet::HostRetry(
"awspc1.openvpn.net",
"awspc2.openvpn.net"));
// make transaction set
WS::ClientSet::TransactionSet::Ptr ts = new WS::ClientSet::TransactionSet;
ts->host.host = hr->next_host();
ts->host.port = "443";
ts->http_config = hc;
ts->error_recovery = hr;
ts->max_retries = 5;
ts->retry_duration = Time::Duration::seconds(5);
ts->debug_level = debug_level;
// transaction #1
{
std::unique_ptr<WS::ClientSet::Transaction> t(new WS::ClientSet::Transaction);
t->req.uri = "/prod/AwsPC";
t->req.method = "POST";
t->ci.type = "application/json";
t->randomize_resolver_results = true;
Json::Value root(Json::objectValue);
root["region"] = Json::Value(info.region);
root["identityIp"] = Json::Value(info.privateIp);
root["host"] = Json::Value(openvpn_io::ip::host_name());
root["instanceId"] = Json::Value(info.instanceId);
root["productCode"] = Json::Value(pc);
root["nonce"] = Json::Value(nonce());
const std::string jreq = root.toStyledString();
t->content_out.push_back(buf_from_string(jreq));
awspc_req = std::move(root);
ts->transactions.push_back(std::move(t));
if (debug_level >= 3)
OPENVPN_LOG("AWSPC REQ\n"
<< jreq);
}
// completion handler
ts->completion = [self = Ptr(this)](WS::ClientSet::TransactionSet &ts)
{
self->awspc_query_complete(ts);
};
// do the request
cs->new_request(ts);
}
void awspc_query_complete(WS::ClientSet::TransactionSet &ats)
{
try
{
const std::string title = "awspc-reply";
// get transactions and check that they succeeded
WS::ClientSet::Transaction &trans = *ats.transactions.at(0);
if (!trans.request_status_success())
{
done("awspc server error: " + trans.format_status(ats));
return;
}
// check content-type
if (trans.reply.headers.get_value_trim("content-type") != "application/json")
{
done("expected application/json reply from awspc server");
return;
}
// parse JSON reply
const std::string jtxt = trans.content_in.to_string();
const Json::Value root = json::parse(jtxt, title);
if (debug_level >= 3)
OPENVPN_LOG("AWSPC REPLY\n"
<< root.toStyledString());
// check for errors
if (json::exists(root, "errorMessage"))
{
const std::string em = json::get_string(root, "errorMessage", title);
const std::string et = json::get_string_optional(root, "errorType", "unspecified-error", title);
done(et + " : " + em);
return;
}
// verify consistency of region, instanceId, productCode, and nonce
if (!awspc_req_verify_consistency(root))
{
done("awspc request/reply consistency");
return;
}
// verify reply signature
{
const std::string line_to_sign = to_string_sig(root);
if (debug_level >= 3)
OPENVPN_LOG("LINE TO SIGN: " << line_to_sign);
const std::string sig = json::get_string(root, "signature", title);
const OpenSSLPKI::X509 cert(awspc_signing_cert(), "awspc-cert");
OpenSSLSign::verify(cert, sig, line_to_sign, "sha256");
}
// get concurrent connections
info.concurrentConnections = json::get_int(root, "concurrentConnections", title);
done("");
}
catch (const std::exception &e)
{
done(e.what());
}
}
bool awspc_req_verify_consistency(const Json::Value &reply,
const std::string &key) const
{
return json::get_string(reply, key, "awspc-verify-reply") == json::get_string(awspc_req, key, "awspc-verify-request");
}
bool awspc_req_verify_consistency(const Json::Value &reply) const
{
return awspc_req_verify_consistency(reply, "region")
&& awspc_req_verify_consistency(reply, "instanceId")
&& awspc_req_verify_consistency(reply, "productCode")
&& awspc_req_verify_consistency(reply, "nonce");
}
static std::string to_string_sig(const Json::Value &reply)
{
const std::string title = "to-string-sig";
return json::get_string(reply, "region", title)
+ '/' + json::get_string(reply, "instanceId", title)
+ '/' + json::get_string(reply, "productCode", title)
+ '/' + json::get_string(reply, "nonce", title)
+ '/' + std::to_string(json::get_int(reply, "concurrentConnections", title));
}
std::string nonce() const
{
unsigned char data[16];
rng->rand_fill(data);
return render_hex(data, sizeof(data));
}
// The AWS cert for PKCS#7 validation of AWS identity document
static std::string awscert()
{
return std::string(
"-----BEGIN CERTIFICATE-----\n"
"MIIC7TCCAq0CCQCWukjZ5V4aZzAJBgcqhkjOOAQDMFwxCzAJBgNVBAYTAlVTMRkw\n"
"FwYDVQQIExBXYXNoaW5ndG9uIFN0YXRlMRAwDgYDVQQHEwdTZWF0dGxlMSAwHgYD\n"
"VQQKExdBbWF6b24gV2ViIFNlcnZpY2VzIExMQzAeFw0xMjAxMDUxMjU2MTJaFw0z\n"
"ODAxMDUxMjU2MTJaMFwxCzAJBgNVBAYTAlVTMRkwFwYDVQQIExBXYXNoaW5ndG9u\n"
"IFN0YXRlMRAwDgYDVQQHEwdTZWF0dGxlMSAwHgYDVQQKExdBbWF6b24gV2ViIFNl\n"
"cnZpY2VzIExMQzCCAbcwggEsBgcqhkjOOAQBMIIBHwKBgQCjkvcS2bb1VQ4yt/5e\n"
"ih5OO6kK/n1Lzllr7D8ZwtQP8fOEpp5E2ng+D6Ud1Z1gYipr58Kj3nssSNpI6bX3\n"
"VyIQzK7wLclnd/YozqNNmgIyZecN7EglK9ITHJLP+x8FtUpt3QbyYXJdmVMegN6P\n"
"hviYt5JH/nYl4hh3Pa1HJdskgQIVALVJ3ER11+Ko4tP6nwvHwh6+ERYRAoGBAI1j\n"
"k+tkqMVHuAFcvAGKocTgsjJem6/5qomzJuKDmbJNu9Qxw3rAotXau8Qe+MBcJl/U\n"
"hhy1KHVpCGl9fueQ2s6IL0CaO/buycU1CiYQk40KNHCcHfNiZbdlx1E9rpUp7bnF\n"
"lRa2v1ntMX3caRVDdbtPEWmdxSCYsYFDk4mZrOLBA4GEAAKBgEbmeve5f8LIE/Gf\n"
"MNmP9CM5eovQOGx5ho8WqD+aTebs+k2tn92BBPqeZqpWRa5P/+jrdKml1qx4llHW\n"
"MXrs3IgIb6+hUIB+S8dz8/mmO0bpr76RoZVCXYab2CZedFut7qc3WUH9+EUAH5mw\n"
"vSeDCOUMYQR7R9LINYwouHIziqQYMAkGByqGSM44BAMDLwAwLAIUWXBlk40xTwSw\n"
"7HX32MxXYruse9ACFBNGmdX2ZBrVNGrN9N2f6ROk0k9K\n"
"-----END CERTIFICATE-----\n");
}
// The OpenVPN Tech. lambda web cert
static std::string awspc_web_cert()
{
// Go Daddy Root Certificate Authority - G2
return std::string(
"-----BEGIN CERTIFICATE-----\n"
"MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT\n"
"B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu\n"
"MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5\n"
"MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6\n"
"b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G\n"
"A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI\n"
"hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq\n"
"9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD\n"
"+qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd\n"
"fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl\n"
"NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC\n"
"MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9\n"
"BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac\n"
"vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r\n"
"5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV\n"
"N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO\n"
"LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1\n"
"-----END CERTIFICATE-----\n");
}
// The OpenVPN Tech. lambda response signing cert
static std::string awspc_signing_cert()
{
return std::string(
"-----BEGIN CERTIFICATE-----\n"
"MIIDSDCCAjCgAwIBAgIQYadxADonNbu3mPeXR0yYVTANBgkqhkiG9w0BAQsFADAW\n"
"MRQwEgYDVQQDEwtBV1MgUEMgUm9vdDAeFw0xNjAzMDExOTU2NTZaFw0yNjAyMjcx\n"
"OTU2NTZaMBAxDjAMBgNVBAMTBWF3c3BjMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A\n"
"MIIBCgKCAQEA0ggZoYroOMwDHKCngVOdUKiF6y65LDWmbAwZVqwVI7WYpvOELV34\n"
"04ZYtSqPq6IoGFuH6zl0P5rCi674T0oBPSUTmlLwLks+1zrGznboApkr67Mf2dCd\n"
"snlyaNPuwrjWHJBa6Pi9dv/YMoJgDxOxk9mslAlcl5xOFgXbfSj1pAA0KVzwwbzz\n"
"dnznJL67wCnuiAeqBxbkyarfOL414tepsI24kHoAddAVDdhWQ2WkhrT/vK2IRdGZ\n"
"kU5hAAz/qPKkJxebw5uc+cL2TBii2r0Hvg7tEXI9eIEWeoghftsE5YEuaQHP4EVL\n"
"JU+21OQzz0lT9L2rrvffTR7cF89Nbn2KMQIDAQABo4GXMIGUMAkGA1UdEwQCMAAw\n"
"HQYDVR0OBBYEFAMy6uiElCGZVP/wwJeqvXL7QHTSMEYGA1UdIwQ/MD2AFLDKS6Dk\n"
"NtTpQoOPxJi+DRS+GD2CoRqkGDAWMRQwEgYDVQQDEwtBV1MgUEMgUm9vdIIJAOu5\n"
"NqrIe040MBMGA1UdJQQMMAoGCCsGAQUFBwMCMAsGA1UdDwQEAwIHgDANBgkqhkiG\n"
"9w0BAQsFAAOCAQEAsFhhC9wwybTS2yTYiStATbxHWqnHJRrbMBpqX8FJweS1MM/j\n"
"pwr1suTllwTHpqXpqgN6SDzdeG2ZKx8pvJr/dlmD9e+cHguIMTo6TcqPv1MPl3MZ\n"
"ugOmDPlgmFYwAWBwzujiGR9bgdGfzw+94KK06iO8MrFLtkz9EbeoJol68mi98CEz\n"
"kmOb2BM6tVzkvB9fIYyNkW66ZJs2gXwb6RZTyE9HMMGR67nWKYo9SxpB6f+6hlyU\n"
"q7ptxP2Rwmz0u1pRaZdfHmJFOJnPniB7UmMx/t3ftqYWYDXuobr3LVvg7+33WUk0\n"
"HfSdbAEkzzC82UTHj0xVH/uZZt8ORChRxuIWZQ==\n"
"-----END CERTIFICATE-----\n");
}
WS::ClientSet::Ptr cs;
StrongRandomAPI::Ptr rng;
Frame::Ptr frame;
const bool lookup_product_code;
const int debug_level;
std::string role_for_credentials;
std::string certs_dir;
std::function<void(Info info)> completion;
Info info;
Json::Value awspc_req;
bool pending = false;
};
} // namespace openvpn::AWS
|