Scripting with Lua
Dragonfly allows users to execute scripts written in Lua. Its interface for managing and writing scripts its compatible with the interface provided by Redis.
Dragonfly uses Lua version 5.4.
Script flags
Dragonfly provides additional flexibility with special script flags. By default, none are set.
Flags can be configured in multiple ways:
1. Inside the script source code
--!df flags=allow-undeclared-keys
-- script body below
2. As default flags
Default flags are applied to all scripts and can be provided as an argument to Dragonfly.
./dragonfly --default_lua_flags=allow-undeclared-keys
3. With SCRIPT FLAGS command
Flags can be set for a script by its SHA.
SCRIPT FLAGS sha1 allow-undeclared-keys
This command can be called even before the script is loaded. This makes it possible to patch scripts used by frameworks or side applications.
First, determine what SHAs are used by the framework/application. This can be done with the SCRIPT LIST command. Then, before starting the framework/application, call SCRIPT FLAGS sha1 [flags ...] for all required scripts with the desired flags.
Allowing undeclared keys
Dragonfly forbids accessing undeclared keys from scripts and returns the following error:
script tried accessing undeclared key
To allow accessing any keys, including undeclared, the flag allow-undeclared-keys should be used.
This option is disabled by default because unpredictability, atomicity and multithreading don't mix well. If enabled, Dragonfly has to stop all other operations when the script is running.
Sandbox restrictions
Dragonfly's Lua environment runs in a restricted sandbox. The following restrictions apply:
- The
load()function is restricted to text mode only (binary chunks are not accepted). - The built-in
rawset,setmetatable, andgetmetatablefunctions are replaced with protected versions that refuse to modify or read the metatable of the global environment (_G). (These functions can still be reassigned or shadowed inside a script; the protection guards the global environment, it does not prevent a script from overriding the names.) - The
dragonfly.randstr()helper validates its input size argument and rejects values that exceed allowed limits.