added some code & compiler information to cmd_netinfo
[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, *str_c;
267         if(cbind->flags & CMDFLAG_OVERRIDE_CHANNEL_ACCESS)
268             str_b = cbind->channel_access;
269         access_list[0] = '\0';
270         if(str_b) {
271             str_c = strdup(str_b);
272             str_b = str_c;
273             while((str_a = str_b)) {
274                 str_b = strstr(str_a, ",");
275                 if(str_b) {
276                     *str_b = '\0';
277                     str_b++;
278                 }
279                 if(*str_a == '#') {
280                     str_a++;
281                     access_pos += sprintf(access_list+access_pos, ", `%s`", str_a);
282                     access_count++;
283                 } else {
284                     if(atoi(str_a) > minaccess)
285                         minaccess = atoi(str_a);
286                 }
287             }
288             free(str_c);
289         }
290         if(!(chan->flags & CHANFLAG_REQUESTED_CHANINFO) || (sent_chan && sent_chan == chan) || access_count || minaccess) {
291             printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = '%s'", access_list, escape_string(chan->name));
292             res = mysql_use();
293             if ((row = mysql_fetch_row(res)) != NULL) {
294                 chan->flags |= CHANFLAG_CHAN_REGISTERED;
295                 chan->channel_id = atoi(row[0]);
296                 if((sent_chan && sent_chan == chan) || access_count || minaccess) {
297                     uaccess = getChannelAccess(user, chan, 1);
298                     if(uaccess < minaccess) {
299                         //ACCESS DENIED
300                         reply(tmp_text_client, user, "MODCMD_ACCESS_DENIED");
301                         return;
302                     }
303                     if(!row[1] && !defaults) {
304                         printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = 'defaults'", access_list);
305                         defaults = mysql_fetch_row(mysql_use());
306                     }
307                     if(sent_chan && (sent_chan == chan) && uaccess < (row[1] ? atoi(row[1]) : atoi(defaults[1]))) {
308                         //PUBCMD
309                         reply(tmp_text_client, user, "MODCMD_PUBCMD", chan->name);
310                         return;
311                     }
312                     int i;
313                     for(i = 0; i < access_count; i++) {
314                         if(!row[2+i] && !defaults) {
315                             printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = 'defaults'", access_list);
316                             defaults = mysql_fetch_row(mysql_use());
317                         }
318                         if(uaccess < (row[2+i] ? atoi(row[2+i]) : atoi(defaults[2+i]))) {
319                             reply(tmp_text_client, user, "MODCMD_ACCESS_DENIED");
320                             return;
321                         }
322                     }
323                 }
324             }
325             chan->flags |= CHANFLAG_REQUESTED_CHANINFO;
326         }
327         if(!(chan->flags & CHANFLAG_CHAN_REGISTERED)) {
328             reply(tmp_text_client, user, "MODCMD_CHAN_REQUIRED");
329             return;
330         }
331         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);
332         res = mysql_use();
333         if ((row = mysql_fetch_row(res)) == NULL) {
334             reply(tmp_text_client, user, "MODCMD_CHAN_REQUIRED");
335             return;
336         }
337     }
338     if((cbind->func->flags & CMDFLAG_REQUIRE_GOD) && !isGodMode(user)) {
339         reply(tmp_text_client, user, "MODCMD_PRIVILEGED", cbind->cmd);
340         return;
341     }
342     cbind->func->func(client, user, chan, argv, argc);
343 }
344
345 static void got_chanmsg(struct UserNode *user, struct ChanNode *chan, char *message) {
346     fd_set fds;
347     char *trigger;
348     struct ClientSocket *client;
349     FD_ZERO(&fds);
350     for(client = getBots(SOCKET_FLAG_READY, NULL); client; client = getBots(SOCKET_FLAG_READY, client)) {
351         if(isUserOnChan(client->user, chan) && (client->flags & SOCKET_FLAG_PREFERRED) && !FD_ISSET(client->botid, &fds)) {
352             FD_SET(client->botid, &fds);
353             trigger = get_channel_trigger(client->botid, chan);
354             if(stricmplen(message, trigger, strlen(trigger)) == 0) {
355                 handle_command(client, user, chan, message + strlen(trigger));
356             }
357         }
358     }
359     for(client = getBots(SOCKET_FLAG_READY, NULL); client; client = getBots(SOCKET_FLAG_READY, client)) {
360         if(isUserOnChan(client->user, chan) && !FD_ISSET(client->botid, &fds)) {
361             FD_SET(client->botid, &fds);
362             trigger = get_channel_trigger(client->botid, chan);
363             if(stricmplen(message, trigger, strlen(trigger)) == 0) {
364                 handle_command(client, user, chan, message + strlen(trigger));
365             }
366         }
367     }
368 }
369
370 static void got_privmsg(struct UserNode *user, struct UserNode *target, char *message) {
371     struct ClientSocket *client;
372     for(client = getBots(SOCKET_FLAG_READY, NULL); client; client = getBots(SOCKET_FLAG_READY, client)) {
373         if(client->user == target) {
374             handle_command(client, user, NULL, message);
375         }
376     }
377 }
378
379 int register_command(int botid, char *name, cmd_bind_t *func, int paramcount, unsigned int flags, char *channel_access, int global_access) {
380     struct cmd_function *cmdfunc;
381     for(cmdfunc = cmd_functions; cmdfunc; cmdfunc = cmdfunc->next) {
382         if(cmdfunc->botid == botid && strcmp(cmdfunc->name, name) == 0)
383             return 0;
384     }
385     cmdfunc = malloc(sizeof(*cmdfunc));
386     if (!cmdfunc) {
387         perror("malloc() failed");
388         return 0;
389     }
390     cmdfunc->botid = botid;
391     cmdfunc->name = strdup(name);
392     cmdfunc->func = func;
393     cmdfunc->flags = flags;
394     cmdfunc->paramcount = paramcount;
395     cmdfunc->channel_access = channel_access;
396     cmdfunc->global_access = global_access;
397     cmdfunc->next = cmd_functions;
398     cmd_functions = cmdfunc;
399     return 1;
400 }
401
402 int set_trigger_callback(int botid, trigger_callback_t *func) {
403     static struct trigger_callback *cb = NULL;
404     for(cb = trigger_callbacks; cb; cb = cb->next) {
405         if(cb->botid == botid)
406             break;
407     }
408     if(!cb) {
409         cb = malloc(sizeof(*cb));
410         if (!cb) {
411             perror("malloc() failed");
412             return 0;
413         }
414         cb->botid = botid;
415         cb->next = trigger_callbacks;
416         trigger_callbacks = cb;
417     }
418     cb->func = func;
419     return 1;
420 }
421
422 int changeChannelTrigger(int botid, struct ChanNode *chan, char *new_trigger) {
423     struct trigger_cache *trigger;
424     for(trigger = chan->trigger; trigger; trigger = trigger->next) {
425         if(trigger->botid == botid) {
426             free(trigger->trigger);
427             trigger->trigger = strdup(new_trigger);
428             return 1;
429         }
430     }
431     return 0;
432 }
433
434 int bind_cmd_to_function(int botid, char *cmd, struct cmd_function *func) {
435     int bind_index = get_binds_index(cmd[0]);
436     struct cmd_binding *cbind;
437     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
438         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0)
439             return 0;
440     }
441     cbind = malloc(sizeof(*cbind));
442     if (!cbind) {
443         perror("malloc() failed");
444         return 0;
445     }
446     cbind->botid = botid;
447     cbind->cmd = strdup(cmd);
448     cbind->func = func;
449     cbind->parameters = NULL;
450     cbind->global_access = 0;
451     cbind->channel_access = NULL;
452     cbind->flags = 0;
453     cbind->next = cmd_binds[bind_index];
454     cmd_binds[bind_index] = cbind;
455     return 1;
456 }
457
458 int bind_cmd_to_command(int botid, char *cmd, char *func) {
459     struct cmd_function *cmdfunc;
460     for(cmdfunc = cmd_functions; cmdfunc; cmdfunc = cmdfunc->next) {
461         if(cmdfunc->botid == botid && strcmp(cmdfunc->name, func) == 0)
462             break;
463     }
464     if(!cmdfunc) return 0;
465     int bind_index = get_binds_index(cmd[0]);
466     struct cmd_binding *cbind;
467     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
468         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0)
469             return 0;
470     }
471     cbind = malloc(sizeof(*cbind));
472     if (!cbind) {
473         perror("malloc() failed");
474         return 0;
475     }
476     cbind->botid = botid;
477     cbind->cmd = strdup(cmd);
478     cbind->func = cmdfunc;
479     cbind->next = cmd_binds[bind_index];
480     cbind->parameters = NULL;
481     cbind->global_access = 0;
482     cbind->channel_access = NULL;
483     cbind->flags = 0;
484     cmd_binds[bind_index] = cbind;
485     return 1;
486 }
487
488 int unbind_cmd(int botid, char *cmd) {
489     int bind_index = get_binds_index(cmd[0]);
490     struct cmd_binding *cbind, *last = NULL;
491     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
492         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
493             if(last)
494                 last->next = cbind->next;
495             else
496                 cmd_binds[bind_index] = cbind->next;
497             free(cbind->cmd);
498             if(cbind->parameters)
499                 free(cbind->parameters);
500             free(cbind);
501             return 1;
502         } else
503             last = cbind;
504     }
505     return 0;
506 }
507
508 struct ClientSocket *getTextBot() {
509     return tmp_text_client;
510 }
511
512 void init_modcmd() {
513     cmd_binds = calloc(27, sizeof(*cmd_binds));
514     bind_chanmsg(got_chanmsg);
515     bind_privmsg(got_privmsg);
516     register_default_language_table(msgtab);
517 }
518
519 void free_modcmd() {
520     int i;
521     for(i = 0; i < 27; i++) {
522         struct cmd_binding *cbind, *next;
523         for(cbind = cmd_binds[i]; cbind; cbind = next) {
524             next = cbind->next;
525             free(cbind->cmd);
526             if(cbind->parameters)
527                 free(cbind->parameters);
528             if(cbind->channel_access)
529                 free(cbind->channel_access);
530             free(cbind);
531         }
532     }
533     free(cmd_binds);
534     struct cmd_function *cmdfunct, *next;
535     for(cmdfunct = cmd_functions; cmdfunct; cmdfunct = next) {
536         next = cmdfunct->next;
537         free(cmdfunct->name);
538         free(cmdfunct);
539     }
540     struct trigger_callback *cb, *next_cb;
541     for(cb = trigger_callbacks; cb; cb = next_cb) {
542         next_cb = cb->next;
543         free(next_cb);
544     }
545     cmd_functions = NULL;
546     trigger_callbacks = NULL;
547 }
548
549 void bind_set_parameters(int botid, char *cmd, char *parameters) {
550     int bind_index = get_binds_index(cmd[0]);
551     struct cmd_binding *cbind;
552     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
553         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
554             if(cbind->parameters)
555                 free(cbind->parameters);
556             cbind->parameters = strdup(parameters);
557             return;
558         }
559     }
560 }
561
562 void bind_set_global_access(int botid, char *cmd, int gaccess) {
563     int bind_index = get_binds_index(cmd[0]);
564     struct cmd_binding *cbind;
565     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
566         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
567             if(gaccess > -1) {
568                 cbind->global_access = gaccess;
569                 cbind->flags |= CMDFLAG_OVERRIDE_GLOBAL_ACCESS;
570             } else {
571                 cbind->flags &= ~CMDFLAG_OVERRIDE_GLOBAL_ACCESS;
572             }
573             return;
574         }
575     }
576 }
577
578 void bind_set_channel_access(int botid, char *cmd, char *chanaccess) {
579     int bind_index = get_binds_index(cmd[0]);
580     struct cmd_binding *cbind;
581     for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
582         if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
583             if(cbind->channel_access)
584                 free(cbind->channel_access);
585             if(chanaccess) {
586                 cbind->channel_access = strdup(chanaccess);
587                 cbind->flags |= CMDFLAG_OVERRIDE_CHANNEL_ACCESS;
588             } else {
589                 cbind->channel_access = NULL;
590                 cbind->flags &= ~CMDFLAG_OVERRIDE_CHANNEL_ACCESS;
591             }
592             return;
593         }
594     }
595 }