Skip to content

Commit 4d677c8

Browse files
authored
Merge pull request #8628 from achouhan09/id-fix
Added restriction to limit the ID length to 255 characters in bucket lifecycle rules
2 parents 52887eb + 9291a3c commit 4d677c8

File tree

4 files changed

+36
-1
lines changed

4 files changed

+36
-1
lines changed

src/endpoint/s3/ops/s3_put_bucket_lifecycle.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'use strict';
33

44
const _ = require('lodash');
5+
const s3_const = require('../s3_constants');
56
const { v4: uuid } = require('uuid');
67
const dbg = require('../../../util/debug_module')(__filename);
78
const S3Error = require('../s3_errors').S3Error;
@@ -88,7 +89,12 @@ async function put_bucket_lifecycle(req) {
8889
};
8990

9091
if (rule.ID?.length === 1) {
91-
current_rule.id = rule.ID[0];
92+
if (rule.ID[0].length > s3_const.MAX_RULE_ID_LENGTH) {
93+
dbg.error('Rule should not have ID length exceed allowed limit of ', s3_const.MAX_RULE_ID_LENGTH, ' characters', rule);
94+
throw new S3Error({ ...S3Error.InvalidArgument, message: `ID length should not exceed allowed limit of ${s3_const.MAX_RULE_ID_LENGTH}` });
95+
} else {
96+
current_rule.id = rule.ID[0];
97+
}
9298
} else {
9399
// Generate a random ID if missing
94100
current_rule.id = uuid();

src/endpoint/s3/s3_constants.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/* Copyright (C) 2016 NooBaa */
2+
'use strict';
3+
4+
// `s3_const` serves as an alias for `exports` which expose constants related to s3 operations
5+
// keeping name referencing consistent to s3_const.NAME for easier imports and searches
6+
const s3_const = exports;
7+
8+
///////////////
9+
// LIFECYCLE //
10+
///////////////
11+
12+
s3_const.MAX_RULE_ID_LENGTH = 255;

src/test/lifecycle/common.js

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'use strict';
33

44
const assert = require('assert');
5+
const s3_const = require('../../endpoint/s3/s3_constants');
56

67
/*
78
* https://docs.aws.amazon.com/AmazonS3/latest/userguide/intro-lifecycle-rules.html
@@ -512,3 +513,18 @@ exports.test_and_prefix_size = async function(Bucket, Key, s3) {
512513
assert(actualFilter.ObjectSizeGreaterThan === expectedFilter.ObjectSizeGreaterThan, 'and prefix size filter - ObjectSizeGreaterThan');
513514
assert(actualFilter.ObjectSizeLessThan === expectedFilter.ObjectSizeLessThan, 'and prefix size filter - ObjectSizeLessThan');
514515
};
516+
517+
exports.test_rule_id_length = async function(Bucket, Key, s3) {
518+
const putLifecycleParams = id_lifecycle_configuration(Bucket, Key);
519+
520+
// set the ID to a value with more than 'MAX_RULE_ID_LENGTH' characters
521+
const ID = 'A'.repeat(s3_const.MAX_RULE_ID_LENGTH + 5);
522+
putLifecycleParams.LifecycleConfiguration.Rules[0].ID = ID;
523+
524+
try {
525+
await s3.putBucketLifecycleConfiguration(putLifecycleParams);
526+
assert.fail(`Expected error for ID length exceeding maximum allowed characters ${s3_const.MAX_RULE_ID_LENGTH}, but request was successful`);
527+
} catch (error) {
528+
assert(error.code === 'InvalidArgument', `Expected InvalidArgument: id length exceeding ${s3_const.MAX_RULE_ID_LENGTH} characters`);
529+
}
530+
};

src/test/system_tests/test_lifecycle.js

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ async function main() {
5454
await commonTests.test_rule_id(Bucket, Key, s3);
5555
await commonTests.test_filter_size(Bucket, s3);
5656
await commonTests.test_and_prefix_size(Bucket, Key, s3);
57+
await commonTests.test_rule_id_length(Bucket, Key, s3);
5758

5859
const getObjectParams = {
5960
Bucket,

0 commit comments

Comments
 (0)