This module allows the server to be extended with scripts written in the
Lua programming language. The extension points (hooks) available with
More information on the Lua programming language can be found at the the Lua website.
mod_lua is still in experimental state.
Until it is declared stable, usage and behavior may change
at any time, even between stable releases of the 2.4.x series.
Be sure to check the CHANGES file before upgrading.This module holds a great deal of power over httpd, which is both a strength and a potential security risk. It is not recommended that you use this module on a server that is shared with users you do not trust, as it can be abused to change the internal workings of httpd.
The basic module loading directive is
mod_lua provides a handler named lua-script,
which can be used with an AddHandler directive:
This will cause mod_lua to handle requests for files
ending in .lua by invoking that file's
handle function.
For more flexibility, see
In the Apache HTTP Server API, the handler is a specific kind of hook
responsible for generating the response. Examples of modules that include a
handler are
mod_lua always looks to invoke a Lua function for the handler, rather than
just evaluating a script body CGI style. A handler function looks
something like this:
This handler function just prints out the uri or form encoded arguments to a plaintext page.
This means (and in fact encourages) that you can have multiple handlers (or hooks, or filters) in the same script.
The authz provider is normally called before authentication. If it needs to
know the authenticated user name (or if the user will be authenticated at
all), the provider must return apache2.AUTHZ_DENIED_NO_USER.
This will cause authentication to proceed and the authz provider to be
called a second time.
The following authz provider function takes two arguments, one ip address and one user name. It will allow access from the given ip address without authentication, or if the authenticated user matches the second argument:
The following configuration registers this function as provider
foo and configures it for URL /:
Hook functions are how modules (and Lua scripts) participate in the processing of requests. Each type of hook exposed by the server exists for a specific purposes such as mapping requests to the filesystem, performing access control, or setting mimetypes:
| Hook phase | mod_lua directive | Description |
|---|---|---|
| Quick handler | This is the first hook that will be called after a request has been mapped to a host or virtual host | |
| Translate name | This phase translates the requested URI into a filename on the
system. Modules such as |
|
| Map to storage | This phase maps files to their physical, cached or external/proxied storage. It can be used by proxy or caching modules | |
| Check Access | This phase checks whether a client has access to a resource. This phase is run before the user is authenticated, so beware. | |
| Check User ID | This phase it used to check the negotiated user ID | |
| Check Authorization | This phase authorizes a user based on the negotiated credentials, such as user ID, client certificate etc. | |
| Check Type | This phase checks the requested file and assigns a content type and a handler to it | |
| Fixups | This is the final "fix anything" phase before the content handlers are run. Any last-minute changes to the request should be made here. | |
| Content handler | fx. .lua files or through |
This is where the content is handled. Files are read, parsed, some are run, and the result is sent to the client |
| Logging | (none) | Once a request has been handled, it enters several logging phases, which logs the request in either the error or access log |
Hook functions are passed the request object as their only argument.
They can return any value, depending on the hook, but most commonly
they'll return OK, DONE, or DECLINED, which you can write in lua as
apache2.OK, apache2.DONE, or
apache2.DECLINED, or else an HTTP status code.
The request_rec is mapped in as a userdata. It has a metatable which lets you do useful things with it. For the most part it has the same fields as the request_rec struct, many of which are writeable as well as readable. (The table fields' content can be changed, but the fields themselves cannot be set to different tables.)
| Name | Lua type | Writable | Description |
|---|---|---|---|
ap_auth_type |
string | no | If an authentication check was made, this is set to the type
of authentication (f.x. basic) |
args |
string | yes | The query string arguments extracted from the request
(f.x. foo=bar&name=johnsmith) |
assbackwards |
boolean | no | Set to true if this is an HTTP/0.9 style request
(e.g. GET /foo (with no headers) ) |
canonical_filename |
string | no | The canonical filename of the request |
content_encoding |
string | no | The content encoding of the current request |
content_type |
string | yes | The content type of the current request, as determined in the
type_check phase (f.x. image/gif or text/html) |
context_prefix |
string | no | |
context_document_root |
string | no | |
document_root |
string | no | The document root of the host |
err_headers_out |
table | no | MIME header environment for the response, printed even on errors and persist across internal redirects |
filename |
string | yes | The file name that the request maps to, f.x. /www/example.com/foo.txt. This can be changed in the translate-name or map-to-storage phases of a request to allow the default handler (or script handlers) to serve a different file than what was requested. |
handler |
string | yes | The name of the handler that should serve this request, f.x.
lua-script if it is to be served by mod_lua. This is typically set by the
|
headers_in |
table | yes | MIME header environment from the request. This contains headers such as Host,
User-Agent, Referer and so on. |
headers_out |
table | yes | MIME header environment for the response. |
hostname |
string | no | The host name, as set by the Host: header or by a full URI. |
is_https |
boolean | no | Whether or not this request is done via HTTPS |
log_id |
string | no | The ID to identify request in access and error log. |
method |
string | no | The request method, f.x. GET or POST. |
notes |
table | yes | A list of notes that can be passed on from one module to another. |
path_info |
string | no | The PATH_INFO extracted from this request. |
protocol |
string | no | The protocol used, f.x. HTTP/1.1 |
proxyreq |
string | yes | Denotes whether this is a proxy request or not. This value is generally set in the post_read_request/translate_name phase of a request. |
range |
string | no | The contents of the Range: header. |
subprocess_env |
table | yes | The environment variables set for this request. |
status |
number | yes | The (current) HTTP return code for this request, f.x. 200 or 404. |
the_request |
string | no | The request string as sent by the client, f.x. GET /foo/bar HTTP/1.1. |
unparsed_uri |
string | no | The unparsed URI of the request |
uri |
string | yes | The URI after it has been parsed by httpd |
user |
string | yes | If an authentication check has been made, this is set to the name of the authenticated user. |
useragent_ip |
string | no | The IP of the user agent making the request |
The request_rec has (at least) the following methods:
A package named apache2 is available with (at least) the following contents.
(Other HTTP status codes are not yet implemented.)
Specify the base path which will be used to evaluate all relative paths within mod_lua. If not specified they will be resolved relative to the current working directory, which may not always work well for a server.
Specify the lifecycle scope of the Lua interpreter which will be used by handlers in this "Directory." The default is "once"
min and max arguments
specify the minimum and maximum number of Lua states to keep in the
pool.
Generally speaking, the thread and server scopes
execute roughly 2-3 times faster than the rest, because they don't have to
spawn new Lua states on every request (especially with the event MPM, as
even keepalive requests will use a new thread for each request). If you are
satisfied that your scripts will not have problems reusing a state, then
the thread or server scopes should be used for
maximum performance. While the thread scope will provide the
fastest responses, the server scope will use less memory, as
states are pooled, allowing f.x. 1000 threads to share only 100 Lua states,
thus using only 10% of the memory required by the thread scope.
This directive matches a uri pattern to invoke a specific handler function in a specific file. It uses PCRE regular expressions to match the uri, and supports interpolating match groups into both the file path and the function name. Be careful writing your regular expressions to avoid security issues.
This would match uri's such as /photos/show?id=9 to the file /scripts/photos.lua and invoke the handler function handle_show on the lua vm after loading that file.
This would invoke the "handle" function, which is the default if no specific function name is provided.
Add a path to lua's module search path. Follows the same conventions as lua. This just munges the package.path in the lua vms.
Add a path to lua's shared library search path. Follows the same conventions as lua. This just munges the package.cpath in the lua vms.
Specify the behavior of the in-memory code cache. The default is stat, which stats the top level script (not any included ones) each time that file is needed, and reloads it if the modified time indicates it is newer than the one it has already loaded. The other values cause it to keep the file cached forever (don't stat and replace) or to never cache the file.
In general stat or forever is good for production, and stat or never for development.
Add a hook (at APR_HOOK_MIDDLE) to the translate name phase of request processing. The hook function receives a single argument, the request_rec, and should return a status code, which is either an HTTP error code, or the constants defined in the apache2 module: apache2.OK, apache2.DECLINED, or apache2.DONE.
For those new to hooks, basically each hook will be invoked until one of them returns apache2.OK. If your hook doesn't want to do the translation it should just return apache2.DECLINED. If the request should stop processing, then return apache2.DONE.
Example:
This directive is not valid in
The optional arguments "early" or "late" control when this script runs relative to other modules.
Just like LuaHookTranslateName, but executed at the fixups phase
Like
...
The optional arguments "early" or "late" control when this script runs relative to other modules.
This directive provides a hook for the type_checker phase of the request processing. This phase is where requests are assigned a content type and a handler, and thus can be used to modify the type and handler based on input:
Invoke a lua function in the auth_checker phase of processing a request. This can be used to implement arbitrary authentication and authorization checking. A very simple example:
The optional arguments "early" or "late" control when this script runs relative to other modules.
Add your hook to the access_checker phase. An access checker hook function usually returns OK, DECLINED, or HTTP_FORBIDDEN.
The optional arguments "early" or "late" control when this script runs relative to other modules.
Not Yet Implemented
By default, if LuaHook* directives are used in overlapping Directory or Location configuration sections, the scripts defined in the more specific section are run after those defined in the more generic section (LuaInherit parent-first). You can reverse this order, or make the parent context not apply at all.
In previous 2.3.x releases, the default was effectively to ignore LuaHook* directives from parent configuration sections.
...
This directive is not valid in
After a lua function has been registered as authorization provider, it can be used
with the