modified modcmd to give the possibility for dynamic access (modcmd)
[NeonServV5.git] / modcmd.c
1
2 #include "modcmd.h"
3 #include "IRCEvents.h"
4 #include "IRCParser.h"
5 #include "ClientSocket.h"
6 #include "UserNode.h"
7 #include "ChanNode.h"
8 #include "ChanUser.h"
9 #include "WHOHandler.h"
10 #include "lang.h"
11 #include "mysqlConn.h"
12 #include "DBHelper.h"
13
14 struct trigger_callback {
15     int botid;
16     trigger_callback_t *func;
17     
18     struct trigger_callback *next;
19 };
20
21 struct command_check_user_cache {
22     struct ClientSocket *client, *textclient;
23     struct UserNode *user;
24     struct ChanNode *chan, *sent_chan;
25     char **argv;
26     int argc;
27     char *message;
28     struct cmd_binding *cbind;
29 };
30
31 static struct cmd_binding **cmd_binds;
32 static struct cmd_function *cmd_functions = NULL;
33 static struct trigger_callback *trigger_callbacks = NULL;
34 static struct ClientSocket *tmp_text_client;
35
36 static const struct default_language_entry msgtab[] = {
37     {"MODCMD_LESS_PARAM_COUNT", "This command requires more parameters."},
38     {"MODCMD_CHAN_REQUIRED",    "You must provide the name of a channel that exists."},
39     {"MODCMD_AUTH_REQUIRED",    "You need to be authenticated with AuthServ to use this command."},
40     {"MODCMD_PRIVILEGED",       "\002%s\002 is a privileged command."},
41     {"MODCMD_PUBCMD",           "Public commands in \002%s\002 are restricted."},
42     {"MODCMD_ACCESS_DENIED",    "Access denied."},
43     {NULL, NULL}
44 };
45
46 static int get_binds_index(char first_char) {
47     if(tolower(first_char) >= 'a' && tolower(first_char) <= 'z') {
48         return tolower(first_char - 'a');
49     }
50     return 26;
51 }
52
53 struct ClientSocket* get_prefered_bot(int botid) {
54     struct ClientSocket *client;
55     for(client = getBots(SOCKET_FLAG_READY, NULL); client; client = getBots(SOCKET_FLAG_READY, client)) {
56         if(client->botid == botid && (client->flags & SOCKET_FLAG_PREFERRED))
57             return client;
58     }
59     return NULL;
60 }
61
62 static char* get_channel_trigger(int botid, struct ChanNode *chan) {
63     struct trigger_cache *trigger;
64     for(trigger = chan->trigger; trigger; trigger = trigger->next) {
65         if(trigger->botid == botid)
66             return trigger->trigger;
67     }
68     struct trigger_callback *cb;
69     for(cb = trigger_callbacks; cb; cb = cb->next) {
70         if(cb->botid == botid)
71             break;
72     }
73     char triggerStr[TRIGGERLEN];
74     if(cb)
75         cb->func(chan, triggerStr);
76     else
77         strcpy(triggerStr, "+");
78     trigger = malloc(sizeof(*trigger));
79     if (!trigger) {
80         perror("malloc() failed");
81         return 0;
82     }
83     trigger->botid = botid;
84     trigger->trigger = strdup(triggerStr);
85     trigger->next = chan->trigger;
86     chan->trigger = trigger;
87     return trigger->trigger;
88 }
89
90 static void handle_command_async(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, struct ChanNode *sent_chan struct cmd_binding *cbind, char **argv, int argc);
91
92 static USERAUTH_CALLBACK(command_checked_auth) {
93     struct command_check_user_cache *cache = data;
94     tmp_text_client = cache->textclient;
95     handle_command_async(cache->client, user, cache->chan, cache->sent_chan, cache->cbind, cache->argv, cache->argc)
96     free(cache->message);
97     free(cache);
98 }
99
100 static void handle_command(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, char *message) {
101     struct ChanNode *sent_chan = chan;
102     if(message[0] == '#') {
103         char *chanName = message;
104         message = strstr(message, " ");
105         if(!message) return;
106         *message = '\0';
107         message++;
108         struct ChanNode *chan2 = getChanByName(chanName);
109         if(chan2)
110             chan = chan2;
111     }
112     message = strdup(message);
113     int bind_index = get_binds_index(message[0]);
114     char *args = strstr(message, " ");
115     if(args) {
116         *args = '\0';
117         args++;
118     }
119     struct cmd_binding *cbind;
120     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
121         if(cbind->botid == client->botid && strcmp(cbind->cmd, message) == 0) {
122             //get a text bot
123             tmp_text_client = get_prefered_bot(client->botid);
124             //parse the arguments...
125             char *arga[MAXNUMPARAMS];
126             char **argv;
127             int argc = 0;
128             if(args) {
129                 while(*args) {
130                     //skip leading spaces
131                     while (*args == ' ')
132                         *args++ = 0;
133                     arga[argc++] = args;
134                     if (argc >= MAXNUMPARAMS)
135                         break;
136                     while (*args != ' ' && *args)
137                         args++;
138                 }
139             }
140             argv = arga;
141             if(argc != 0 && argv[0][0] == '#') {
142                 struct ChanNode *chan2 = getChanByName(argv[0]);
143                 if(chan2) {
144                     argv += 1;
145                     argc -= 1;
146                     chan = chan2;
147                 }
148             }
149             if(cbind->parameters) {
150                 //userdefined parameters...
151                 char *uarga[MAXNUMPARAMS];
152                 char params[strlen(cbind->parameters)+1];
153                 strcpy(params, cbind->parameters);
154                 int uargpos = 0, argi, allargs = 0;
155                 char *ppos = params;
156                 char *prev_ppos = params;
157                 while((ppos = strstr(ppos, " "))) {
158                     *ppos = '\0';
159                     if(prev_ppos[0] == '%') {
160                         prev_ppos++;
161                         if(prev_ppos[strlen(prev_ppos)-1] == '-') {
162                             allargs = 1;
163                             prev_ppos[strlen(prev_ppos)-1] = '\0';
164                         } else
165                             allargs = 0;
166                         argi = atoi(prev_ppos);
167                         if(argi > 0) {
168                             if(argi <= argc) continue;
169                             uarga[uargpos++] = argv[argi-1];
170                             if(allargs) {
171                                 for(;argi < argc; argi++)
172                                     uarga[uargpos++] = argv[argi-1];
173                             }
174                         } else if(!strcmp(prev_ppos, "c"))
175                             uarga[uargpos++] = (chan ? chan->name : NULL);
176                         else if(!strcmp(prev_ppos, "n")) 
177                             uarga[uargpos++] = user->nick;
178                     } else {
179                         uarga[uargpos++] = prev_ppos;
180                     }
181                     ppos++;
182                     prev_ppos = ppos;
183                 }
184                 argv = uarga;
185                 argc = uargpos;
186             }
187             if(argc < cbind->func->paramcount) {
188                 reply(tmp_text_client, user, "MODCMD_LESS_PARAM_COUNT");
189                 break;
190             }
191             if((cbind->func->flags & CMDFLAG_REQUIRE_CHAN) && !chan) {
192                 reply(tmp_text_client, user, "MODCMD_CHAN_REQUIRED");
193                 break;
194             }
195             if((cbind->func->flags & CMDFLAG_CHECK_AUTH) && !(user->flags & USERFLAG_ISAUTHED)) {
196                 //check auth...
197                 struct command_check_user_cache *data = malloc(sizeof(*data));
198                 char **temp_argv = malloc(argc*sizeof(*temp_argv));
199                 if (!data || !temp_argv) {
200                     perror("malloc() failed");
201                     break;
202                 }
203                 memcpy(temp_argv, argv, argc*sizeof(*temp_argv));
204                 data->argv = temp_argv;
205                 data->argc = argc;
206                 data->client = client;
207                 data->user = user;
208                 data->chan = chan;
209                 data->sent_chan = sent_chan;
210                 data->message = message;
211                 data->cbind = cbind;
212                 data->textclient = tmp_text_client;
213                 get_userauth(user, command_checked_auth, data);
214                 return;
215             } else
216                 handle_command_async(client, user, chan, sent_chan, cbind, argv, argc);
217             break;
218         }
219     }
220     free(message);
221 }
222
223 static void handle_command_async(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, struct ChanNode *sent_chan, struct cmd_binding *cbind, char **argv, int argc) {
224     MYSQL_RES *res;
225     MYSQL_ROW row;
226     int uaccess;
227     if((cbind->func->flags & CMDFLAG_REQUIRE_AUTH) && !(user->flags & USERFLAG_ISAUTHED)) {
228         reply(tmp_text_client, user, "MODCMD_AUTH_REQUIRED");
229         return;
230     }
231     if(sent_chan && sent_chan != chan) {
232         //check pubcmd of this channel
233         printf_mysql_query("SELECT `channel_pubcmd` FROM `channels` WHERE `channel_name` = '%s'", escape_string(sent_chan->name));
234         res = mysql_use();
235         if ((row = mysql_fetch_row(res)) != NULL) {
236             uaccess = getChannelAccess(user, sent_chan, 1);
237             if(row[0] && uaccess < atoi(row[0])) { //NOTE: HARDCODED DEFAULT: pubcmd = 0
238                 reply(tmp_text_client, user, "MODCMD_PUBCMD", sent_chan->name);
239                 return;
240             }
241         }
242     }
243     int global_access = ((cbind->flags & CMDFLAG_OVERRIDE_GLOBAL_ACCESS) ? cbind->global_access : cbind->func->global_access);
244     if(global_access > 0) {
245         int user_global_access = 0;
246         printf_mysql_query("SELECT `user_access` FROM `users` WHERE `user_user` = '%s'", escape_string(user->auth));
247         res = mysql_use();
248         if ((row = mysql_fetch_row(res)) != NULL) {
249             user_global_access = atoi(row[0]);
250         }
251         if(user_global_access < global_access) {
252             if(!user_global_access)
253                 reply(tmp_text_client, user, "MODCMD_PRIVILEGED", cbind->cmd);
254             else
255                 reply(tmp_text_client, user, "MODCMD_ACCESS_DENIED");
256             return;
257         }
258     }
259     if((cbind->func->flags & CMDFLAG_REGISTERED_CHAN)) {
260         check_mysql();
261         MYSQL_ROW defaults = NULL;
262         char access_list[256];
263         int access_pos = 0;
264         int access_count = 0;
265         int minaccess = 0;
266         char *str_a, *str_b = cbind->func->channel_access;
267         if(cbind->flags & CMDFLAG_OVERRIDE_CHANNEL_ACCESS)
268             str_b = cbind->channel_access;
269         if(str_b) {
270             while((str_a = strstr(str_b, ","))) {
271                 *str_a = '\0';
272                 if(*str_b[0] == '#') {
273                     access_pos += sprintf(access_list+access_pos, ", `%s`", str_b);
274                     access_count++;
275                 } else {
276                     if(atoi(str_b) > minaccess)
277                         minaccess = atoi(str_b);
278                 }
279                 *str_a = ',';
280                 str_b = str_a+1;
281             }
282             access_pos += sprintf(access_list+access_pos, ", `%s`", str_b);
283             access_count++;
284         } else
285             access_list[0] = '\0';
286         if(!(chan->flags & CHANFLAG_REQUESTED_CHANINFO) || (sent_chan && sent_chan == chan) || access_count || minaccess) {
287             printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = '%s'", access_list, escape_string(chan->name));
288             res = mysql_use();
289             if ((row = mysql_fetch_row(res)) != NULL) {
290                 chan->flags |= CHANFLAG_CHAN_REGISTERED;
291                 chan->channel_id = atoi(row[0]);
292                 if((sent_chan && sent_chan == chan) || access_count || minaccess) {
293                     uaccess = getChannelAccess(user, chan, 1);
294                     if(uaccess < minaccess) {
295                         //ACCESS DENIED
296                         reply(tmp_text_client, user, "MODCMD_ACCESS_DENIED");
297                         return;
298                     }
299                     if(!row[1] && !defaults) {
300                         printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = 'defaults'", access_list);
301                         defaults = mysql_fetch_row(mysql_use());
302                     }
303                     if(sent_chan && (sent_chan == chan) && uaccess < (row[1] ? atoi(row[1]) : atoi(defaults[1]))) {
304                         //PUBCMD
305                         reply(tmp_text_client, user, "MODCMD_PUBCMD", chan->name);
306                         return;
307                     }
308                     int i;
309                     for(i = 0; i < access_count; i++) {
310                         if(!row[2+i] && !defaults) {
311                             printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = 'defaults'", access_list);
312                             defaults = mysql_fetch_row(mysql_use());
313                         }
314                         if(uaccess < (row[2+i] ? atoi(row[2+i]) : atoi(defaults[2+i]))) {
315                             reply(tmp_text_client, user, "MODCMD_ACCESS_DENIED");
316                             return;
317                         }
318                     }
319                 }
320             }
321             chan->flags |= CHANFLAG_REQUESTED_CHANINFO;
322         }
323         if(!(chan->flags & CHANFLAG_CHAN_REGISTERED)) {
324             reply(tmp_text_client, user, "MODCMD_CHAN_REQUIRED");
325             return;
326         }
327         printf_mysql_query("SELECT `botid` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '%d'", chan->channel_id, client->botid);
328         res = mysql_use();
329         if ((row = mysql_fetch_row(res)) == NULL) {
330             reply(tmp_text_client, user, "MODCMD_CHAN_REQUIRED");
331             return;
332         }
333     }
334     if((cbind->func->flags & CMDFLAG_REQUIRE_GOD) && !isGodMode(user)) {
335         reply(tmp_text_client, user, "MODCMD_PRIVILEGED", cbind->cmd);
336         return;
337     }
338     cbind->func->func(client, user, chan, argv, argc);
339 }
340
341 static void got_chanmsg(struct UserNode *user, struct ChanNode *chan, char *message) {
342     fd_set fds;
343     char *trigger;
344     struct ClientSocket *client;
345     FD_ZERO(&fds);
346     for(client = getBots(SOCKET_FLAG_READY, NULL); client; client = getBots(SOCKET_FLAG_READY, client)) {
347         if(isUserOnChan(client->user, chan) && (client->flags & SOCKET_FLAG_PREFERRED) && !FD_ISSET(client->botid, &fds)) {
348             FD_SET(client->botid, &fds);
349             trigger = get_channel_trigger(client->botid, chan);
350             if(stricmplen(message, trigger, strlen(trigger)) == 0) {
351                 handle_command(client, user, chan, message + strlen(trigger));
352             }
353         }
354     }
355     for(client = getBots(SOCKET_FLAG_READY, NULL); client; client = getBots(SOCKET_FLAG_READY, client)) {
356         if(isUserOnChan(client->user, chan) && !FD_ISSET(client->botid, &fds)) {
357             FD_SET(client->botid, &fds);
358             trigger = get_channel_trigger(client->botid, chan);
359             if(stricmplen(message, trigger, strlen(trigger)) == 0) {
360                 handle_command(client, user, chan, message + strlen(trigger));
361             }
362         }
363     }
364 }
365
366 static void got_privmsg(struct UserNode *user, struct UserNode *target, char *message) {
367     struct ClientSocket *client;
368     for(client = getBots(SOCKET_FLAG_READY, NULL); client; client = getBots(SOCKET_FLAG_READY, client)) {
369         if(client->user == target) {
370             handle_command(client, user, NULL, message);
371         }
372     }
373 }
374
375 int register_command(int botid, char *name, cmd_bind_t *func, int paramcount, unsigned int flags, char *channel_access, int global_access) {
376     struct cmd_function *cmdfunc;
377     for(cmdfunc = cmd_functions; cmdfunc; cmdfunc = cmdfunc->next) {
378         if(cmdfunc->botid == botid && strcmp(cmdfunc->name, name) == 0)
379             return 0;
380     }
381     cmdfunc = malloc(sizeof(*cmdfunc));
382     if (!cmdfunc) {
383         perror("malloc() failed");
384         return 0;
385     }
386     cmdfunc->botid = botid;
387     cmdfunc->name = strdup(name);
388     cmdfunc->func = func;
389     cmdfunc->flags = flags;
390     cmdfunc->paramcount = paramcount;
391     cmdfunc->channel_access = channel_access;
392     cmdfunc->global_access = global_access;
393     cmdfunc->next = cmd_functions;
394     cmd_functions = cmdfunc;
395     return 1;
396 }
397
398 int set_trigger_callback(int botid, trigger_callback_t *func) {
399     static struct trigger_callback *cb = NULL;
400     for(cb = trigger_callbacks; cb; cb = cb->next) {
401         if(cb->botid == botid)
402             break;
403     }
404     if(!cb) {
405         cb = malloc(sizeof(*cb));
406         if (!cb) {
407             perror("malloc() failed");
408             return 0;
409         }
410         cb->botid = botid;
411         cb->next = trigger_callbacks;
412         trigger_callbacks = cb;
413     }
414     cb->func = func;
415     return 1;
416 }
417
418 int changeChannelTrigger(int botid, struct ChanNode *chan, char *new_trigger) {
419     struct trigger_cache *trigger;
420     for(trigger = chan->trigger; trigger; trigger = trigger->next) {
421         if(trigger->botid == botid) {
422             free(trigger->trigger);
423             trigger->trigger = strdup(new_trigger);
424             return 1;
425         }
426     }
427     return 0;
428 }
429
430 int bind_cmd_to_function(int botid, char *cmd, struct cmd_function *func) {
431     int bind_index = get_binds_index(cmd[0]);
432     struct cmd_binding *cbind;
433     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
434         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0)
435             return 0;
436     }
437     cbind = malloc(sizeof(*cbind));
438     if (!cbind) {
439         perror("malloc() failed");
440         return 0;
441     }
442     cbind->botid = botid;
443     cbind->cmd = strdup(cmd);
444     cbind->func = func;
445     cbind->parameters = NULL;
446     cbind->global_access = 0;
447     cbind->channel_access = NULL;
448     cbind->flags = 0;
449     cbind->next = cmd_binds[bind_index];
450     cmd_binds[bind_index] = cbind;
451     return 1;
452 }
453
454 int bind_cmd_to_command(int botid, char *cmd, char *func) {
455     struct cmd_function *cmdfunc;
456     for(cmdfunc = cmd_functions; cmdfunc; cmdfunc = cmdfunc->next) {
457         if(cmdfunc->botid == botid && strcmp(cmdfunc->name, func) == 0)
458             break;
459     }
460     if(!cmdfunc) return 0;
461     int bind_index = get_binds_index(cmd[0]);
462     struct cmd_binding *cbind;
463     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
464         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0)
465             return 0;
466     }
467     cbind = malloc(sizeof(*cbind));
468     if (!cbind) {
469         perror("malloc() failed");
470         return 0;
471     }
472     cbind->botid = botid;
473     cbind->cmd = strdup(cmd);
474     cbind->func = cmdfunc;
475     cbind->next = cmd_binds[bind_index];
476     cbind->parameters = NULL;
477     cbind->global_access = 0;
478     cbind->channel_access = NULL;
479     cbind->flags = 0;
480     cmd_binds[bind_index] = cbind;
481     return 1;
482 }
483
484 int unbind_cmd(int botid, char *cmd) {
485     int bind_index = get_binds_index(cmd[0]);
486     struct cmd_binding *cbind, *last = NULL;
487     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
488         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
489             if(last)
490                 last->next = cbind->next;
491             else
492                 cmd_binds[bind_index] = cbind->next;
493             free(cbind->cmd);
494             if(cbind->parameters)
495                 free(cbind->parameters);
496             free(cbind);
497             return 1;
498         } else
499             last = cbind;
500     }
501     return 0;
502 }
503
504 struct ClientSocket *getTextBot() {
505     return tmp_text_client;
506 }
507
508 void init_modcmd() {
509     cmd_binds = calloc(27, sizeof(*cmd_binds));
510     bind_chanmsg(got_chanmsg);
511     bind_privmsg(got_privmsg);
512     register_default_language_table(msgtab);
513 }
514
515 void free_modcmd() {
516     int i;
517     for(i = 0; i < 27; i++) {
518         struct cmd_binding *cbind, *next;
519         for(cbind = cmd_binds[i]; cbind; cbind = next) {
520             next = cbind->next;
521             free(cbind->cmd);
522             if(cbind->parameters)
523                 free(cbind->parameters);
524             if(cbind->channel_access)
525                 free(cbind->channel_access);
526             free(cbind);
527         }
528     }
529     free(cmd_binds);
530     struct cmd_function *cmdfunct, *next;
531     for(cmdfunct = cmd_functions; cmdfunct; cmdfunct = next) {
532         next = cmdfunct->next;
533         free(cmdfunct->name);
534         free(cmdfunct);
535     }
536     struct trigger_callback *cb, *next_cb;
537     for(cb = trigger_callbacks; cb; cb = next_cb) {
538         next_cb = cb->next;
539         free(next_cb);
540     }
541     cmd_functions = NULL;
542     trigger_callbacks = NULL;
543 }
544
545 void bind_set_parameters(int botid, char *cmd, char *parameters) {
546     int bind_index = get_binds_index(cmd[0]);
547     struct cmd_binding *cbind;
548     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
549         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
550             if(cbind->parameters)
551                 free(cbind->parameters);
552             cbind->parameters = strdup(parameters);
553             return;
554         }
555     }
556 }
557
558 void bind_set_global_access(int botid, char *cmd, int gaccess) {
559     int bind_index = get_binds_index(cmd[0]);
560     struct cmd_binding *cbind;
561     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
562         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
563             if(gaccess > -1) {
564                 cbind->global_access = gaccess;
565                 cbind->flags |= CMDFLAG_OVERRIDE_GLOBAL_ACCESS;
566             } else {
567                 cbind->flags &= ~CMDFLAG_OVERRIDE_GLOBAL_ACCESS;
568             }
569             return;
570         }
571     }
572 }
573
574 void bind_set_channel_access(int botid, char *cmd, char *chanaccess) {
575     int bind_index = get_binds_index(cmd[0]);
576     struct cmd_binding *cbind;
577     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
578         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
579             if(cbind->channel_access)
580                 free(cbind->channel_access);
581             if(chanaccess) {
582                 cbind->channel_access = strdup(chanaccess);
583                 cbind->flags |= CMDFLAG_OVERRIDE_CHANNEL_ACCESS;
584             } else {
585                 cbind->channel_access = NULL;
586                 cbind->flags &= ~CMDFLAG_OVERRIDE_CHANNEL_ACCESS;
587             }
588             return;
589         }
590     }
591 }