|
|
|
|
|
|
|
#include <lighttpd/base.h>
|
|
|
|
#include <lighttpd/plugin_core.h>
|
|
|
|
#include <lighttpd/profiler.h>
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
static action* core_list(server *srv, plugin* p, value *val) {
|
|
|
|
action *a;
|
|
|
|
guint i;
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (!val) {
|
|
|
|
ERROR(srv, "%s", "need parameter");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val->type == VALUE_ACTION) {
|
|
|
|
a = val->data.val_action.action;
|
|
|
|
action_acquire(a);
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val->type != VALUE_LIST) {
|
|
|
|
ERROR(srv, "expected list, got %s", value_type_string(val->type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
a = action_new_list();
|
|
|
|
for (i = 0; i < val->data.list->len; i++) {
|
|
|
|
value *oa = g_array_index(val->data.list, value*, i);
|
|
|
|
if (oa->type != VALUE_ACTION) {
|
|
|
|
ERROR(srv, "expected action at entry %u of list, got %s", i, value_type_string(oa->type));
|
|
|
|
action_release(srv, a);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
assert(srv == oa->data.val_action.srv);
|
|
|
|
action_acquire(oa->data.val_action.action);
|
|
|
|
g_array_append_val(a->data.list, oa->data.val_action.action);
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static action* core_when(server *srv, plugin* p, value *val) {
|
|
|
|
value *val_cond, *val_act, *val_act_else;
|
|
|
|
action *a, *act = NULL, *act_else = NULL;
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (!val) {
|
|
|
|
ERROR(srv, "%s", "need parameter");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (val->type != VALUE_LIST) {
|
|
|
|
ERROR(srv, "expected list, got %s", value_type_string(val->type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (val->data.list->len == 2) {
|
|
|
|
val_act_else = NULL;
|
|
|
|
act_else = NULL;
|
|
|
|
} else if (val->data.list->len == 3) {
|
|
|
|
val_act_else = g_array_index(val->data.list, value*, 2);
|
|
|
|
} else {
|
|
|
|
ERROR(srv, "expected list with length 2 or 3, has length %u", val->data.list->len);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
val_cond = g_array_index(val->data.list, value*, 0);
|
|
|
|
val_act = g_array_index(val->data.list, value*, 1);
|
|
|
|
|
|
|
|
if (val_cond->type != VALUE_CONDITION) {
|
|
|
|
ERROR(srv, "expected condition as first parameter, got %s", value_type_string(val_cond->type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (val_act->type == VALUE_NONE) {
|
|
|
|
act = NULL;
|
|
|
|
} else if (val_act->type == VALUE_ACTION) {
|
|
|
|
act = val_act->data.val_action.action;
|
|
|
|
} else {
|
|
|
|
ERROR(srv, "expected action as second parameter, got %s", value_type_string(val_act->type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (val_act_else) {
|
|
|
|
if (val_act_else->type == VALUE_NONE) {
|
|
|
|
act_else = NULL;
|
|
|
|
} else if (val_act_else->type == VALUE_ACTION) {
|
|
|
|
act_else = val_act_else->data.val_action.action;
|
|
|
|
} else {
|
|
|
|
ERROR(srv, "expected action as third parameter, got %s", value_type_string(val_act_else->type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
condition_acquire(val_cond->data.val_cond.cond);
|
|
|
|
if (act) action_acquire(act);
|
|
|
|
if (act_else) action_acquire(act_else);
|
|
|
|
a = action_new_condition(val_cond->data.val_cond.cond, act, act_else);
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static action* core_set(server *srv, plugin* p, value *val) {
|
|
|
|
value *val_val, *val_name;
|
|
|
|
action *a;
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (!val) {
|
|
|
|
ERROR(srv, "%s", "need parameter");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (val->type != VALUE_LIST) {
|
|
|
|
ERROR(srv, "expected list, got %s", value_type_string(val->type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (val->data.list->len != 2) {
|
|
|
|
ERROR(srv, "expected list with length 2, has length %u", val->data.list->len);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
val_name = g_array_index(val->data.list, value*, 0);
|
|
|
|
val_val = g_array_index(val->data.list, value*, 1);
|
|
|
|
if (val_name->type != VALUE_STRING) {
|
|
|
|
ERROR(srv, "expected string as first parameter, got %s", value_type_string(val_name->type));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
a = option_action(srv, val_name->data.string->str, val_val);
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean core_setup_set(server *srv, plugin* p, value *val) {
|
|
|
|
value *val_val, *val_name;
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (!val) {
|
|
|
|
ERROR(srv, "%s", "need parameter");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (val->type != VALUE_LIST) {
|
|
|
|
ERROR(srv, "expected list, got %s", value_type_string(val->type));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (val->data.list->len != 2) {
|
|
|
|
ERROR(srv, "expected list with length 2, has length %u", val->data.list->len);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
val_name = g_array_index(val->data.list, value*, 0);
|
|
|
|
val_val = g_array_index(val->data.list, value*, 1);
|
|
|
|
if (val_name->type != VALUE_STRING) {
|
|
|
|
ERROR(srv, "expected string as first parameter, got %s", value_type_string(val_name->type));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return plugin_set_default_option(srv, val_name->data.string->str, val_val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static handler_t core_handle_docroot(vrequest *vr, gpointer param, gpointer *context) {
|
|
|
|
UNUSED(context);
|
|
|
|
|
|
|
|
g_string_truncate(vr->physical.doc_root, 0);
|
|
|
|
g_string_append_len(vr->physical.doc_root, GSTR_LEN((GString*) param));
|
|
|
|
/* reset stat info because path has changed */
|
|
|
|
vr->physical.have_stat = FALSE;
|
|
|
|
vr->physical.have_errno = FALSE;
|
|
|
|
|
|
|
|
VR_DEBUG(vr, "docroot: %s", vr->physical.doc_root->str);
|
|
|
|
|
|
|
|
/* build physical path: docroot + uri.path */
|
|
|
|
g_string_truncate(vr->physical.path, 0);
|
|
|
|
g_string_append_len(vr->physical.path, GSTR_LEN(vr->physical.doc_root));
|
|
|
|
g_string_append_len(vr->physical.path, GSTR_LEN(vr->request.uri.path));
|
|
|
|
|
|
|
|
VR_DEBUG(vr, "physical path: %s", vr->physical.path->str);
|
|
|
|
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void core_docroot_free(server *srv, gpointer param) {
|
|
|
|
UNUSED(srv);
|
|
|
|
g_string_free(param, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static action* core_docroot(server *srv, plugin* p, value *val) {
|
|
|
|
UNUSED(p);
|
|
|
|
if (!val || val->type != VALUE_STRING) {
|
|
|
|
ERROR(srv, "%s", "docroot action expects a string parameter");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return action_new_function(core_handle_docroot, NULL, core_docroot_free, value_extract(val).string);
|
|
|
|
}
|
|
|
|
|
|
|
|
static handler_t core_handle_static(vrequest *vr, gpointer param, gpointer *context) {
|
|
|
|
int fd;
|
|
|
|
stat_cache_entry *sce;
|
|
|
|
|
|
|
|
UNUSED(param);
|
|
|
|
UNUSED(context);
|
|
|
|
|
|
|
|
if (!vr->stat_cache_entry) {
|
|
|
|
if (vr->physical.path->len == 0) return HANDLER_GO_ON;
|
|
|
|
|
|
|
|
if (!vrequest_handle_direct(vr)) return HANDLER_GO_ON;
|
|
|
|
}
|
|
|
|
|
|
|
|
sce = stat_cache_get(vr, vr->physical.path);
|
|
|
|
if (!sce)
|
|
|
|
return HANDLER_WAIT_FOR_EVENT;
|
|
|
|
|
|
|
|
VR_DEBUG(vr, "serving static file: %s", vr->physical.path->str);
|
|
|
|
|
|
|
|
if (sce->data.failed) {
|
|
|
|
/* stat failed */
|
|
|
|
VR_DEBUG(vr, "stat() failed: %s (%d)", g_strerror(sce->data.err), sce->data.err);
|
|
|
|
|
|
|
|
switch (errno) {
|
|
|
|
case ENOENT:
|
|
|
|
vr->response.http_status = 404; break;
|
|
|
|
case EACCES:
|
|
|
|
case EFAULT:
|
|
|
|
vr->response.http_status = 403; break;
|
|
|
|
default:
|
|
|
|
vr->response.http_status = 500;
|
|
|
|
}
|
|
|
|
} else if ((fd = open(vr->physical.path->str, O_RDONLY)) == -1) {
|
|
|
|
VR_DEBUG(vr, "open() failed: %s (%d)", g_strerror(errno), errno);
|
|
|
|
|
|
|
|
switch (errno) {
|
|
|
|
case ENOENT:
|
|
|
|
vr->response.http_status = 404; break;
|
|
|
|
case EACCES:
|
|
|
|
case EFAULT:
|
|
|
|
vr->response.http_status = 403; break;
|
|
|
|
default:
|
|
|
|
vr->response.http_status = 500;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
fcntl(fd, F_SETFD, FD_CLOEXEC);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* redirect to scheme + host + path + / + querystring if directory without trailing slash */
|
|
|
|
/* TODO: local addr if HTTP 1.0 without host header */
|
|
|
|
if (S_ISDIR(sce->data.st.st_mode) && vr->request.uri.orig_path->str[vr->request.uri.orig_path->len-1] != '/') {
|
|
|
|
GString *host = vr->request.uri.authority->len ? vr->request.uri.authority : vr->con->local_addr_str;
|
|
|
|
GString *uri = g_string_sized_new(
|
|
|
|
8 /* https:// */ + host->len +
|
|
|
|
vr->request.uri.orig_path->len + 2 /* /? */ + vr->request.uri.query->len
|
|
|
|
);
|
|
|
|
if (vr->con->is_ssl)
|
|
|
|
g_string_append_len(uri, CONST_STR_LEN("https://"));
|
|
|
|
else
|
|
|
|
g_string_append_len(uri, CONST_STR_LEN("http://"));
|
|
|
|
g_string_append_len(uri, GSTR_LEN(host));
|
|
|
|
g_string_append_len(uri, GSTR_LEN(vr->request.uri.orig_path));
|
|
|
|
g_string_append_c(uri, '/');
|
|
|
|
if (vr->request.uri.query->len) {
|
|
|
|
g_string_append_c(uri, '?');
|
|
|
|
g_string_append_len(uri, GSTR_LEN(vr->request.uri.query));
|
|
|
|
}
|
|
|
|
|
|
|
|
vr->response.http_status = 301;
|
|
|
|
http_header_overwrite(vr->response.headers, CONST_STR_LEN("Location"), GSTR_LEN(uri));
|
|
|
|
g_string_free(uri, TRUE);
|
|
|
|
close(fd);
|
|
|
|
} else if (!S_ISREG(sce->data.st.st_mode)) {
|
|
|
|
vr->response.http_status = 404;
|
|
|
|
close(fd);
|
|
|
|
} else {
|
|
|
|
GString *mime_str = mimetype_get(vr, vr->request.uri.path);
|
|
|
|
vr->response.http_status = 200;
|
|
|
|
if (mime_str)
|
|
|
|
http_header_overwrite(vr->response.headers, CONST_STR_LEN("Content-Type"), GSTR_LEN(mime_str));
|
|
|
|
else
|
|
|
|
http_header_overwrite(vr->response.headers, CONST_STR_LEN("Content-Type"), CONST_STR_LEN("application/octet-stream"));
|
|
|
|
chunkqueue_append_file_fd(vr->out, NULL, 0, sce->data.st.st_size, fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stat_cache_entry_release(vr);
|
|
|
|
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
|
|
|
|
|
|
|
static action* core_static(server *srv, plugin* p, value *val) {
|
|
|
|
UNUSED(p);
|
|
|
|
if (val) {
|
|
|
|
ERROR(srv, "%s", "static action doesn't have parameters");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return action_new_function(core_handle_static, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static handler_t core_handle_log_write(vrequest *vr, gpointer param, gpointer *context) {
|
|
|
|
GString *msg = param;
|
|
|
|
|
|
|
|
UNUSED(context);
|
|
|
|
|
|
|
|
VR_INFO(vr, "%s", msg->str);
|
|
|
|
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
|
|
|
|
|
|
|
static action* core_log_write(server *srv, plugin* p, value *val) {
|
|
|
|
UNUSED(p);
|
|
|
|
if (!val || val->type != VALUE_STRING) {
|
|
|
|
ERROR(srv, "%s", "log.write expects a string parameter");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return action_new_function(core_handle_log_write, NULL, NULL, value_extract(val).string);
|
|
|
|
}
|
|
|
|
|
|
|
|
static handler_t core_handle_test(vrequest *vr, gpointer param, gpointer *context) {
|
|
|
|
connection *con = vr->con;
|
|
|
|
server *srv = con->srv;
|
|
|
|
worker *wrk = con->wrk;
|
|
|
|
/*GHashTableIter iter;
|
|
|
|
gpointer k, v;
|
|
|
|
GList *hv;*/
|
|
|
|
GString *str;
|
|
|
|
gchar *backend;
|
|
|
|
guint64 uptime;
|
|
|
|
guint64 avg1, avg2, avg3;
|
|
|
|
gchar suffix1[2] = {0,0}, suffix2[2] = {0,0}, suffix3[2] = {0,0};
|
|
|
|
UNUSED(param);
|
|
|
|
UNUSED(context);
|
|
|
|
|
|
|
|
if (!vrequest_handle_direct(vr)) return HANDLER_GO_ON;
|
|
|
|
|
|
|
|
vr->response.http_status = 200;
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN("host: "));
|
|
|
|
chunkqueue_append_mem(vr->out, GSTR_LEN(vr->request.uri.host));
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN("\r\npath: "));
|
|
|
|
chunkqueue_append_mem(vr->out, GSTR_LEN(vr->request.uri.path));
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN("\r\nquery: "));
|
|
|
|
chunkqueue_append_mem(vr->out, GSTR_LEN(vr->request.uri.query));
|
|
|
|
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN("\r\n\r\nactions executed: "));
|
|
|
|
uptime = (guint64)(ev_now(con->wrk->loop) - srv->started);
|
|
|
|
if (uptime == 0)
|
|
|
|
uptime = 1;
|
|
|
|
avg1 = wrk->stats.actions_executed;
|
|
|
|
suffix1[0] = counter_format(&avg1, 1000);
|
|
|
|
avg2 = wrk->stats.actions_executed / uptime;
|
|
|
|
suffix2[0] = counter_format(&avg2, 1000);
|
|
|
|
avg3 = wrk->stats.actions_executed / wrk->stats.requests;
|
|
|
|
suffix3[0] = counter_format(&avg3, 1000);
|
|
|
|
str = g_string_sized_new(0);
|
|
|
|
g_string_printf(str,
|
|
|
|
"%"G_GUINT64_FORMAT"%s (%"G_GUINT64_FORMAT"%s/s, %"G_GUINT64_FORMAT"%s/req)",
|
|
|
|
avg1, suffix1, avg2, suffix2, avg3, suffix3
|
|
|
|
);
|
|
|
|
chunkqueue_append_string(vr->out, str);
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN("\r\nrequests: "));
|
|
|
|
avg1 = wrk->stats.requests;
|
|
|
|
suffix1[0] = counter_format(&avg1, 1000);
|
|
|
|
avg2 = wrk->stats.requests / uptime;
|
|
|
|
suffix2[0] = counter_format(&avg2, 1000);
|
|
|
|
str = g_string_sized_new(0);
|
|
|
|
g_string_printf(str, "%"G_GUINT64_FORMAT"%s (%"G_GUINT64_FORMAT"%s/s)", avg1, suffix1, avg2, suffix2);
|
|
|
|
chunkqueue_append_string(vr->out, str);
|
|
|
|
|
|
|
|
backend = ev_backend_string(ev_backend(con->wrk->loop));
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN("\r\nevent handler: "));
|
|
|
|
chunkqueue_append_mem(vr->out, backend, strlen(backend));
|
|
|
|
|
|
|
|
/* chunkqueue_append_mem(vr->out, CONST_STR_LEN("\r\n\r\n--- headers ---\r\n"));
|
|
|
|
g_hash_table_iter_init(&iter, con->request.headers->table);
|
|
|
|
while (g_hash_table_iter_next(&iter, &k, &v)) {
|
|
|
|
hv = g_queue_peek_head_link(&((http_header*)v)->values);
|
|
|
|
while (hv != NULL) {
|
|
|
|
chunkqueue_append_mem(vr->out, GSTR_LEN(((http_header*)v)->key));
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN(": "));
|
|
|
|
chunkqueue_append_mem(vr->out, GSTR_LEN((GString*)hv->data));
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN("\r\n"));
|
|
|
|
hv = hv->next;
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
chunkqueue_append_mem(vr->out, CONST_STR_LEN("\r\n"));
|
|
|
|
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
|
|
|
|
|
|
|
static action* core_test(server *srv, plugin* p, value *val) {
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
ERROR(srv, "%s", "'static' action doesn't have parameters");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return action_new_function(core_handle_test, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static handler_t core_handle_blank(vrequest *vr, gpointer param, gpointer *context) {
|
|
|
|
UNUSED(param);
|
|
|
|
UNUSED(context);
|
|
|
|
|
|
|
|
if (!vrequest_handle_direct(vr)) return HANDLER_GO_ON;
|
|
|
|
|
|
|
|
vr->response.http_status = 200;
|
|
|
|
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
|
|
|
|
|
|
|
static action* core_blank(server *srv, plugin* p, value *val) {
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
ERROR(srv, "%s", "'empty' action doesn't have parameters");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return action_new_function(core_handle_blank, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static handler_t core_handle_profile_mem(vrequest *vr, gpointer param, gpointer *context) {
|
|
|
|
UNUSED(vr);
|
|
|
|
UNUSED(param);
|
|
|
|
UNUSED(context);
|
|
|
|
|
|
|
|
/*g_mem_profile();*/
|
|
|
|
profiler_dump();
|
|
|
|
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
|
|
|
|
|
|
|
static action* core_profile_mem(server *srv, plugin* p, value *val) {
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
ERROR(srv, "%s", "'profile_mem' action doesn't have parameters");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return action_new_function(core_handle_profile_mem, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean core_listen(server *srv, plugin* p, value *val) {
|
|
|
|
GString *ipstr;
|
|
|
|
int s;
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (val->type != VALUE_STRING) {
|
|
|
|
ERROR(srv, "%s", "listen expects a string as parameter");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ipstr = val->data.string;
|
|
|
|
if (-1 == (s = angel_listen(srv, ipstr))) {
|
|
|
|
ERROR(srv, "%s", "angel_listen failed");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
server_listen(srv, s);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean core_event_handler(server *srv, plugin* p, value *val) {
|
|
|
|
guint backend;
|
|
|
|
gchar *str;
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (val->type != VALUE_STRING) {
|
|
|
|
ERROR(srv, "%s", "event_handler expects a string as parameter");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
str = val->data.string->str;
|
|
|
|
backend = 0; /* libev will chose the right one by default */
|
|
|
|
|
|
|
|
if (g_str_equal(str, "select"))
|
|
|
|
backend = EVBACKEND_SELECT;
|
|
|
|
else if (g_str_equal(str, "poll"))
|
|
|
|
backend = EVBACKEND_POLL;
|
|
|
|
else if (g_str_equal(str, "epoll"))
|
|
|
|
backend = EVBACKEND_EPOLL;
|
|
|
|
else if (g_str_equal(str, "kqueue"))
|
|
|
|
backend = EVBACKEND_KQUEUE;
|
|
|
|
else if (g_str_equal(str, "devpoll"))
|
|
|
|
backend = EVBACKEND_DEVPOLL;
|
|
|
|
else if (g_str_equal(str, "port"))
|
|
|
|
backend = EVBACKEND_PORT;
|
|
|
|
else {
|
|
|
|
ERROR(srv, "unkown event handler: '%s'", str);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (backend) {
|
|
|
|
if (!(ev_supported_backends() & backend)) {
|
|
|
|
ERROR(srv, "unsupported event handler: '%s'", str);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(ev_recommended_backends() & backend)) {
|
|
|
|
DEBUG(srv, "warning: event handler '%s' not recommended for this platform!", str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
srv->loop_flags |= backend;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean core_workers(server *srv, plugin* p, value *val) {
|
|
|
|
gint workers;
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
workers = val->data.number;
|
|
|
|
if (val->type != VALUE_NUMBER || workers < 1) {
|
|
|
|
ERROR(srv, "%s", "workers expects a positive integer as parameter");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (srv->worker_count != 0) {
|
|
|
|
ERROR(srv, "workers already called with '%i', overwriting", srv->worker_count);
|
|
|
|
}
|
|
|
|
srv->worker_count = workers;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean core_module_load(server *srv, plugin* p, value *val) {
|
|
|
|
value *mods = value_new_list();
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (!g_module_supported()) {
|
|
|
|
ERROR(srv, "%s", "module loading not supported on this platform");
|
|
|
|
value_free(mods);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val->type == VALUE_STRING) {
|
|
|
|
/* load only one module */
|
|
|
|
value *name = value_new_string(value_extract(val).string);
|
|
|
|
g_array_append_val(mods->data.list, name);
|
|
|
|
} else if (val->type == VALUE_LIST) {
|
|
|
|
/* load a list of modules */
|
|
|
|
for (guint i = 0; i < val->data.list->len; i++) {
|
|
|
|
value *v = g_array_index(val->data.list, value*, i);
|
|
|
|
if (v->type != VALUE_STRING) {
|
|
|
|
ERROR(srv, "module_load takes either a string or a list of strings as parameter, list with %s entry given", value_type_string(v->type));
|
|
|
|
value_free(mods);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mods->data.list = value_extract(val).list;
|
|
|
|
} else {
|
|
|
|
ERROR(srv, "module_load takes either a string or a list of strings as parameter, %s given", value_type_string(val->type));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parameter types ok, load modules */
|
|
|
|
for (guint i = 0; i < mods->data.list->len; i++) {
|
|
|
|
GString *name = g_array_index(mods->data.list, value*, i)->data.string;
|
|
|
|
if (!module_load(srv->modules, name->str)) {
|
|
|
|
ERROR(srv, "could not load module '%s': %s", name->str, g_module_error());
|
|
|
|
value_free(mods);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG(srv, "loaded module '%s'", name->str);
|
|
|
|
}
|
|
|
|
|
|
|
|
value_free(mods);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean core_io_timeout(server *srv, plugin* p, value *val) {
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (!val || val->type != VALUE_NUMBER || val->data.number < 1) {
|
|
|
|
ERROR(srv, "%s", "io_timeout expects a positive number as parameter");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
srv->io_timeout = value_extract(val).number;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean core_stat_cache_ttl(server *srv, plugin* p, value *val) {
|
|
|
|
UNUSED(p);
|
|
|
|
|
|
|
|
if (!val || val->type != VALUE_NUMBER || val->data.number < 1) {
|
|
|
|
ERROR(srv, "%s", "stat_cache.ttl expects a positive number as parameter");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
srv->stat_cache_ttl = (gdouble)value_extract(val).number;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OPTIONS
|
|
|
|
*/
|
|
|
|
|
|
|
|
static gboolean core_option_log_parse(server *srv, plugin *p, size_t ndx, value *val, option_value *oval) {
|
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer k, v;
|
|
|
|
log_level_t level;
|
|
|
|
GString *path;
|
|
|
|
GString *level_str;
|
|
|
|
GArray *arr = g_array_sized_new(FALSE, TRUE, sizeof(log_t*), 6);
|
|
|
|
UNUSED(p);
|
|
|
|
UNUSED(ndx);
|
|
|
|
|
|
|
|
oval->list = arr;
|
|
|
|
g_array_set_size(arr, 6);
|
|
|
|
|
|
|
|
/* default value */
|
|
|
|
if (!val) {
|
|
|
|
/* default: log LOG_LEVEL_WARNING, LOG_LEVEL_ERROR and LOG_LEVEL_BACKEND to stderr */
|
|
|
|
log_t *log = srv->logs.stderr;
|
|
|
|
log_ref(srv, log);
|
|
|
|
g_array_index(arr, log_t*, LOG_LEVEL_WARNING) = log;
|
|
|
|
log_ref(srv, log);
|
|
|
|
g_array_index(arr, log_t*, LOG_LEVEL_ERROR) = log;
|
|
|
|
log_ref(srv, log);
|
|
|
|
g_array_index(arr, log_t*, LOG_LEVEL_BACKEND) = log;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_iter_init(&iter, val->data.hash);
|
|
|
|
while (g_hash_table_iter_next(&iter, &k, &v)) {
|
|
|
|
if (((value*)v)->type != VALUE_STRING) {
|
|
|
|
ERROR(srv, "log expects a hashtable with string values, %s given", value_type_string(((value*)v)->type));
|
|
|
|
g_array_free(arr, TRUE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
path = ((value*)v)->data.string;
|
|
|
|
level_str = (GString*)k;
|
|
|
|
|
|
|
|
if (g_str_equal(level_str->str, "*")) {
|
|
|
|
for (guint i = 0; i < arr->len; i++) {
|
|
|
|
log_t *log;
|
|
|
|
|
|
|
|
if (NULL != g_array_index(arr, log_t*, i))
|
|
|
|
continue;
|
|
|
|
log = log_new(srv, log_type_from_path(path), path);
|
|
|
|
g_array_index(arr, log_t*, i) = log;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
log_t *log = log_new(srv, log_type_from_path(path), path);
|
|
|
|
level = log_level_from_string(level_str);
|
|
|
|
g_array_index(arr, log_t*, level) = log;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void core_option_log_free(server *srv, plugin *p, size_t ndx, option_value oval) {
|
|
|
|
GArray *arr = oval.list;
|
|
|
|
UNUSED(p);
|
|
|
|
UNUSED(ndx);
|
|
|
|
|
|
|
|
if (!arr) return;
|
|
|
|
|
|
|
|
for (guint i = 0; i < arr->len; i++) {
|
|
|
|
if (NULL != g_array_index(arr, log_t*, i))
|
|
|
|
log_unref(srv, g_array_index(arr, log_t*, i));
|
|
|
|
}
|
|
|
|
g_array_free(arr, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean core_option_log_timestamp_parse(server *srv, plugin *p, size_t ndx, value *val, option_value *oval) {
|
|
|
|
UNUSED(p);
|
|
|
|
UNUSED(ndx);
|
|
|
|
|
|
|
|
if (!val) return TRUE;
|
|
|
|
oval->ptr = log_timestamp_new(srv, value_extract(val).string);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void core_option_log_timestamp_free(server *srv, plugin *p, size_t ndx, option_value oval) {
|
|
|
|
UNUSED(p);
|
|
|
|
UNUSED(ndx);
|
|
|
|
|
|
|
|
if (!oval.ptr) return;
|
|
|
|
log_timestamp_free(srv, oval.ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean core_option_mime_types_parse(server *srv, plugin *p, size_t ndx, value *val, option_value *oval) {
|
|
|
|
GArray *arr;
|
|
|
|
UNUSED(srv);
|
|
|
|
UNUSED(p);
|
|
|
|
UNUSED(ndx);
|
|
|
|
|
|
|
|
|
|
|
|
/* default value */
|
|
|
|
if (!val) {
|
|
|
|
oval->list = g_array_new(FALSE, TRUE, sizeof(value));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check if the passed val is of type (("a", "b"), ("x", y")) */
|
|
|
|
arr = val->data.list;
|
|
|
|
for (guint i = 0; i < arr->len; i++) {
|
|
|
|
value *v = g_array_index(arr, value*, i);
|
|
|
|
value *v1, *v2;
|
|
|
|
if (v->type != VALUE_LIST) {
|
|
|
|
ERROR(srv, "mime_types option expects a list of string tuples, entry #%u is of type %s", i, value_type_string(v->type));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v->data.list->len != 2) {
|
|
|
|
ERROR(srv, "mime_types option expects a list of string tuples, entry #%u is not a tuple", i);
|
|
|
|
return FALSE;
|
|
|
|