Spaces:
Runtime error
Runtime error
File size: 17,420 Bytes
c7052c4 | 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 | import { logger } from '../logger';
import { captureException } from '../sentry/captureException';
import { Environment } from './env';
import { externalServiceFetch } from './fetch';
import { Sha256 } from '@aws-crypto/sha256-js';
import { SignatureV4 } from '@smithy/signature-v4';
import fs from 'fs/promises';
import path from 'path';
export const awsEndpointDomain = Environment({}).AWS_ENDPOINT_DOMAIN || 'amazonaws.com';
export interface AWSCredentials {
source?: string;
accessKeyId: string;
secretAccessKey: string;
sessionToken?: string;
expiration?: string;
awsRoleArn?: string;
awsRegion?: string;
}
// In-memory cache for file-based credentials (no Redis dependency)
let AWS_SHARED_CREDENTIALS: { credentials?: AWSCredentials };
let AWS_CONFIG_CREDENTIALS: { credentials?: AWSCredentials };
function getAwsFilePath(fileName: string, env?: Record<string, any>) {
return Environment(env).HOME || Environment(env).USERPROFILE
? path.join((Environment(env).HOME || Environment(env).USERPROFILE) as string, '.aws', fileName)
: '';
}
async function parseIniFile(filePath: string) {
const content = await fs.readFile(filePath, 'utf8');
const lines = content.split(/\r?\n/);
const result: Record<string, any> = {};
let currentSection: string | null = null;
lines.forEach((line) => {
if (line.startsWith('[') && line.endsWith(']')) {
currentSection = line.slice(1, -1);
result[currentSection] = {};
} else if (currentSection && line.includes('=')) {
const [key, value] = line.split('=').map((s) => s.trim());
result[currentSection][key] = value;
}
});
return result;
}
export function getRegionFromEnv(env?: Record<string, any>): string | undefined {
return Environment(env).AWS_REGION || Environment(env).AWS_DEFAULT_REGION;
}
export const generateAWSHeaders = async (
body: Record<string, any> | string | undefined,
headers: Record<string, string>,
url: string,
method: string,
awsService: string,
awsRegion: string,
awsAccessKeyID: string,
awsSecretAccessKey: string,
awsSessionToken: string | undefined,
): Promise<Record<string, string>> => {
const signer = new SignatureV4({
service: awsService,
region: awsRegion || 'us-east-1',
credentials: {
accessKeyId: awsAccessKeyID,
secretAccessKey: awsSecretAccessKey,
...(awsSessionToken && { sessionToken: awsSessionToken }),
},
sha256: Sha256,
});
const urlObj = new URL(url);
headers['host'] = urlObj.host;
const protocol = urlObj.protocol?.replace(':', '')?.toLowerCase();
let requestBody;
if (!body) {
requestBody = null;
} else if (
body instanceof Uint8Array ||
body instanceof Buffer ||
body instanceof ArrayBuffer ||
typeof body === 'string'
) {
requestBody = body;
} else if (body && typeof body === 'object' && method !== 'GET') {
requestBody = JSON.stringify(body);
}
const queryParams = Object.fromEntries(urlObj.searchParams.entries());
const request = {
method: method,
path: urlObj.pathname,
protocol: protocol || 'https',
query: queryParams,
hostname: urlObj.hostname,
headers: headers,
...(requestBody && { body: requestBody }),
};
const unsignableHeaders = [];
if (body instanceof ArrayBuffer) {
unsignableHeaders.push('x-amz-content-sha256');
request.headers['x-amz-content-sha256'] = 'UNSIGNED-PAYLOAD';
}
const signed = await signer.sign(request, {
unsignableHeaders: new Set(unsignableHeaders),
});
return signed.headers;
};
export function getCredentialsFromEnvironment(
env?: Record<string, any>,
): AWSCredentials | undefined {
const envVars = Environment(env);
if (envVars.AWS_ACCESS_KEY_ID && envVars.AWS_SECRET_ACCESS_KEY) {
return {
source: 'Environment Variables',
accessKeyId: envVars.AWS_ACCESS_KEY_ID,
secretAccessKey: envVars.AWS_SECRET_ACCESS_KEY,
sessionToken: envVars.AWS_SESSION_TOKEN,
awsRoleArn: envVars.AWS_ROLE_ARN,
awsRegion: getRegionFromEnv(env) || 'us-east-1',
};
}
}
export async function getCredentialsFromSharedCredentialsFile(
env?: Record<string, any>,
): Promise<AWSCredentials | undefined> {
if (AWS_SHARED_CREDENTIALS) {
return AWS_SHARED_CREDENTIALS.credentials;
}
try {
const credentials = await parseIniFile(getAwsFilePath('credentials'));
const profile = Environment(env).AWS_PROFILE || 'default';
if (credentials[profile]) {
const {
aws_access_key_id: accessKeyId,
aws_secret_access_key: secretAccessKey,
aws_session_token: sessionToken,
aws_role_arn: awsRoleArn,
region,
aws_region,
} = credentials[profile];
if (!accessKeyId || !secretAccessKey) {
AWS_SHARED_CREDENTIALS = {};
return;
}
const awsCredentials: AWSCredentials = {
source: `Shared Credentials File (${profile})`,
accessKeyId,
secretAccessKey,
sessionToken,
awsRoleArn: awsRoleArn || Environment(env).AWS_ROLE_ARN,
awsRegion: region || aws_region || getRegionFromEnv(env) || 'us-east-1',
};
AWS_SHARED_CREDENTIALS = { credentials: awsCredentials };
return awsCredentials;
}
AWS_SHARED_CREDENTIALS = {};
return;
} catch (error) {
captureException({ error, message: 'failed to parse AWS shared credentials' });
AWS_SHARED_CREDENTIALS = {};
return;
}
}
export async function getCredentialsFromAwsConfigFile(
env?: Record<string, any>,
): Promise<AWSCredentials | undefined> {
if (AWS_CONFIG_CREDENTIALS) {
return AWS_CONFIG_CREDENTIALS.credentials;
}
try {
const config = await parseIniFile(getAwsFilePath('config'));
const profileName = Environment(env).AWS_PROFILE || 'default';
const profile = profileName === 'default' ? 'default' : `profile ${profileName}`;
if (config[profile]) {
const {
aws_access_key_id: accessKeyId,
aws_secret_access_key: secretAccessKey,
aws_session_token: sessionToken,
role_arn: awsRoleArn,
region,
aws_region,
} = config[profile];
if (!accessKeyId || !secretAccessKey) {
AWS_CONFIG_CREDENTIALS = {};
return;
}
const awsCredentials: AWSCredentials = {
source: `Config File (${profileName})`,
accessKeyId,
secretAccessKey,
sessionToken,
awsRoleArn: awsRoleArn || Environment(env).AWS_ROLE_ARN,
awsRegion: region || aws_region || getRegionFromEnv(env) || 'us-east-1',
};
AWS_CONFIG_CREDENTIALS = { credentials: awsCredentials };
return awsCredentials;
}
AWS_CONFIG_CREDENTIALS = {};
return;
} catch (error) {
captureException({ error, message: 'failed to parse AWS config credentials' });
AWS_CONFIG_CREDENTIALS = {};
return;
}
}
export function parseSTSXmlResponse(xml: string): AWSCredentials | null {
const getTagContent = (tag: string) => {
const regex = new RegExp(`<${tag}>(.*?)</${tag}>`, 's');
const match = xml.match(regex);
return match ? match[1] : null;
};
const credentials = getTagContent('Credentials');
if (!credentials) {
return null;
}
return {
accessKeyId: getTagContent('AccessKeyId') || '',
secretAccessKey: getTagContent('SecretAccessKey') || '',
sessionToken: getTagContent('SessionToken') || undefined,
expiration: getTagContent('Expiration') || undefined,
};
}
export async function fetchWebIdentityCredentials(
token: string,
roleArn: string,
awsRegion: string,
): Promise<AWSCredentials | null> {
const params = new URLSearchParams({
Version: '2011-06-15',
Action: 'AssumeRoleWithWebIdentity',
RoleArn: roleArn,
RoleSessionName: `eks-${Date.now()}`,
WebIdentityToken: token,
});
const response = await externalServiceFetch(`https://sts.${awsRegion}.${awsEndpointDomain}`, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: params.toString(),
});
if (!response.ok) {
const errorMessage = await response.text();
logger.info({ errorMessage }, 'STS error');
return null;
}
const data = await response.text();
return parseSTSXmlResponse(data);
}
export async function fetchPodIdentityCredentials(
token: string,
credentialFullUri: string,
): Promise<AWSCredentials | null> {
const response = await externalServiceFetch(credentialFullUri, {
method: 'GET',
headers: {
Authorization: token,
},
});
if (!response.ok) {
return null;
}
const data: any = await response.json();
return {
accessKeyId: data.AccessKeyId,
secretAccessKey: data.SecretAccessKey,
sessionToken: data.Token,
expiration: data.Expiration,
};
}
export async function fetchECSContainerCredentials(
relativeUri: string,
): Promise<AWSCredentials | null> {
const ecsUri = `http://169.254.170.2${relativeUri}`;
const response = await externalServiceFetch(ecsUri, {
method: 'GET',
});
if (!response.ok) {
const error = await response.text();
logger.info({ error }, 'failed to get FromECSContainer');
return null;
}
const credentials: any = await response.json();
return {
source: 'ECS Container Credentials',
accessKeyId: credentials.AccessKeyId,
secretAccessKey: credentials.SecretAccessKey,
sessionToken: credentials.Token,
expiration: credentials.Expiration,
awsRoleArn: credentials.RoleArn,
};
}
export async function fetchIMDSv2Token(): Promise<string> {
const response = await externalServiceFetch(`http://169.254.169.254/latest/api/token`, {
method: 'PUT',
headers: {
'X-aws-ec2-metadata-token-ttl-seconds': '21600',
},
});
if (!response.ok) {
const error = await response.text();
logger.info({ error }, 'failed to get IMDSv2 token');
throw new Error(error);
}
return response.text();
}
export async function fetchIMDSRegion(token?: string): Promise<string> {
const response = await externalServiceFetch(
'http://169.254.169.254/latest/dynamic/instance-identity/document',
{
...(token && {
method: 'GET',
headers: { 'X-aws-ec2-metadata-token': token },
}),
},
);
if (!response.ok) {
const txt = await response.text();
throw new Error(`Failed to get IMDS region: ${txt}`);
}
const doc: any = await response.json();
return doc.region || getRegionFromEnv();
}
export async function fetchIMDSRoleName(token?: string): Promise<string> {
const response = await externalServiceFetch(
'http://169.254.169.254/latest/meta-data/iam/security-credentials/',
{
...(token && {
method: 'GET',
headers: {
'X-aws-ec2-metadata-token': token,
},
}),
},
);
if (!response.ok) {
throw new Error(`Failed to get role name: ${response.status}`);
}
return response.text();
}
export async function fetchIMDSCredentials(
roleName: string,
token?: string,
): Promise<AWSCredentials | null> {
const response = await externalServiceFetch(
`http://169.254.169.254/latest/meta-data/iam/security-credentials/${roleName}`,
{
...(token && {
method: 'GET',
headers: {
'X-aws-ec2-metadata-token': token,
},
}),
},
);
if (!response.ok) {
const error = await response.text();
logger.info({ error }, 'failed to get credentials');
return null;
}
const credentials: any = await response.json();
return {
accessKeyId: credentials.AccessKeyId,
secretAccessKey: credentials.SecretAccessKey,
sessionToken: credentials.Token,
expiration: credentials.Expiration,
awsRoleArn: roleName,
};
}
export async function fetchECSRegionFromMetadata(
env?: Record<string, any>,
): Promise<string | null> {
const uri =
Environment(env).ECS_CONTAINER_METADATA_URI_V4 || Environment(env).ECS_CONTAINER_METADATA_URI;
if (!uri) return null;
try {
const resp = await externalServiceFetch(`${uri}/task`, { method: 'GET' });
if (!resp.ok) return null;
const meta: any = await resp.json();
if (meta?.TaskARN && typeof meta.TaskARN === 'string') {
const m = meta.TaskARN.match(/^arn:(aws|aws-cn|aws-us-gov):ecs:([a-z0-9-]+):/);
if (m?.[2]) return m[2];
}
if (meta?.AvailabilityZone && typeof meta.AvailabilityZone === 'string') {
return meta.AvailabilityZone.replace(/[a-z]$/i, '');
}
} catch {
// ignore and fall back
}
return null;
}
export async function fetchIMDSIdentityDocument(token?: string): Promise<any | null> {
try {
const resp = await externalServiceFetch(
'http://169.254.169.254/latest/dynamic/instance-identity/document',
{
...(token && {
method: 'GET',
headers: { 'X-aws-ec2-metadata-token': token },
}),
},
);
if (!resp.ok) return null;
return await resp.json();
} catch {
return null;
}
}
export function inferPartitionFromRegion(region?: string): string {
if (!region) return 'aws';
if (region.startsWith('cn-')) return 'aws-cn';
if (region.startsWith('us-gov-')) return 'aws-us-gov';
return 'aws';
}
export async function fetchIMDSRoleArn(token?: string): Promise<string | undefined> {
try {
const roleName = await fetchIMDSRoleName(token);
const doc = await fetchIMDSIdentityDocument(token);
const accountId = doc?.accountId;
const region = doc?.region;
const partition = inferPartitionFromRegion(region);
if (roleName && accountId) {
return `arn:${partition}:iam::${accountId}:role/${roleName}`;
}
} catch {
// ignore
}
// Fallback: try instance profile arn and convert to role arn
try {
const resp = await externalServiceFetch('http://169.254.169.254/latest/meta-data/iam/info', {
...(token && {
method: 'GET',
headers: { 'X-aws-ec2-metadata-token': token },
}),
});
if (resp.ok) {
const info: any = await resp.json();
const ipa = info?.InstanceProfileArn;
if (ipa && typeof ipa === 'string') {
return ipa.replace(':instance-profile/', ':role/');
}
}
} catch {
// ignore
}
}
export async function fetchECSTaskRoleArnFromMetadata(
env?: Record<string, any>,
): Promise<string | null> {
const uri =
Environment(env).ECS_CONTAINER_METADATA_URI_V4 || Environment(env).ECS_CONTAINER_METADATA_URI;
if (!uri) return null;
try {
const resp = await externalServiceFetch(`${uri}/task`, { method: 'GET' });
if (!resp.ok) return null;
const meta: any = await resp.json();
if (meta?.TaskRoleArn) return meta.TaskRoleArn;
if (meta?.ExecutionRoleArn) return meta.ExecutionRoleArn;
} catch {
// ignore
}
return null;
}
export async function fetchSTSAssumeRoleCredentials(
awsRoleArn: string,
awsRegion: string,
accessKeyId: string,
secretAccessKey: string,
sessionToken?: string,
externalId?: string,
): Promise<AWSCredentials | null> {
const service = 'sts';
const hostname = `sts.${awsRegion}.${awsEndpointDomain}`;
const signer = new SignatureV4({
service,
region: awsRegion,
credentials: {
accessKeyId,
secretAccessKey,
sessionToken,
},
sha256: Sha256,
});
const date = new Date();
const sessionName = `${date.getFullYear()}${date.getMonth()}${date.getDate()}`;
const url = `https://${hostname}?Action=AssumeRole&Version=2011-06-15&RoleArn=${awsRoleArn}&RoleSessionName=${sessionName}${externalId ? `&ExternalId=${externalId}` : ''}`;
const urlObj = new URL(url);
const requestHeaders = { host: hostname };
const protocol = urlObj.protocol?.replace(':', '')?.toLowerCase();
const options = {
method: 'GET',
path: urlObj.pathname,
protocol: protocol || 'https',
hostname: urlObj.hostname,
headers: requestHeaders,
query: Object.fromEntries(urlObj.searchParams),
};
const { headers } = await signer.sign(options);
try {
const response = await externalServiceFetch(url, {
method: 'GET',
headers: headers,
});
if (!response.ok) {
const resp = await response.text();
logger.error({ resp }, 'STS assume role failed');
return null;
}
const xmlData = await response.text();
return parseSTSXmlResponse(xmlData);
} catch (error) {
logger.error({ err: error }, 'error assuming role');
return null;
}
}
// Composite function to get all IMDS credentials in one call (no caching)
export async function fetchIMDSAllCredentials(
env?: Record<string, any>,
): Promise<AWSCredentials | null> {
let imdsv2Token;
if (!Environment(env).AWS_IMDS_V1) {
imdsv2Token = await fetchIMDSv2Token();
}
const roleName = await fetchIMDSRoleName(imdsv2Token);
const baseCreds = await fetchIMDSCredentials(roleName, imdsv2Token);
if (!baseCreds) return null;
const roleArn = await fetchIMDSRoleArn(imdsv2Token);
let region = getRegionFromEnv();
if (!region) {
try {
region = (await fetchIMDSRegion(imdsv2Token)) || 'us-east-1';
} catch {
region = 'us-east-1';
}
}
return {
...baseCreds,
awsRegion: region,
...(roleArn && { awsRoleArn: roleArn }),
};
}
// Initialize file-based credentials on module load (no Redis dependency)
await getCredentialsFromSharedCredentialsFile();
await getCredentialsFromAwsConfigFile();
|