Skip to content

Commit abdd93d

Browse files
authored
fix: set max lengths in regex for numeric and build identifiers (#571)
1 parent e7b78de commit abdd93d

File tree

4 files changed

+55
-22
lines changed

4 files changed

+55
-22
lines changed

classes/range.js

+3
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,18 @@ class Range {
9898
const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE]
9999
range = range.replace(hr, hyphenReplace(this.options.includePrerelease))
100100
debug('hyphen replace', range)
101+
101102
// `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`
102103
range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace)
103104
debug('comparator trim', range)
104105

105106
// `~ 1.2.3` => `~1.2.3`
106107
range = range.replace(re[t.TILDETRIM], tildeTrimReplace)
108+
debug('tilde trim', range)
107109

108110
// `^ 1.2.3` => `^1.2.3`
109111
range = range.replace(re[t.CARETTRIM], caretTrimReplace)
112+
debug('caret trim', range)
110113

111114
// At this point, the range is completely trimmed and
112115
// ready to be split into comparators.

internal/constants.js

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||
99
// Max safe segment length for coercion.
1010
const MAX_SAFE_COMPONENT_LENGTH = 16
1111

12+
// Max safe length for a build identifier. The max length minus 6 characters for
13+
// the shortest version with a build 0.0.0+BUILD.
14+
const MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6
15+
1216
const RELEASE_TYPES = [
1317
'major',
1418
'premajor',
@@ -22,6 +26,7 @@ const RELEASE_TYPES = [
2226
module.exports = {
2327
MAX_LENGTH,
2428
MAX_SAFE_COMPONENT_LENGTH,
29+
MAX_SAFE_BUILD_LENGTH,
2530
MAX_SAFE_INTEGER,
2631
RELEASE_TYPES,
2732
SEMVER_SPEC_VERSION,

internal/re.js

+28-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { MAX_SAFE_COMPONENT_LENGTH } = require('./constants')
1+
const { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH } = require('./constants')
22
const debug = require('./debug')
33
exports = module.exports = {}
44

@@ -9,16 +9,31 @@ const src = exports.src = []
99
const t = exports.t = {}
1010
let R = 0
1111

12+
const LETTERDASHNUMBER = '[a-zA-Z0-9-]'
13+
14+
// Replace some greedy regex tokens to prevent regex dos issues. These regex are
15+
// used internally via the safeRe object since all inputs in this library get
16+
// normalized first to trim and collapse all extra whitespace. The original
17+
// regexes are exported for userland consumption and lower level usage. A
18+
// future breaking change could export the safer regex only with a note that
19+
// all input should have extra whitespace removed.
20+
const safeRegexReplacements = [
21+
['\\s', 1],
22+
['\\d', MAX_SAFE_COMPONENT_LENGTH],
23+
[LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH],
24+
]
25+
26+
const makeSafeRegex = (value) => {
27+
for (const [token, max] of safeRegexReplacements) {
28+
value = value
29+
.split(`${token}*`).join(`${token}{0,${max}}`)
30+
.split(`${token}+`).join(`${token}{1,${max}}`)
31+
}
32+
return value
33+
}
34+
1235
const createToken = (name, value, isGlobal) => {
13-
// Replace all greedy whitespace to prevent regex dos issues. These regex are
14-
// used internally via the safeRe object since all inputs in this library get
15-
// normalized first to trim and collapse all extra whitespace. The original
16-
// regexes are exported for userland consumption and lower level usage. A
17-
// future breaking change could export the safer regex only with a note that
18-
// all input should have extra whitespace removed.
19-
const safe = value
20-
.split('\\s*').join('\\s{0,1}')
21-
.split('\\s+').join('\\s')
36+
const safe = makeSafeRegex(value)
2237
const index = R++
2338
debug(name, index, value)
2439
t[name] = index
@@ -34,13 +49,13 @@ const createToken = (name, value, isGlobal) => {
3449
// A single `0`, or a non-zero digit followed by zero or more digits.
3550

3651
createToken('NUMERICIDENTIFIER', '0|[1-9]\\d*')
37-
createToken('NUMERICIDENTIFIERLOOSE', '[0-9]+')
52+
createToken('NUMERICIDENTIFIERLOOSE', '\\d+')
3853

3954
// ## Non-numeric Identifier
4055
// Zero or more digits, followed by a letter or hyphen, and then zero or
4156
// more letters, digits, or hyphens.
4257

43-
createToken('NONNUMERICIDENTIFIER', '\\d*[a-zA-Z-][a-zA-Z0-9-]*')
58+
createToken('NONNUMERICIDENTIFIER', `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`)
4459

4560
// ## Main Version
4661
// Three dot-separated numeric identifiers.
@@ -75,7 +90,7 @@ createToken('PRERELEASELOOSE', `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]
7590
// ## Build Metadata Identifier
7691
// Any combination of digits, letters, or hyphens.
7792

78-
createToken('BUILDIDENTIFIER', '[0-9A-Za-z-]+')
93+
createToken('BUILDIDENTIFIER', `${LETTERDASHNUMBER}+`)
7994

8095
// ## Build Metadata
8196
// Plus sign, followed by one or more period-separated build metadata

test/integration/whitespace.js

+19-9
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,43 @@ const minVersion = require('../../ranges/min-version')
77
const minSatisfying = require('../../ranges/min-satisfying')
88
const maxSatisfying = require('../../ranges/max-satisfying')
99

10-
const s = (n = 500000) => ' '.repeat(n)
10+
const wsMedium = ' '.repeat(125)
11+
const wsLarge = ' '.repeat(500000)
12+
const zeroLarge = '0'.repeat(500000)
1113

12-
test('regex dos via range whitespace', (t) => {
13-
// a range with this much whitespace would take a few minutes to process if
14+
test('range with whitespace', (t) => {
15+
// a range with these extra characters would take a few minutes to process if
1416
// any redos susceptible regexes were used. there is a global tap timeout per
1517
// file set in the package.json that will error if this test takes too long.
16-
const r = `1.2.3 ${s()} <1.3.0`
17-
18+
const r = `1.2.3 ${wsLarge} <1.3.0`
1819
t.equal(new Range(r).range, '1.2.3 <1.3.0')
1920
t.equal(validRange(r), '1.2.3 <1.3.0')
2021
t.equal(minVersion(r).version, '1.2.3')
2122
t.equal(minSatisfying(['1.2.3'], r), '1.2.3')
2223
t.equal(maxSatisfying(['1.2.3'], r), '1.2.3')
24+
t.end()
25+
})
2326

27+
test('range with 0', (t) => {
28+
const r = `1.2.3 ${zeroLarge} <1.3.0`
29+
t.throws(() => new Range(r).range)
30+
t.equal(validRange(r), null)
31+
t.throws(() => minVersion(r).version)
32+
t.equal(minSatisfying(['1.2.3']), null)
33+
t.equal(maxSatisfying(['1.2.3']), null)
2434
t.end()
2535
})
2636

2737
test('semver version', (t) => {
28-
const v = `${s(125)}1.2.3${s(125)}`
29-
const tooLong = `${s()}1.2.3${s()}`
38+
const v = `${wsMedium}1.2.3${wsMedium}`
39+
const tooLong = `${wsLarge}1.2.3${wsLarge}`
3040
t.equal(new SemVer(v).version, '1.2.3')
3141
t.throws(() => new SemVer(tooLong))
3242
t.end()
3343
})
3444

3545
test('comparator', (t) => {
36-
const c = `${s()}<${s()}1.2.3${s()}`
37-
t.equal(new Comparator(c).value, '<1.2.3')
46+
const comparator = `${wsLarge}<${wsLarge}1.2.3${wsLarge}`
47+
t.equal(new Comparator(comparator).value, '<1.2.3')
3848
t.end()
3949
})

0 commit comments

Comments
 (0)