Script Sandbox

From OpenSimulator

Revision as of 17:16, 21 May 2009 by Ideia Boa (Talk | contribs)

Jump to: navigation, search


Scripts that are executed in an object within a Sim must meet certain criteria to ensure that stability and security of the Sim are maintained. In a successful implementation, a Sim would allow for the quasi-simultaneous execution of large scores (hundreds, thousands) of scripts. Each script runs in a limited, controlled environment.

Stability

  • A script does not exceed a certain share of resources granted to it. Resources to be regulated are CPU time, memory and communication channels. To allow for a fair sharing of CPU time, pre-emptive multitasking (interrupting a script after a certain amount of time to allocate the CPU to another script) or built-in delays (like in SL) are inevitable.
  • A script does not create an excessive amount of child scripts, which would spam the ScriptEngine.
  • A script does not create errors that interrupt the Sim (meaning that the ScriptEngine requires extensive error-checks and error-handling routines).

Security

  • A script runs in a Sandbox environment and has not access to outside resources beyond the ones granted by the Sandbox environment (With the translation of LSL and OSL scripts into C# and even more with the option to run native C# as a script, hacking becomes a serious issue).
Personal tools
General
About This Wiki