2016-03-19 15:14:35 +00:00
|
|
|
#include "first.h"
|
|
|
|
|
2018-09-16 17:56:33 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
#include "plugin.h"
|
|
|
|
|
2018-09-16 17:56:33 +00:00
|
|
|
#include "log.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "array.h"
|
2021-08-02 09:11:36 +00:00
|
|
|
#include "request.h"
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* this is a skeleton for a lighttpd plugin
|
2006-10-04 13:26:23 +00:00
|
|
|
*
|
2016-07-18 22:01:45 +00:00
|
|
|
* just replaces every occurrence of 'skeleton' by your plugin name
|
2006-10-04 13:26:23 +00:00
|
|
|
*
|
2005-02-20 14:27:00 +00:00
|
|
|
* e.g. in vim:
|
2006-10-04 13:26:23 +00:00
|
|
|
*
|
2005-02-20 14:27:00 +00:00
|
|
|
* :%s/skeleton/myhandler/
|
2006-10-04 13:26:23 +00:00
|
|
|
*
|
2005-02-20 14:27:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* plugin config for all request/connections */
|
|
|
|
|
|
|
|
typedef struct {
|
2019-10-24 06:10:24 +00:00
|
|
|
const array *match;
|
2005-02-20 14:27:00 +00:00
|
|
|
} plugin_config;
|
|
|
|
|
|
|
|
typedef struct {
|
2019-10-24 06:10:24 +00:00
|
|
|
PLUGIN_DATA;
|
|
|
|
plugin_config defaults;
|
|
|
|
plugin_config conf;
|
2005-02-20 14:27:00 +00:00
|
|
|
} plugin_data;
|
|
|
|
|
2018-09-16 17:56:33 +00:00
|
|
|
|
|
|
|
#if 0 /* (needed if module keeps state for request) */
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
typedef struct {
|
|
|
|
size_t foo;
|
|
|
|
} handler_ctx;
|
|
|
|
|
|
|
|
static handler_ctx * handler_ctx_init() {
|
2018-09-16 17:56:33 +00:00
|
|
|
handler_ctx * hctx = calloc(1, sizeof(*hctx));
|
2017-05-01 00:37:33 +00:00
|
|
|
force_assert(hctx);
|
2005-02-20 14:27:00 +00:00
|
|
|
return hctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handler_ctx_free(handler_ctx *hctx) {
|
|
|
|
free(hctx);
|
|
|
|
}
|
|
|
|
|
2018-09-16 17:56:33 +00:00
|
|
|
#endif
|
2006-10-04 13:26:23 +00:00
|
|
|
|
|
|
|
|
2018-09-16 17:56:33 +00:00
|
|
|
/* init the plugin data */
|
|
|
|
INIT_FUNC(mod_skeleton_init) {
|
2019-10-24 06:10:24 +00:00
|
|
|
return calloc(1, sizeof(plugin_data));
|
2005-02-20 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
2019-10-24 06:10:24 +00:00
|
|
|
/* handle plugin config and check values */
|
2019-10-17 05:27:52 +00:00
|
|
|
|
2019-10-24 06:10:24 +00:00
|
|
|
static void mod_skeleton_merge_config_cpv(plugin_config * const pconf, const config_plugin_value_t * const cpv) {
|
|
|
|
switch (cpv->k_id) { /* index into static config_plugin_keys_t cpk[] */
|
|
|
|
case 0: /* skeleton.array */
|
|
|
|
pconf->match = cpv->v.a;
|
|
|
|
break;
|
|
|
|
default:/* should not happen */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2019-10-24 06:10:24 +00:00
|
|
|
static void mod_skeleton_merge_config(plugin_config * const pconf, const config_plugin_value_t *cpv) {
|
|
|
|
do {
|
|
|
|
mod_skeleton_merge_config_cpv(pconf, cpv);
|
|
|
|
} while ((++cpv)->k_id != -1);
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2020-01-13 02:51:12 +00:00
|
|
|
static void mod_skeleton_patch_config(request_st * const r, plugin_data * const p) {
|
2020-01-11 16:07:43 +00:00
|
|
|
p->conf = p->defaults; /* copy small struct instead of memcpy() */
|
|
|
|
/*memcpy(&p->conf, &p->defaults, sizeof(plugin_config));*/
|
2019-10-24 06:10:24 +00:00
|
|
|
for (int i = 1, used = p->nconfig; i < used; ++i) {
|
2020-01-13 02:51:12 +00:00
|
|
|
if (config_check_cond(r, (uint32_t)p->cvlist[i].k_id))
|
2019-10-24 06:10:24 +00:00
|
|
|
mod_skeleton_merge_config(&p->conf, p->cvlist+p->cvlist[i].v.u2[0]);
|
|
|
|
}
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2019-10-24 06:10:24 +00:00
|
|
|
SETDEFAULTS_FUNC(mod_skeleton_set_defaults) {
|
|
|
|
static const config_plugin_keys_t cpk[] = {
|
|
|
|
{ CONST_STR_LEN("skeleton.array"),
|
2019-12-08 00:15:55 +00:00
|
|
|
T_CONFIG_ARRAY_VLIST,
|
2019-10-24 06:10:24 +00:00
|
|
|
T_CONFIG_SCOPE_CONNECTION }
|
|
|
|
,{ NULL, 0,
|
|
|
|
T_CONFIG_UNSET,
|
|
|
|
T_CONFIG_SCOPE_UNSET }
|
|
|
|
};
|
|
|
|
|
|
|
|
plugin_data * const p = p_d;
|
|
|
|
if (!config_plugin_values_init(srv, p, cpk, "mod_skeleton"))
|
|
|
|
return HANDLER_ERROR;
|
|
|
|
|
|
|
|
/* initialize p->defaults from global config context */
|
|
|
|
if (p->nconfig > 0 && p->cvlist->v.u2[1]) {
|
|
|
|
const config_plugin_value_t *cpv = p->cvlist + p->cvlist->v.u2[0];
|
|
|
|
if (-1 != cpv->k_id)
|
|
|
|
mod_skeleton_merge_config(&p->defaults, cpv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return HANDLER_GO_ON;
|
2005-02-20 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
URIHANDLER_FUNC(mod_skeleton_uri_handler) {
|
2020-01-13 02:51:12 +00:00
|
|
|
plugin_data * const p = p_d;
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2020-01-13 02:51:12 +00:00
|
|
|
/* determine whether or not module participates in request */
|
2008-08-01 16:13:34 +00:00
|
|
|
|
2020-01-13 02:51:12 +00:00
|
|
|
if (NULL != r->handler_module) return HANDLER_GO_ON;
|
[multiple] reduce redundant NULL buffer checks
This commit is a large set of code changes and results in removal of
hundreds, perhaps thousands, of CPU instructions, a portion of which
are on hot code paths.
Most (buffer *) used by lighttpd are not NULL, especially since buffers
were inlined into numerous larger structs such as request_st and chunk.
In the small number of instances where that is not the case, a NULL
check is often performed earlier in a function where that buffer is
later used with a buffer_* func. In the handful of cases that remained,
a NULL check was added, e.g. with r->http_host and r->conf.server_tag.
- check for empty strings at config time and set value to NULL if blank
string will be ignored at runtime; at runtime, simple pointer check
for NULL can be used to check for a value that has been set and is not
blank ("")
- use buffer_is_blank() instead of buffer_string_is_empty(),
and use buffer_is_unset() instead of buffer_is_empty(),
where buffer is known not to be NULL so that NULL check can be skipped
- use buffer_clen() instead of buffer_string_length() when buffer is
known not to be NULL (to avoid NULL check at runtime)
- use buffer_truncate() instead of buffer_string_set_length() to
truncate string, and use buffer_extend() to extend
Examples where buffer known not to be NULL:
- cpv->v.b from config_plugin_values_init is not NULL if T_CONFIG_BOOL
(though we might set it to NULL if buffer_is_blank(cpv->v.b))
- address of buffer is arg (&foo)
(compiler optimizer detects this in most, but not all, cases)
- buffer is checked for NULL earlier in func
- buffer is accessed in same scope without a NULL check (e.g. b->ptr)
internal behavior change:
callers must not pass a NULL buffer to some funcs.
- buffer_init_buffer() requires non-null args
- buffer_copy_buffer() requires non-null args
- buffer_append_string_buffer() requires non-null args
- buffer_string_space() requires non-null arg
2021-06-09 02:57:36 +00:00
|
|
|
if (buffer_is_blank(&r->uri.path)) return HANDLER_GO_ON;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2020-01-13 02:51:12 +00:00
|
|
|
/* get module config for request */
|
|
|
|
mod_skeleton_patch_config(r, p);
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2020-01-13 02:51:12 +00:00
|
|
|
if (NULL == p->conf.match
|
|
|
|
|| NULL == array_match_value_suffix(p->conf.match, &r->uri.path)) {
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2020-01-13 02:51:12 +00:00
|
|
|
/* module participates in request; business logic here */
|
2018-09-16 17:56:33 +00:00
|
|
|
|
2020-01-13 02:51:12 +00:00
|
|
|
r->http_status = 403; /* example: reject request with 403 Forbidden */
|
|
|
|
return HANDLER_FINISHED;
|
2005-02-20 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this function is called at dlopen() time and inits the callbacks */
|
2018-09-16 17:56:33 +00:00
|
|
|
int mod_skeleton_plugin_init(plugin *p);
|
2005-02-20 14:27:00 +00:00
|
|
|
int mod_skeleton_plugin_init(plugin *p) {
|
|
|
|
p->version = LIGHTTPD_VERSION_ID;
|
2019-10-19 04:30:54 +00:00
|
|
|
p->name = "skeleton";
|
2005-02-20 14:27:00 +00:00
|
|
|
p->init = mod_skeleton_init;
|
2018-09-16 17:56:33 +00:00
|
|
|
p->set_defaults= mod_skeleton_set_defaults;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2018-09-16 17:56:33 +00:00
|
|
|
p->handle_uri_clean = mod_skeleton_uri_handler;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|