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