-
Notifications
You must be signed in to change notification settings - Fork 32
/
commands.c
316 lines (282 loc) · 9.44 KB
/
commands.c
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/*
* Copyright (C) 2004-2008 Christos Tsantilas
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA.
*/
#include <assert.h>
#include "common.h"
#include "c-icap.h"
#include "net_io.h"
#include "debug.h"
#include "log.h"
#include "commands.h"
#include "cfg_param.h"
#include "registry.h"
struct schedule_data {
char name[CMD_NM_SIZE];
time_t when;
void *data;
};
/*The list of commands*/
static ci_list_t *COMMANDS_LIST = NULL;;
/* The list of request for ONDEMAND_CMD commands*/
static ci_list_t *COMMANDS_QUEUE = NULL;
ci_thread_mutex_t COMMANDS_MTX;
void commands_init()
{
ci_thread_mutex_init(&COMMANDS_MTX);
COMMANDS_LIST = ci_list_create(1024, sizeof(ci_command_t));
COMMANDS_QUEUE = ci_list_create(1024, sizeof(struct schedule_data));
}
void register_command(const char *name, int type,
void (*command_action) (const char *name, int type,
const char **argv))
{
if (! (type & ALL_PROC_CMD)) {
ci_debug_printf(1, "Can not register command %s ! Wrong type\n", name );
return;
}
ci_command_t cmd;
strncpy(cmd.name, name, CMD_NM_SIZE);
cmd.name[CMD_NM_SIZE - 1] = '\0';
cmd.type = type;
cmd.data = NULL;
cmd.command_action = command_action;
ci_thread_mutex_lock(&COMMANDS_MTX);
ci_list_push(COMMANDS_LIST, &cmd);
ci_thread_mutex_unlock(&COMMANDS_MTX);
ci_debug_printf(5, "Command %s registered\n", name);
}
void register_command_extend(const char *name, int type, void *data,
void (*command_action) (const char *name, int type,
void *data))
{
if (type != CI_CMD_CHILD_START &&
type != CI_CMD_CHILD_STOP &&
type != CI_CMD_ONDEMAND &&
type != CI_CMD_POST_CONFIG &&
type != CI_CMD_MONITOR_START &&
type != CI_CMD_MONITOR_STOP &&
type != CI_CMD_MONITOR_ONDEMAND) {
ci_debug_printf(1, "Can not register extend command %s ! wrong type\n", name );
return;
}
ci_command_t cmd;
strncpy(cmd.name, name, CMD_NM_SIZE);
cmd.name[CMD_NM_SIZE - 1] = '\0';
cmd.type = type;
cmd.data = data;
cmd.command_action_extend = command_action;
ci_thread_mutex_lock(&COMMANDS_MTX);
ci_list_push(COMMANDS_LIST, &cmd);
ci_thread_mutex_unlock(&COMMANDS_MTX);
ci_debug_printf(5, "Extend command %s registered\n", name);
}
void commands_reset()
{
if (COMMANDS_QUEUE) {
ci_list_destroy(COMMANDS_QUEUE);
COMMANDS_QUEUE = ci_list_create(1024, sizeof(struct schedule_data));
}
if (COMMANDS_LIST) {
ci_list_destroy(COMMANDS_LIST);
COMMANDS_LIST = ci_list_create(1024, sizeof(ci_command_t));
}
}
void commands_destroy()
{
if (COMMANDS_QUEUE) {
ci_list_destroy(COMMANDS_QUEUE);
COMMANDS_QUEUE = NULL;
}
if (COMMANDS_LIST) {
ci_list_destroy(COMMANDS_LIST);
COMMANDS_LIST = NULL;
}
}
/*
Currently we are using the following functions which defined in cfg_param.c file
These functions must moved to a utils.c file ...
*/
char **split_args(char *args);
void free_args(char **argv);
int cb_check_command(void *data, const void *obj)
{
const ci_command_t **rcommand = (const ci_command_t **)data;
const ci_command_t *cur_item = (const ci_command_t *)obj;
if (*rcommand && strcmp((*rcommand)->name, cur_item->name) == 0) {
*rcommand = cur_item;
return 1;
}
return 0;
}
ci_command_t *find_command(const char *cmd_line)
{
int len;
char *s;
ci_command_t tmpCmd;
ci_command_t *cmd;
if (COMMANDS_LIST == NULL) {
ci_debug_printf(5, "None command registered\n");
return NULL;
}
s = strchr(cmd_line, ' ');
if (s)
len = s - cmd_line;
else
len = strlen(cmd_line);
if (len && len < CMD_NM_SIZE) {
strncpy(tmpCmd.name, cmd_line, len);
tmpCmd.name[len] = '\0';
cmd = &tmpCmd;
ci_list_iterate(COMMANDS_LIST, &cmd, cb_check_command);
if (cmd != &tmpCmd)
/*We found an cmd stored in list. Return it*/
return cmd;
}
return NULL;
}
int execute_command(ci_command_t * command, char *cmdline, int exec_type)
{
char **args;
if (!command)
return 0;
args = split_args(cmdline);
command->command_action(args[0], exec_type, (const char **)(args + 1));
free_args(args);
return 1;
}
static int exec_cmd_step(void *data, const void *cmd)
{
int cmd_type = *((int *)data);
ci_command_t *command = (ci_command_t *)cmd;
ci_debug_printf(7, "Check command: %s, type: %d \n",
command->name, command->type);
if (command->type == cmd_type) {
ci_debug_printf(5, "Execute command:%s \n", command->name);
command->command_action_extend (command->name, command->type, command->data);
}
return 0;
}
int execute_commands_no_lock (int cmd_type)
{
ci_debug_printf(5, "Going to execute child commands\n");
if (COMMANDS_LIST == NULL) {
ci_debug_printf(5, "None command registered\n");
return 0;
}
ci_list_iterate(COMMANDS_LIST, &cmd_type, exec_cmd_step);
return 1;
}
int commands_execute_start_child()
{
return execute_commands_no_lock(CHILD_START_CMD);
}
int commands_execute_stop_child()
{
return execute_commands_no_lock(CHILD_STOP_CMD);
}
void ci_command_register_ctl_cmd(const char *name, int type, void (*command_action)(const char *name,int type, const char **argv))
{
register_command(name, type, command_action);
}
void ci_command_register_action(const char *name, int type, void *data,
void (*command_action) (const char *name, int type, void *data))
{
register_command_extend(name, type, data, command_action);
}
void ci_command_schedule_on(const char *name, void *data, time_t time)
{
struct schedule_data sch;
memset(&sch, 0, sizeof(struct schedule_data));
strncpy(sch.name, name, CMD_NM_SIZE);
sch.name[CMD_NM_SIZE - 1] = '\0';
sch.when = time;
sch.data = data;
if (ci_list_search(COMMANDS_QUEUE, &sch)) {
ci_debug_printf(7, "command %s already scheduled for execution on %ld, ignore\n", name, time);
return;
}
ci_thread_mutex_lock(&COMMANDS_MTX);
ci_list_push(COMMANDS_QUEUE, &sch);
ci_thread_mutex_unlock(&COMMANDS_MTX);
ci_debug_printf(9, "command %s scheduled for execution\n", name);
}
void ci_command_schedule(const char *name, void *data, time_t afterSecs)
{
time_t tm;
time(&tm);
tm += afterSecs;
ci_command_schedule_on(name, data, tm);
}
struct sheduled_cmd_exec_data {
time_t tm;
int type;
};
static int cb_check_queue(void *data, const void *item)
{
struct schedule_data *sch = (struct schedule_data *)item;
struct sheduled_cmd_exec_data *exec_data = (struct sheduled_cmd_exec_data *) data;
assert(exec_data);
if (sch->when <= exec_data->tm) {
ci_command_t *cmd = find_command(sch->name);
if (cmd && cmd->type == exec_data->type) {
ci_debug_printf(9, "Execute command:%s \n", cmd->name);
cmd->command_action_extend (cmd->name, cmd->type, (sch->data ? sch->data : cmd->data));
ci_thread_mutex_lock(&COMMANDS_MTX);
ci_list_remove(COMMANDS_QUEUE, sch);
ci_thread_mutex_unlock(&COMMANDS_MTX);
}
}
return 0;
}
void commands_exec_scheduled(int cmd_type)
{
struct sheduled_cmd_exec_data exec_data;
ci_debug_printf(10, "Going to execute child commands\n");
if (COMMANDS_LIST == NULL) {
ci_debug_printf(10, "None command registered\n");
}
if (!COMMANDS_QUEUE)
return;
time(&exec_data.tm);
exec_data.type = cmd_type;
ci_list_iterate(COMMANDS_QUEUE, &exec_data, cb_check_queue);
}
void ci_command_register_child_cleanup(const char *name, void *data, void (*child_cleanup_handler) (const char *name, process_pid_t pid, int reason, void *data))
{
ci_command_t cmd;
strncpy(cmd.name, name, CMD_NM_SIZE);
cmd.name[CMD_NM_SIZE - 1] = '\0';
cmd.type = CI_CMD_CHILD_CLEANUP;
cmd.data = data;
cmd.command_child_cleanup = child_cleanup_handler;
ci_thread_mutex_lock(&COMMANDS_MTX);
ci_list_push(COMMANDS_LIST, &cmd);
ci_thread_mutex_unlock(&COMMANDS_MTX);
ci_debug_printf(5, "Child cleanup command/handler %s registered\n", name);
}
void commands_exec_child_cleanup(process_pid_t pid, int reason)
{
ci_command_t *cmd = NULL;
ci_debug_printf(5, "Child cleanup handlers for child %d will be executed\n", pid);
ci_thread_mutex_lock(&COMMANDS_MTX);
for (cmd = ci_list_first(COMMANDS_LIST); cmd != NULL; cmd = ci_list_next(COMMANDS_LIST)) {
if (cmd->type == CI_CMD_CHILD_CLEANUP && cmd->command_child_cleanup)
cmd->command_child_cleanup(cmd->name, pid, reason, cmd->data);
}
ci_thread_mutex_unlock(&COMMANDS_MTX);
}