[angel] fix handling of notifications on worker stop

* fix handling of "simple calls" (notifications)
  when plugin/action can't be found (must not send
  an error response, as id == -1)
* server stop clears all plugins; don't log error in
  that stage

Change-Id: If5167a3bd6d069c4cfc6dad13e205ce18b724509
master
Stefan Bühler 3 months ago
parent 87e125bffa
commit 6791ccbaec

@ -61,34 +61,41 @@ static void instance_angel_call_cb(liAngelConnection *acon,
liPlugins *ps = &srv->plugins;
liPlugin *p;
liPluginHandleCallCB cb;
GString *errstr = NULL;
UNUSED(mod_len);
UNUSED(action_len);
p = g_hash_table_lookup(ps->ht_plugins, mod);
if (!p) {
GString *errstr = g_string_sized_new(0);
GError *err = NULL;
g_string_printf(errstr, "Plugin '%s' not available in lighttpd-angel", mod);
if (!li_angel_send_result(acon, id, errstr, NULL, NULL, &err)) {
ERROR(srv, "Couldn't send result: %s", err->message);
g_error_free(err);
}
return;
errstr = g_string_sized_new(0);
g_string_printf(errstr, "Plugin '%s' not available in lighttpd-angel (action '%s')", mod, action);
goto failed;
}
cb = (liPluginHandleCallCB)(intptr_t) g_hash_table_lookup(p->angel_callbacks, action);
if (!cb) {
GString *errstr = g_string_sized_new(0);
GError *err = NULL;
errstr = g_string_sized_new(0);
g_string_printf(errstr, "Action '%s' not available in plugin '%s' of lighttpd-angel", action, mod);
if (!li_angel_send_result(acon, id, errstr, NULL, NULL, &err)) {
goto failed;
}
cb(srv, p, i, id, data);
return;
failed:
{
GError *err = NULL;
if (-1 == id) {
/* if there are no plugins the server was probably stopped - no need to log then */
if (0 != g_hash_table_size(ps->ht_plugins)) {
ERROR(srv, "Can't handle notification from worker: %s", errstr->str);
}
g_string_free(errstr, TRUE);
} else if (!li_angel_send_result(acon, id, errstr, NULL, NULL, &err)) {
ERROR(srv, "Couldn't send result: %s", err->message);
g_error_free(err);
}
return;
}
cb(srv, p, i, id, data);
}
static void instance_angel_close_cb(liAngelConnection *acon, GError *err) {

@ -191,7 +191,7 @@ static gboolean angel_dispatch(liAngelConnection *acon, GError **err) {
if (!li_idlist_is_used(acon->call_id_list, id)) {
g_mutex_unlock(acon->mutex);
g_set_error(err, LI_ANGEL_CONNECTION_ERROR, LI_ANGEL_CONNECTION_INVALID_DATA,
"Invalid id: %i", (gint) id);
"Invalid id: %i (not waiting for the result of a call with this id)", (gint) id);
close_fd_array(acon->parse.fds);
return FALSE;
}
@ -566,6 +566,7 @@ static gboolean prepare_call_header(GString **pbuf,
if (!li_angel_data_write_int32(buf, mod_len, err)) return FALSE;
if (!li_angel_data_write_int32(buf, action_len, err)) return FALSE;
} else {
LI_FORCE_ASSERT(id >= 0);
if (!li_angel_data_write_int32(buf, 0, err)) return FALSE;
if (!li_angel_data_write_int32(buf, 0, err)) return FALSE;
}

Loading…
Cancel
Save