Spaces:
Paused
Paused
File size: 11,770 Bytes
2529305 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | """
Script executor module for PyRunner.
This module handles the execution of Python scripts in isolated environments.
It is designed to be called from django-q2 async tasks.
"""
import json
import logging
import os
import subprocess
import tempfile
import traceback
from pathlib import Path
from django.conf import settings
from django.utils import timezone
from core.models import Run, Secret
from core.services import EncryptionService
logger = logging.getLogger(__name__)
# Maximum output size (1MB) to prevent database bloat
MAX_OUTPUT_BYTES = 1_000_000
def _get_secrets_env() -> dict:
"""
Get all secrets as environment variables.
Returns:
Dict of {key: decrypted_value} for all secrets
"""
secrets_env = {}
# Only try to get secrets if encryption is configured
if not EncryptionService.is_configured():
logger.debug("Encryption not configured - secrets will not be injected")
return secrets_env
try:
for secret in Secret.objects.all():
try:
secrets_env[secret.key] = secret.get_decrypted_value()
except Exception as e:
logger.error(f"Failed to decrypt secret {secret.key}: {e}")
except Exception as e:
logger.error(f"Failed to load secrets: {e}")
return secrets_env
def _build_script_environment(webhook_data: dict | None = None) -> dict:
"""
Build the environment dict for script execution.
Combines system environment with secrets, webhook data, and DataStore access.
Secrets override any same-named system variables.
Webhook data is added with WEBHOOK_ prefix.
Args:
webhook_data: Optional webhook data from HTTP request
Returns:
Environment dict to pass to subprocess
"""
# Start with system environment
env = os.environ.copy()
# Add secrets (overriding any existing vars with same name)
secrets = _get_secrets_env()
env.update(secrets)
# Add webhook data if present
if webhook_data:
env["WEBHOOK_METHOD"] = webhook_data.get("method", "")
env["WEBHOOK_QUERY"] = json.dumps(webhook_data.get("query", {}))
env["WEBHOOK_CONTENT_TYPE"] = webhook_data.get("content_type", "")
if "body" in webhook_data:
env["WEBHOOK_BODY"] = webhook_data["body"]
if "body_json" in webhook_data:
env["WEBHOOK_BODY_JSON"] = json.dumps(webhook_data["body_json"])
# Add DataStore support
# Set the database path for the pyrunner_datastore module
env["PYRUNNER_DB_PATH"] = str(settings.DATABASES["default"]["NAME"])
# Add script_helpers to PYTHONPATH so scripts can import pyrunner_datastore
helpers_path = str(Path(settings.BASE_DIR) / "core" / "script_helpers")
existing_pythonpath = env.get("PYTHONPATH", "")
if existing_pythonpath:
env["PYTHONPATH"] = f"{helpers_path}{os.pathsep}{existing_pythonpath}"
else:
env["PYTHONPATH"] = helpers_path
return env
def _mask_secrets_in_output(output: str, secrets: dict) -> str:
"""
Mask secret values in output to prevent accidental exposure.
Args:
output: The script output
secrets: Dict of {key: value} secrets
Returns:
Output with secret values replaced with [KEY:MASKED]
"""
if not output or not secrets:
return output
masked = output
for key, value in secrets.items():
if value and len(value) >= 4: # Only mask non-trivial values
masked = masked.replace(value, f"[{key}:MASKED]")
return masked
class ExecutorError(Exception):
"""Base exception for executor errors."""
pass
class EnvironmentNotFoundError(ExecutorError):
"""Raised when the environment directory does not exist."""
pass
class PythonNotFoundError(ExecutorError):
"""Raised when the Python executable is not found."""
pass
def _truncate_output(output: str, max_bytes: int = MAX_OUTPUT_BYTES) -> str:
"""
Truncate output if it exceeds max_bytes.
Args:
output: The output string to potentially truncate
max_bytes: Maximum size in bytes (default 1MB)
Returns:
The original or truncated output with notice
"""
if not output:
return output
encoded = output.encode("utf-8", errors="replace")
if len(encoded) <= max_bytes:
return output
# Truncate and decode back, keeping a buffer for the notice
notice = "\n\n[OUTPUT TRUNCATED - exceeded maximum size]"
truncated = encoded[: max_bytes - len(notice.encode())].decode(
"utf-8", errors="replace"
)
return truncated + notice
def _validate_environment(run: Run) -> str:
"""
Validate the environment and return the Python executable path.
Args:
run: The Run instance containing the script and environment
Returns:
The absolute path to the Python executable
Raises:
EnvironmentNotFoundError: If environment directory doesn't exist
PythonNotFoundError: If Python executable doesn't exist
"""
environment = run.script.environment
if not environment.exists():
raise EnvironmentNotFoundError(
f"Environment directory not found: {environment.get_full_path()}"
)
python_path = environment.get_python_executable()
if not os.path.isfile(python_path):
raise PythonNotFoundError(f"Python executable not found: {python_path}")
return python_path
def execute_run(run: Run, webhook_data: dict | None = None) -> None:
"""
Execute a script run and update the Run record with results.
This function is designed to be called from a django-q2 async task.
It handles all aspects of script execution including:
- Writing script code to a temporary file
- Running the script with the appropriate Python executable
- Capturing stdout/stderr
- Handling timeouts
- Updating the Run record with results
Args:
run: The Run model instance to execute
webhook_data: Optional webhook data to inject as environment variables
Note:
This function always saves the Run state, even on errors.
The Run status will be updated to one of:
SUCCESS, FAILED, TIMEOUT, or remain FAILED on errors.
"""
script_file_path = None
try:
# Phase 1: Pre-execution validation
if run.status != Run.Status.PENDING:
logger.warning(
f"Run {run.id} is not in PENDING status (current: {run.status}). "
"Skipping execution."
)
return
# Update to RUNNING status
run.status = Run.Status.RUNNING
run.started_at = timezone.now()
run.save(update_fields=["status", "started_at"])
# Validate environment
try:
python_path = _validate_environment(run)
except EnvironmentNotFoundError as e:
run.status = Run.Status.FAILED
run.stderr = str(e)
run.ended_at = timezone.now()
run.save()
logger.error(f"Run {run.id} failed: {e}")
return
except PythonNotFoundError as e:
run.status = Run.Status.FAILED
run.stderr = str(e)
run.ended_at = timezone.now()
run.save()
logger.error(f"Run {run.id} failed: {e}")
return
# Ensure working directory exists
workdir = Path(settings.SCRIPTS_WORKDIR)
workdir.mkdir(parents=True, exist_ok=True)
# Phase 2: Create temporary script file
# Use delete=False for Windows compatibility (must close before subprocess reads)
with tempfile.NamedTemporaryFile(
mode="w",
suffix=".py",
delete=False,
encoding="utf-8",
dir=str(workdir),
) as script_file:
# Use code_snapshot if available (preserves code at queue time)
code = run.code_snapshot if run.code_snapshot else run.script.code
script_file.write(code)
script_file_path = script_file.name
# Phase 3: Execute script
try:
# Build subprocess arguments
cmd = [python_path, script_file_path]
# Build environment with secrets and webhook data injected
script_env = _build_script_environment(webhook_data)
secrets = _get_secrets_env()
# Subprocess kwargs
kwargs = {
"capture_output": True,
"timeout": run.script.timeout_seconds,
"cwd": str(workdir),
"text": True,
"encoding": "utf-8",
"errors": "replace",
"env": script_env,
}
# Windows-specific: prevent console window popup
if os.name == "nt":
kwargs["creationflags"] = subprocess.CREATE_NO_WINDOW
result = subprocess.run(cmd, **kwargs)
# Process results - mask secrets in output
run.stdout = _truncate_output(_mask_secrets_in_output(result.stdout, secrets))
run.stderr = _truncate_output(_mask_secrets_in_output(result.stderr, secrets))
run.exit_code = result.returncode
run.status = (
Run.Status.SUCCESS if result.returncode == 0 else Run.Status.FAILED
)
except subprocess.TimeoutExpired as e:
# Handle timeout - process is automatically killed
run.status = Run.Status.TIMEOUT
# TimeoutExpired provides stdout/stderr as bytes even with text=True
# Decode them to strings for consistent processing
stdout_raw = ""
if e.stdout:
stdout_raw = e.stdout.decode("utf-8", errors="replace") if isinstance(e.stdout, bytes) else e.stdout
stderr_raw = ""
if e.stderr:
stderr_raw = e.stderr.decode("utf-8", errors="replace") if isinstance(e.stderr, bytes) else e.stderr
run.stdout = _truncate_output(_mask_secrets_in_output(stdout_raw, secrets))
run.stderr = _truncate_output(_mask_secrets_in_output(stderr_raw, secrets))
if run.stderr:
run.stderr += "\n\n[TIMEOUT: Script exceeded maximum execution time]"
else:
run.stderr = (
f"[TIMEOUT: Script exceeded {run.script.timeout_seconds} seconds]"
)
run.exit_code = -1
logger.warning(f"Run {run.id} timed out after {run.script.timeout_seconds}s")
except subprocess.SubprocessError as e:
# Handle other subprocess errors
run.status = Run.Status.FAILED
run.stderr = f"Subprocess error: {str(e)}"
run.exit_code = -1
logger.error(f"Run {run.id} subprocess error: {e}")
except Exception as e:
# Catch-all for unexpected errors
run.status = Run.Status.FAILED
run.stderr = f"Unexpected executor error: {str(e)}\n\n{traceback.format_exc()}"
run.exit_code = -1
logger.exception(f"Run {run.id} unexpected error")
finally:
# Phase 4: Cleanup and save
# Always set end time if not already set
if not run.ended_at:
run.ended_at = timezone.now()
# Always save the run state
run.save()
# Cleanup temporary file
if script_file_path is not None:
try:
os.unlink(script_file_path)
except OSError as e:
logger.warning(f"Failed to delete temp script file: {e}")
logger.info(
f"Run {run.id} completed with status {run.status} "
f"(exit_code={run.exit_code})"
)
|