Compare commits

...
Author SHA1 Message Date
Yang JunandCursor bcc4d5564f fix(security): allow partial recursion when renderLimit is finite
Only reject render/include cycles when renderLimit is unlimited (default Infinity). With a finite time budget, recursion is bounded by renderLimit checks in renderTemplates.

Co-authored-by: Cursor <[email protected]>
2026-06-19 23:44:01 +08:00
Yang JunandCursor a7efcc8f96 fix(security): reject render/include partial recursion
Detect cyclic partial rendering via a shared partialStack register (same pattern as CVE-2026-41311 block tag fix). Self-referential or circular {% render %} and {% include %} now throw immediately instead of hanging or OOM.

Co-authored-by: Cursor <[email protected]>
2026-06-14 22:56:36 +08:00
7 changed files with 136 additions and 28 deletions
+3 -1
View File
@@ -103,7 +103,7 @@ export class Context {
return this.scopes[0]
}
public spawn (scope = {}) {
return new Context(scope, this.opts, {
const ctx = new Context(scope, this.opts, {
sync: this.sync,
globals: this.globals,
strictVariables: this.strictVariables,
@@ -112,6 +112,8 @@ export class Context {
renderLimit: this.renderLimit,
memoryLimit: this.memoryLimit
})
ctx.setRegister('partialStack', this.getRegister('partialStack', [] as string[]))
return ctx
}
private findScope (key: string | number) {
for (let i = this.scopes.length - 1; i >= 0; i--) {
+15 -10
View File
@@ -3,7 +3,7 @@ import { BlockMode, createScope, Scope } from '../context'
import { Parser } from '../parser'
import { Argument, Arguments, PartialScope } from '../template'
import { isString, isValueToken } from '../util'
import { parseFilePath, renderFilePath, ParsedFileName } from './render'
import { parseFilePath, renderFilePath, ParsedFileName, pushPartialStack, popPartialStack } from './render'
export default class extends Tag {
private file: ParsedFileName
@@ -33,16 +33,21 @@ export default class extends Tag {
const filepath = (yield renderFilePath(this.file, ctx, liquid)) as string
assert(filepath, () => `illegal file path "${filepath}"`)
pushPartialStack(ctx, filepath, 'include')
const saved = ctx.saveRegister('blocks', 'blockMode')
ctx.setRegister('blocks', {})
ctx.setRegister('blockMode', BlockMode.OUTPUT)
const scope = createScope((yield hash.render(ctx)) as Scope)
if (withVar) scope[filepath] = yield evalToken(withVar, ctx)
const templates = (yield liquid._parsePartialFile(filepath, ctx.sync, this.currentFile)) as Template[]
ctx.push(ctx.opts.jekyllInclude ? createScope({ include: scope }) : scope)
yield renderer.renderTemplates(templates, ctx, emitter)
ctx.pop()
ctx.restoreRegister(saved)
try {
ctx.setRegister('blocks', {})
ctx.setRegister('blockMode', BlockMode.OUTPUT)
const scope = createScope((yield hash.render(ctx)) as Scope)
if (withVar) scope[filepath] = yield evalToken(withVar, ctx)
const templates = (yield liquid._parsePartialFile(filepath, ctx.sync, this.currentFile)) as Template[]
ctx.push(ctx.opts.jekyllInclude ? createScope({ include: scope }) : scope)
yield renderer.renderTemplates(templates, ctx, emitter)
ctx.pop()
} finally {
ctx.restoreRegister(saved)
popPartialStack(ctx)
}
}
public * children (partials: boolean, sync: boolean): Generator<unknown, Template[]> {
+35 -17
View File
@@ -59,27 +59,32 @@ export default class extends Tag {
const filepath = (yield renderFilePath(this.file, ctx, liquid)) as string
assert(filepath, () => `illegal file path "${filepath}"`)
const childCtx = ctx.spawn()
const scope = childCtx.bottom()
__assign(scope, yield hash.render(ctx))
if (this.with) {
const { value, alias } = this.with
scope[alias || filepath] = yield evalToken(value, ctx)
}
pushPartialStack(ctx, filepath, 'render')
try {
const childCtx = ctx.spawn()
const scope = childCtx.bottom()
__assign(scope, yield hash.render(ctx))
if (this.with) {
const { value, alias } = this.with
scope[alias || filepath] = yield evalToken(value, ctx)
}
if (this.forBinding) {
const { value, alias } = this.forBinding
const collection = toEnumerable(yield evalToken(value, ctx))
scope['forloop'] = new ForloopDrop(collection.length, value.getText(), alias as string)
for (const item of collection) {
scope[alias as string] = item
if (this.forBinding) {
const { value, alias } = this.forBinding
const collection = toEnumerable(yield evalToken(value, ctx))
scope['forloop'] = new ForloopDrop(collection.length, value.getText(), alias as string)
for (const item of collection) {
scope[alias as string] = item
const templates = (yield liquid._parsePartialFile(filepath, childCtx.sync, this.currentFile)) as Template[]
yield liquid.renderer.renderTemplates(templates, childCtx, emitter)
scope['forloop'].next()
}
} else {
const templates = (yield liquid._parsePartialFile(filepath, childCtx.sync, this.currentFile)) as Template[]
yield liquid.renderer.renderTemplates(templates, childCtx, emitter)
scope['forloop'].next()
}
} else {
const templates = (yield liquid._parsePartialFile(filepath, childCtx.sync, this.currentFile)) as Template[]
yield liquid.renderer.renderTemplates(templates, childCtx, emitter)
} finally {
popPartialStack(ctx)
}
}
@@ -173,3 +178,16 @@ export function * renderFilePath (file: ParsedFileName, ctx: Context, liquid: Li
if (Array.isArray(file)) return liquid.renderer.renderTemplates(file, ctx)
return yield evalToken(file, ctx)
}
export function pushPartialStack (ctx: Context, filepath: string, tag: 'render' | 'include') {
const stack: string[] = ctx.getRegister('partialStack', [])
if (ctx.renderLimit.isUnlimited() && stack.includes(filepath)) {
throw new Error(`${tag} tag cannot be nested`)
}
stack.push(filepath)
}
export function popPartialStack (ctx: Context) {
const stack: string[] = ctx.getRegister('partialStack', [])
stack.pop()
}
+3
View File
@@ -19,4 +19,7 @@ export class Limiter {
assert(+count <= this.limit, this.message)
}
}
isUnlimited () {
return !Number.isFinite(this.limit)
}
}
+21
View File
@@ -117,4 +117,25 @@ describe('.parseAndRender()', function () {
await expect(liquid.renderFile('template')).rejects.toThrow(/block tag cannot be nested/)
})
})
describe('render/include: self-referential partial regression', function () {
it('should reject self-referential {% render %} via in-memory templates (no hang / OOM)', async function () {
const liquid = new Liquid({ templates: { self: '{% render "self" %}' } })
await expect(liquid.parseAndRender('{% render "self" %}')).rejects.toThrow(/render tag cannot be nested/)
})
it('should reject self-referential {% include %} (no hang / OOM)', async function () {
let root: string
root = mkdtempSync(join(tmpdir(), 'liquid-e2e-include-nested-'))
try {
writeFileSync(join(root, 'self.html'), 'A{% include "self.html" %}B')
const liquid = new Liquid({ root, extname: '.html' })
await expect(liquid.renderFile('self')).rejects.toThrow(/include tag cannot be nested/)
} finally {
rmSync(root, { recursive: true, force: true })
}
})
it('should allow self-referential {% render %} when renderLimit is finite', async function () {
const liquid = new Liquid({ templates: { self: '{% render "self" %}' }, renderLimit: 0.01 })
await expect(liquid.parseAndRender('{% render "self" %}')).rejects.toThrow(/template render limit exceeded/)
})
})
})
+32
View File
@@ -296,4 +296,36 @@ describe('tags/include', function () {
return expect(html).toBe('FOO-')
})
})
describe('recursion', function () {
it('should reject self-referential {% include %} (no OOM / hang)', function () {
mock({
'/self.html': 'A{% include "self.html" %}B'
})
return expect(liquid.renderFile('/self.html')).rejects.toThrow(/include tag cannot be nested/)
})
it('should reject indirect {% include %} cycle (no OOM / hang)', function () {
mock({
'/a.html': '{% include "b.html" %}',
'/b.html': '{% include "a.html" %}'
})
return expect(liquid.renderFile('/a.html')).rejects.toThrow(/include tag cannot be nested/)
})
it('should allow self-referential {% include %} when renderLimit is finite', function () {
mock({
'/self.html': 'A{% include "self.html" %}B'
})
const limited = new Liquid({ root: '/', renderLimit: 0.01 })
return expect(limited.renderFile('/self.html')).rejects.toThrow(/template render limit exceeded/)
})
it('should allow legitimate nested {% include %} chain', async function () {
mock({
'/a.html': 'A{% include "b.html" %}',
'/b.html': 'B{% include "c.html" %}',
'/c.html': 'C'
})
const html = await liquid.renderFile('/a.html')
expect(html).toBe('ABC')
})
})
})
+27
View File
@@ -394,4 +394,31 @@ describe('tags/render', function () {
expect(html).toBe('Xchild with redY')
})
})
describe('recursion', function () {
it('should reject self-referential {% render %} via in-memory templates (no OOM / hang)', async function () {
const liquid = new Liquid({ templates: { self: '{% render "self" %}' } })
await expect(liquid.parseAndRender('{% render "self" %}')).rejects.toThrow(/render tag cannot be nested/)
})
it('should reject indirect {% render %} cycle (no OOM / hang)', async function () {
mock({
'/a.html': '{% render "b.html" %}',
'/b.html': '{% render "a.html" %}'
})
await expect(liquid.renderFile('/a.html')).rejects.toThrow(/render tag cannot be nested/)
})
it('should allow self-referential {% render %} when renderLimit is finite', async function () {
const liquid = new Liquid({ templates: { self: '{% render "self" %}' }, renderLimit: 0.01 })
await expect(liquid.parseAndRender('{% render "self" %}')).rejects.toThrow(/template render limit exceeded/)
})
it('should allow legitimate nested {% render %} chain', async function () {
mock({
'/a.html': 'A{% render "b.html" %}',
'/b.html': 'B{% render "c.html" %}',
'/c.html': 'C'
})
const html = await liquid.renderFile('/a.html')
expect(html).toBe('ABC')
})
})
})