Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Implement CEL runtime cost budget for expression evaluation #442

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

Rudra-Sankha-Sinhamahapatra
Copy link
Contributor

@Rudra-Sankha-Sinhamahapatra Rudra-Sankha-Sinhamahapatra commented Mar 22, 2025

PR Description

Fixes #191

Feature Description

This PR implements cost budgeting for CEL expression evaluation to prevent resource exhaustion from complex expressions. The controller now enforces both per-call limits for individual expressions and a total runtime budget for the entire reconciliation cycle.

Key features implemented:

  • Per-call cost limit (1,000,000 units, ~0.1 second of execution time)
  • Total runtime budget (1,000 units for all expressions in a reconciliation cycle)
  • Budget exceeded error handling and proper status reporting

Implementation Details

  • Added cost tracking constants and helper functions in pkg/cel/cost.go
  • Implemented cost accumulation in ResourceGraphDefinitionRuntime
  • Added error handling for budget exceeded cases in controller
  • Updated expression evaluation to use cost tracking options

Testing

  • Added tests for CEL cost budget enforcement
  • Verified error handling when budget is exceeded
  • Added test cases with both simple and complex expressions

pkg/cel Tests

Screenshot 2025-03-22 at 5 44 34 PM

pkg/graph Tests

Screenshot 2025-03-22 at 5 44 51 PM

pkg/runtime Tests

Screenshot 2025-03-22 at 5 45 02 PM

All tests

Screenshot 2025-03-22 at 5 49 23 PM

Example Error

When the CEL budget is exceeded, the controller will report an error and the instance status will reflect:

apiVersion: kro.run/v1alpha1
kind: ResourceGroup
metadata:
  name: my-application
status:
  conditions:
    - type: Ready
      status: "False"
      reason: CELBudgetExceeded
      message: "Total CEL cost exceeded budget of 1000"

This prevents potential DoS attacks from overly complex expressions and ensures the controller remains responsive.

cc: @a-hilaly

Added cost tracking and limiting for CEL expressions to prevent resource
exhaustion from complex expressions. Implemented both per-call limits and
a total runtime budget for ResourceGraphDefinition reconciliation.

- Added cost tracking constants and helper functions in pkg/cel/cost.go
- Implemented cost tracking in runtime.evaluateExpression
- Added proper error handling in controller_reconcile.go for budget exceeded errors
- Updated dryRunExpression to use cost tracking options

Fixes kro-run#191
@Rudra-Sankha-Sinhamahapatra Rudra-Sankha-Sinhamahapatra changed the title Implement CEL runtime cost budget for expression evaluation feat: Implement CEL runtime cost budget for expression evaluation Mar 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

implement CEL runtime cost budget in controller
1 participant