Files
versitygw/tests/integration/iam_get_role.go
T
niksis02 afbee5be01 fix: role last-used tracking, and record S3 requests in last-used metadata
Role last-used tracking was missing entirely - `GetRole` returned a `RoleLastUsed` element that nothing ever wrote, rendering the zero time instead of the empty element AWS returns for an unused role - and access key last-used only ever saw the `IAM`/`STS` control plane, so a credential used exclusively against the S3 gateway reported as never used. Roles now record a use whenever a request authenticates with one of their session credentials, through a new `Storer.RecordRoleUsage` mirroring `RecordAccessKeyUsage`, gated on the session's role still being the one it was minted against so a session outliving its role can't attribute its use to a same-named replacement. `LastUsedDate` became a `*time.Time` so an unused role renders as an empty element.

Both records now cover the S3 data plane as well: the gateway sends its configured region and `s3` on evaluate-policy and the IAM service records the caller there, so `GetAccessKeyLastUsed's` `ServiceName` is now iam, sts or s3. That call was chosen over derive-signing-key, which runs before signature verification and takes its region and service from the caller's own `Authorization` header - recording there would let anyone who knows an access key id refresh and poison another identity's audit record. Requests denied by a bucket policy or made against a public bucket are not recorded, since neither reaches identity-policy evaluation. To keep per-request recording affordable, an update is skipped while the stored record has the same service and region and is under a minute old; a change of either is written through immediately.

Assuming a role is not a use, a request denied by an identity policy is, and both successful and denied S3 requests update the record. Also moves the `OIDC-dependent` tests into the `s3-iam-session` group so runoidctests.sh runs a single group.
2026-09-01 19:55:27 +04:00

172 lines
5.8 KiB
Go

// Copyright 2026 Versity Software
// This file is licensed under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package integration
import (
"context"
"fmt"
"net/http"
"strings"
"time"
"github.com/aws/aws-sdk-go-v2/aws"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/service/iam"
iamtypes "github.com/aws/aws-sdk-go-v2/service/iam/types"
"github.com/versity/versitygw/iamapi/iamerr"
)
func IAMGetRole_missing_role_name(s *S3Conf) error {
testName := "IAMGetRole_missing_role_name"
body := []byte("Action=GetRole&Version=2010-05-08")
return authHandler(s, &authConfig{
testName: testName,
method: http.MethodPost,
service: "iam",
region: iamAuthRegion,
body: body,
date: time.Now().UTC(),
headers: map[string]string{
"Content-Type": "application/x-www-form-urlencoded",
},
}, func(req *http.Request) error {
return checkIAMAuthRequest(s, req, iamerr.MissingParameter("RoleName"))
})
}
func IAMGetRole_invalid_role_name(s *S3Conf) error {
testName := "IAMGetRole_invalid_role_name"
return iamActionHandler(s, testName, func(client *iam.Client) error {
_, err := getIAMRole(client, "invalid/role")
return checkIAMApiErr(err, iamerr.InvalidUserName("roleName"))
})
}
func IAMGetRole_long_role_name(s *S3Conf) error {
testName := "IAMGetRole_long_role_name"
return iamActionHandler(s, testName, func(client *iam.Client) error {
_, err := getIAMRole(client, strings.Repeat("a", 65))
return checkIAMApiErr(err, iamerr.UserNameTooLong("roleName", 64))
})
}
func IAMGetRole_non_existing_role(s *S3Conf) error {
testName := "IAMGetRole_non_existing_role"
return iamActionHandler(s, testName, func(client *iam.Client) error {
const roleName = "asdfadsf"
_, err := getIAMRole(client, roleName)
return checkIAMApiErr(err, iamerr.NoSuchEntityRole(roleName))
})
}
func IAMGetRole_success(s *S3Conf) error {
testName := "IAMGetRole_success"
return iamActionHandler(s, testName, func(client *iam.Client) error {
roleName := newIAMRoleName()
if _, err := createIAMRole(client, &iam.CreateRoleInput{
RoleName: &roleName,
Path: aws.String("/engineering/"),
AssumeRolePolicyDocument: aws.String(validTrustPolicyDocument),
Description: aws.String("a test role"),
MaxSessionDuration: aws.Int32(7200),
Tags: []iamtypes.Tag{
{Key: aws.String("env"), Value: aws.String("test")},
},
}); err != nil {
return err
}
out, err := getIAMRole(client, roleName)
if err != nil {
deleteErr := deleteIAMRole(client, roleName)
if deleteErr != nil {
return fmt.Errorf("get role: %v; delete role: %w", err, deleteErr)
}
return err
}
checkErr := checkGetRoleOutput(out, roleName, "/engineering/", "a test role", 7200, validTrustPolicyDocument, true)
deleteErr := deleteIAMRole(client, roleName)
if checkErr != nil {
return checkErr
}
return deleteErr
})
}
// IAMGetRole_role_last_used_never_used confirms a role nobody has assumed
// reports the empty RoleLastUsed element — present, but carrying neither a
// date nor a region, exactly as real IAM answers for a never-used role.
func IAMGetRole_role_last_used_never_used(s *S3Conf) error {
testName := "IAMGetRole_role_last_used_never_used"
return iamActionHandler(s, testName, func(client *iam.Client) error {
roleName := newIAMRoleName()
if _, err := createIAMRole(client, &iam.CreateRoleInput{
RoleName: &roleName,
AssumeRolePolicyDocument: aws.String(validTrustPolicyDocument),
}); err != nil {
return err
}
out, err := getIAMRole(client, roleName)
checkErr := func() error {
if err != nil {
return err
}
if out.Role == nil {
return fmt.Errorf("expected GetRole to return a role")
}
return checkRoleNeverUsed(out.Role.RoleLastUsed)
}()
deleteErr := deleteIAMRole(client, roleName)
if checkErr != nil {
return checkErr
}
return deleteErr
})
}
func getIAMRole(client *iam.Client, roleName string) (*iam.GetRoleOutput, error) {
ctx, cancel := context.WithTimeout(context.Background(), shortTimeout)
defer cancel()
return client.GetRole(ctx, &iam.GetRoleInput{RoleName: &roleName})
}
// checkGetRoleOutput verifies the fields of a GetRoleOutput-shaped role.
func checkGetRoleOutput(out *iam.GetRoleOutput, roleName, path, description string, maxSessionDuration int32, wantDocument string, expectTags bool) error {
if out == nil {
return fmt.Errorf("expected GetRole output role")
}
requestID, hasRequestID := awsmiddleware.GetRequestIDMetadata(out.ResultMetadata)
return checkRoleFields("GetRole", out.Role, roleName, path, description, maxSessionDuration, wantDocument, expectTags, requestID, hasRequestID)
}
// checkRoleNeverUsed asserts lastUsed is the empty element real IAM returns
// for a role that has never been used: present, but carrying neither a date
// nor a region.
func checkRoleNeverUsed(lastUsed *iamtypes.RoleLastUsed) error {
if lastUsed == nil {
return fmt.Errorf("expected role RoleLastUsed to be non-nil (empty element)")
}
if lastUsed.LastUsedDate != nil {
return fmt.Errorf("expected no role last used date, instead got %v", *lastUsed.LastUsedDate)
}
if aws.ToString(lastUsed.Region) != "" {
return fmt.Errorf("expected no role last used region, instead got %q", aws.ToString(lastUsed.Region))
}
return nil
}