1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
/*-
* Copyright 2016 Vsevolod Stakhov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "rspamadm.h"
#include "libutil/util.h"
#include "libserver/logger.h"
#include "lua/lua_common.h"
#include "lua/lua_thread_pool.h"
extern struct rspamadm_command pw_command;
extern struct rspamadm_command configtest_command;
extern struct rspamadm_command configdump_command;
extern struct rspamadm_command control_command;
extern struct rspamadm_command confighelp_command;
extern struct rspamadm_command statconvert_command;
extern struct rspamadm_command fuzzyconvert_command;
extern struct rspamadm_command signtool_command;
extern struct rspamadm_command lua_command;
const struct rspamadm_command *commands[] = {
&help_command,
&pw_command,
&configtest_command,
&configdump_command,
&control_command,
&confighelp_command,
&statconvert_command,
&fuzzyconvert_command,
&signtool_command,
&lua_command,
NULL};
const struct rspamadm_command *
rspamadm_search_command(const gchar *name, GPtrArray *all_commands)
{
const struct rspamadm_command *ret = NULL, *cmd;
const gchar *alias;
guint i, j;
if (name == NULL) {
name = "help";
}
PTR_ARRAY_FOREACH(all_commands, i, cmd)
{
if (strcmp(name, cmd->name) == 0) {
ret = cmd;
break;
}
PTR_ARRAY_FOREACH(cmd->aliases, j, alias)
{
if (strcmp(name, alias) == 0) {
ret = cmd;
break;
}
}
}
return ret;
}
void rspamadm_fill_internal_commands(GPtrArray *dest)
{
guint i;
for (i = 0; i < G_N_ELEMENTS(commands); i++) {
if (commands[i]) {
g_ptr_array_add(dest, (gpointer) commands[i]);
}
}
}
static void
lua_thread_str_error_cb(struct thread_entry *thread, int ret, const char *msg)
{
msg_err("call to rspamadm lua script failed (%d): %s",
ret, msg);
}
static void
rspamadm_lua_command_run(gint argc, gchar **argv,
const struct rspamadm_command *cmd)
{
struct thread_entry *thread = lua_thread_pool_get_for_config(rspamd_main->cfg);
lua_State *L = thread->lua_state;
gint table_idx = GPOINTER_TO_INT(cmd->command_data);
gint i;
/* Function */
lua_rawgeti(L, LUA_REGISTRYINDEX, table_idx);
lua_pushstring(L, "handler");
lua_gettable(L, -2);
/* Args */
lua_createtable(L, argc + 1, 0);
for (i = 0; i < argc; i++) {
lua_pushstring(L, argv[i]);
lua_rawseti(L, -2, i); /* Starting from zero ! */
}
if (lua_repl_thread_call(thread, 1, (void *) cmd, lua_thread_str_error_cb) != 0) {
exit(EXIT_FAILURE);
}
lua_settop(L, 0);
}
static const gchar *
rspamadm_lua_command_help(gboolean full_help,
const struct rspamadm_command *cmd)
{
gint table_idx = GPOINTER_TO_INT(cmd->command_data);
if (full_help) {
struct thread_entry *thread = lua_thread_pool_get_for_config(rspamd_main->cfg);
lua_State *L = thread->lua_state;
lua_rawgeti(L, LUA_REGISTRYINDEX, table_idx);
/* Function */
lua_pushstring(L, "handler");
lua_gettable(L, -2);
/* Args */
lua_createtable(L, 2, 0);
lua_pushstring(L, cmd->name);
lua_rawseti(L, -2, 0); /* Starting from zero ! */
lua_pushstring(L, "--help");
lua_rawseti(L, -2, 1);
if (lua_repl_thread_call(thread, 1, (void *) cmd, lua_thread_str_error_cb) != 0) {
exit(EXIT_FAILURE);
}
lua_settop(L, 0);
}
else {
lua_State *L = rspamd_main->cfg->lua_state;
lua_rawgeti(L, LUA_REGISTRYINDEX, table_idx);
lua_pushstring(L, "description");
lua_gettable(L, -2);
if (lua_isstring(L, -1)) {
printf(" %-18s %-60s\n", cmd->name, lua_tostring(L, -1));
}
else {
printf(" %-18s %-60s\n", cmd->name, "no description available");
}
lua_settop(L, 0);
}
return NULL; /* Must be handled in rspamadm itself */
}
void rspamadm_fill_lua_commands(lua_State *L, GPtrArray *dest)
{
gint i;
GPtrArray *lua_paths;
GError *err = NULL;
const gchar *lualibdir = RSPAMD_LUALIBDIR, *path;
struct rspamadm_command *lua_cmd;
gchar search_dir[PATH_MAX];
if (g_hash_table_lookup(ucl_vars, "LUALIBDIR")) {
lualibdir = g_hash_table_lookup(ucl_vars, "LUALIBDIR");
}
rspamd_snprintf(search_dir, sizeof(search_dir), "%s%crspamadm%c",
lualibdir, G_DIR_SEPARATOR, G_DIR_SEPARATOR);
if ((lua_paths = rspamd_glob_path(search_dir, "*.lua", FALSE, &err)) == NULL) {
msg_err("cannot glob files in %s/*.lua: %e", search_dir, err);
g_error_free(err);
return;
}
PTR_ARRAY_FOREACH(lua_paths, i, path)
{
if (luaL_dofile(L, path) != 0) {
msg_err("cannot execute lua script %s: %s",
path, lua_tostring(L, -1));
lua_settop(L, 0);
continue;
}
else {
if (lua_type(L, -1) == LUA_TTABLE) {
lua_pushstring(L, "handler");
lua_gettable(L, -2);
}
else {
continue; /* Something goes wrong, huh */
}
if (lua_type(L, -1) != LUA_TFUNCTION) {
msg_err("rspamadm script %s does not have 'handler' field with type "
"function",
path);
continue;
}
/* Pop handler */
lua_pop(L, 1);
lua_cmd = g_malloc0(sizeof(*lua_cmd));
lua_pushstring(L, "name");
lua_gettable(L, -2);
if (lua_type(L, -1) == LUA_TSTRING) {
lua_cmd->name = g_strdup(lua_tostring(L, -1));
}
else {
goffset ext_pos;
gchar *name;
name = g_path_get_basename(path);
/* Remove .lua */
ext_pos = rspamd_substring_search(path, strlen(path), ".lua", 4);
if (ext_pos != -1) {
name[ext_pos] = '\0';
}
lua_cmd->name = name;
}
lua_pop(L, 1);
lua_pushstring(L, "aliases");
lua_gettable(L, -2);
if (lua_type(L, -1) == LUA_TTABLE) {
lua_cmd->aliases = g_ptr_array_new_full(
rspamd_lua_table_size(L, -1),
g_free);
for (lua_pushnil(L); lua_next(L, -2); lua_pop(L, 1)) {
if (lua_isstring(L, -1)) {
g_ptr_array_add(lua_cmd->aliases,
g_strdup(lua_tostring(L, -1)));
}
}
}
lua_pop(L, 1);
lua_pushvalue(L, -1);
/* Reference table itself */
lua_cmd->command_data = GINT_TO_POINTER(luaL_ref(L, LUA_REGISTRYINDEX));
lua_cmd->flags |= RSPAMADM_FLAG_LUA | RSPAMADM_FLAG_DYNAMIC;
lua_cmd->run = rspamadm_lua_command_run;
lua_cmd->help = rspamadm_lua_command_help;
g_ptr_array_add(dest, lua_cmd);
}
lua_settop(L, 0);
}
g_ptr_array_free(lua_paths, TRUE);
}
|