some fixes for previous commit
[NeonServV5.git] / src / main.c
1 /* main.c - NeonServ v5.5
2  * Copyright (C) 2011-2012  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 "main.h"
19 #include "signal.h"
20 #include "ClientSocket.h"
21 #include "UserNode.h"
22 #include "ChanNode.h"
23 #include "IRCEvents.h"
24 #include "IRCParser.h"
25 #include "modcmd.h"
26 #include "WHOHandler.h"
27 #include "bots.h"
28 #include "mysqlConn.h"
29 #include "HandleInfoHandler.h"
30 #include "lang.h"
31 #include "tools.h"
32 #include "timeq.h"
33 #include "EventLogger.h"
34 #include "ModeNode.h"
35 #include "IRCQueue.h"
36 #include "DBHelper.h"
37 #include "ConfigParser.h"
38 #include "QServer.h"
39 #include "version.h"
40 #include "modules.h"
41 #include "module_commands.h"
42 #include "ModuleFunctions.h"
43 #include "IOHandler.h"
44
45 time_t start_time;
46 static int running, hard_restart;
47 static int statistics_requested_lusers = 0;
48 int statistics_enabled;
49 TIMEQ_CALLBACK(main_statistics);
50 TIMEQ_CALLBACK(main_checkauths);
51 static int daemonized = 0;
52 static int print_loglevel = 0;
53 static FILE *log_fptr = NULL;
54 static int process_argc;
55 static char **process_argv;
56 #ifdef HAVE_THREADS
57 int running_threads;
58 pthread_mutex_t cache_sync;
59 pthread_mutex_t whohandler_sync, whohandler_mass_sync;
60 static pthread_mutex_t log_sync;
61 #endif
62
63 static void check_firstrun();
64
65 void cleanup() {
66     stop_modules();
67     free_sockets();
68     qserver_free();
69     free_parser();
70     free_UserNode();
71     free_ChanNode();
72     free_bind();
73     free_modcmd();
74     free_whoqueue();
75     free_mysql();
76     free_handleinfohandler();
77     free_lang();
78 }
79
80 static int load_mysql_config() {
81     char *mysql_host, *mysql_user, *mysql_pass, *mysql_base;
82     int mysql_serverport;
83     
84     mysql_host = get_string_field("MySQL.host");
85     if(!mysql_host) {
86         perror("invalid neonserv.conf: missing MySQL.host");
87         return 0;
88     }
89     mysql_serverport = get_int_field("MySQL.port");
90     if(!mysql_serverport)
91         mysql_serverport = 3306;
92     mysql_user = get_string_field("MySQL.user");
93     if(!mysql_user) {
94         perror("invalid neonserv.conf: missing MySQL.user");
95         return 0;
96     }
97     mysql_pass = get_string_field("MySQL.pass");
98     if(!mysql_pass) {
99         perror("invalid neonserv.conf: missing MySQL.pass");
100         return 0;
101     }
102     mysql_base = get_string_field("MySQL.base");
103     if(!mysql_base) {
104         perror("invalid neonserv.conf: missing MySQL base");
105         return 0;
106     }
107     init_mysql(mysql_host, mysql_serverport, mysql_user, mysql_pass, mysql_base);
108     return 1;
109 }
110
111 static TIMEQ_CALLBACK(clear_cache) {
112     timeq_add(CLEAR_CACHE_INTERVAL, 0, clear_cache, NULL);
113     clearTempUsers();
114     destroyEvents();
115     mysql_free();
116 }
117
118 void *thread_main(void *arg) {
119     while(running) {
120         iohandler_poll();
121     }
122     return NULL;
123 }
124
125 #ifdef HAVE_THREADS
126 pthread_t *current_threads = NULL;
127
128 int getCurrentThreadID() {
129     if(!current_threads) return 0;
130     int i;
131     unsigned int my_tid = (unsigned int) pthread_self_tid();
132     for(i = 0; i < running_threads; i++) {
133         #ifdef WIN32
134         if((unsigned int) current_threads[i].p == my_tid)
135         #else
136         if((unsigned int) current_threads[i] == my_tid)
137         #endif
138             return i+1;
139     }
140     return 0;
141 }
142
143 #endif
144
145 void exit_daemon() {
146     running = 0;
147     if(daemonized) {
148         remove(PID_FILE);
149     }
150     if(log_fptr) {
151         fclose(log_fptr);
152         log_fptr = NULL;
153     }
154 }
155
156 int main(int argc, char *argv[]) {
157     int run_as_daemon = 1;
158     int c;
159     process_argv = argv;
160     process_argc = argc;
161     printf("NeonServ v%s\n\n", NEONSERV_VERSION);
162     struct option options[] = {
163         {"show", 1, 0, 's'},
164         {"foreground", 0, 0, 'f'},
165         {"help", 0, 0, 'h'},
166         {"version", 0, 0, 'v'},
167         {0, 0, 0, 0}
168     };
169     while ((c = getopt_long(argc, argv, "s:fvh", options, NULL)) != -1) {
170         switch (c) {
171         case 's':
172             print_loglevel = atoi(optarg);
173             break;
174         case 'f':
175             run_as_daemon = 0;
176             break;
177         case 'v':
178             printf("Version: %s.%d (%s)\n", NEONSERV_VERSION, patchlevel, (strcmp(revision, "") ? revision : "-"));
179             printf("Build: #%s %s (%s lines, " COMPILER ")\n", compilation, creation, codelines);
180             exit(0);
181             break;
182         case 'h':
183             printf("Usage: ./neonserv [-s loglevel] [-f] [-h|-v]\n");
184             printf(" -s, --show           show log lines matching loglevel in stdout.\n");
185             printf(" -f, --foreground     run NeonServ in the foreground.\n");
186             printf(" -h, --help           prints this usage message.\n");
187             printf(" -v, --version        prints this program's version.\n");
188             exit(0);
189             break;
190         }
191     }
192     #ifndef WIN32
193     if(geteuid() == 0 || getuid() == 0) {
194         fprintf(stderr, "NeonServ may not be run with super user privileges.\n");
195         exit(0);
196     }
197     #endif
198     #ifdef ENABLE_MEMORY_DEBUG
199     initMemoryDebug();
200     #endif
201     if(!loadConfig(CONF_FILE)) {
202         fprintf(stderr, "Unable to load " CONF_FILE "\n");
203         exit(0);
204     }
205     #if HAVE_THREADS
206     THREAD_MUTEX_INIT(log_sync);
207     #endif
208     if(!load_mysql_config()) {
209         fprintf(stderr, "Unable to connect to MySQL\n");
210         exit(0);
211     }
212     check_firstrun();
213     char **modulelist = get_all_fieldnames("modules");
214     if(!modulelist || !modulelist[0]) {
215         fprintf(stderr, "no modules loaded... Please update your configuration!\n");
216         exit(0);
217     }
218     free(modulelist);
219     if (run_as_daemon) {
220         #ifndef WIN32
221         /* Attempt to fork into the background if daemon mode is on. */
222         pid_t pid = fork();
223         if (pid < 0) {
224             fprintf(stderr, "Unable to fork: %s\n", strerror(errno));
225         } else if (pid > 0) {
226             printf("Forking into the background (pid: %d)...\n", pid);
227             putlog(LOGLEVEL_INFO, "Forking into the background (pid: %d)...\n", pid);
228             exit(0);
229         }
230         setsid();
231         daemonized = 1;
232         atexit(exit_daemon);
233         FILE *pidfile = fopen(PID_FILE, "w");
234         if (pidfile == NULL) {
235             fprintf(stderr, "Unable to create PID file: %s\n", strerror(errno));
236             putlog(LOGLEVEL_ERROR, "Unable to create PID file: %s\n", strerror(errno));
237         } else {
238             fprintf(pidfile, "%i\n", (int)getpid());
239             fclose(pidfile);
240         }
241                 FILE *retn;
242         fclose(stdin); retn = fopen("/dev/null", "r");
243         fclose(stdout); retn = fopen("/dev/null", "w");
244         fclose(stderr); retn = fopen("/dev/null", "w");
245         #endif
246     }
247     
248 main:
249     signal(SIGABRT, sighandler);
250     signal(SIGFPE, sighandler);
251     signal(SIGILL, sighandler);
252     signal(SIGINT, sighandler);
253     signal(SIGSEGV, sighandler);
254     signal(SIGTERM, sighandler);
255     
256     start_time = time(0);
257     
258     statistics_enabled = get_int_field("statistics.enable");
259     
260     #ifdef HAVE_THREADS
261     THREAD_MUTEX_INIT(cache_sync);
262     THREAD_MUTEX_INIT(whohandler_sync);
263     THREAD_MUTEX_INIT(whohandler_mass_sync);
264     #endif
265     
266     init_lang();
267     init_parser();
268     init_UserNode();
269     init_ChanNode();
270     init_ModeNode();
271     init_bind();
272         init_modcmd();
273     register_module_commands();
274     init_handleinfohandler();
275     init_tools();
276     init_modulefunctions();
277     loadModules();
278     init_bots();
279     init_DBHelper();
280     qserver_init();
281     
282     load_languages();
283     int update_minutes = get_int_field("statistics.frequency");
284     if(!update_minutes) update_minutes = 2;
285     timeq_add(update_minutes * 60 + 10, 0, main_statistics, NULL);
286     
287     timeq_add(90, 0, main_checkauths, NULL);
288     
289     timeq_add(CLEAR_CACHE_INTERVAL, 0, clear_cache, NULL);
290     
291     int worker_threads = get_int_field("General.worker_threads");
292     if(!worker_threads) worker_threads = 1;
293     running = 1;
294     #ifdef HAVE_THREADS
295     int tid_id = 0;
296     current_threads = calloc(worker_threads, sizeof(*current_threads));
297     for(tid_id = 0; tid_id < worker_threads; tid_id++) {
298         running_threads++;
299         pthread_create(&current_threads[tid_id], NULL, thread_main, NULL);
300     }
301     #endif
302     thread_main(NULL);
303     #ifdef HAVE_THREADS
304     for(tid_id = 0; tid_id < worker_threads; tid_id++) {
305         pthread_join(current_threads[tid_id], NULL);
306     }
307     running_threads = 0;
308     #endif
309     cleanup();
310     if(hard_restart) {
311         restart_process();
312     }
313     goto main;
314 }
315
316 void restart_process() {
317     /* Append a NULL to the end of argv[]. */
318     char **restart_argv = (char **)alloca((process_argc + 1) * sizeof(char *));
319     memcpy(restart_argv, process_argv, process_argc * sizeof(char *));
320     restart_argv[process_argc] = NULL;
321     #ifdef WIN32
322     execv(process_argv[0], (const char * const*)restart_argv);
323     #else
324     execv(process_argv[0], restart_argv);
325     #endif
326 }
327
328 int stricmp (const char *s1, const char *s2)
329 {
330    if (s1 == NULL) return s2 == NULL ? 0 : -(*s2);
331    if (s2 == NULL) return *s1;
332    char c1, c2;
333    while ((c1 = tolower (*s1)) == (c2 = tolower (*s2)))
334    {
335      if (*s1 == '\0') break;
336      ++s1; ++s2;
337    }
338    return c1 - c2;
339 }
340
341 int stricmplen (const char *s1, const char *s2, int len)
342 {
343    if (s1 == NULL) return s2 == NULL ? 0 : -(*s2);
344    if (s2 == NULL) return *s1;
345    char c1, c2;
346    int i = 0;
347    while ((c1 = tolower (*s1)) == (c2 = tolower (*s2)))
348    {
349      i++;
350      if (*s1 == '\0') break;
351      ++s1; ++s2;
352      if(i == len) break;
353    }
354    return c1 - c2;
355 }
356
357 void restart_bot(int do_hard_restart) {
358     hard_restart = do_hard_restart;
359     running = 0;
360 }
361
362 void stop_bot() {
363     cleanup();
364     exit(0);
365 }
366
367 void reload_config() {
368     loadConfig(CONF_FILE);
369 }
370
371 static int getCurrentSecondsOfDay() {
372     time_t now = time(0);
373     struct tm *timeofday = localtime(&now);
374     int seconds = 0;
375     seconds += timeofday->tm_hour * 3600;
376     seconds += timeofday->tm_min * 60;
377     seconds += timeofday->tm_sec;
378     return seconds;
379 }
380
381 static AUTHLOOKUP_CALLBACK(main_checkauths_callback) {
382     //check if registered is still valid
383     MYSQL_RES *res;
384     MYSQL_ROW row;
385     printf_mysql_query("SELECT `user_id`, `user_registered` FROM `users` WHERE `user_user` = '%s'", escape_string(auth));
386     res = mysql_use();
387     if ((row = mysql_fetch_row(res)) != NULL) {
388         int diff = registered - atoi(row[1]);
389         if(diff < 0)
390             diff *= -1;
391         if(!exists || (strcmp(row[1], "0") && diff > 86400)) {
392             //User is no longer valid! Delete it...
393             deleteUser(atoi(row[0]));
394             char *alertchan = get_string_field("General.CheckAuths.alertchan");
395             if(alertchan) {
396                 char reason[MAXLEN];
397                 if(!exists) {
398                     strcpy(reason, "USER_NOT_EXISTS");
399                 } else {
400                     sprintf(reason, "USER_REGISTERED_MISSMATCH: %lu, expected %d (diff: %d)", (unsigned long) registered, atoi(row[1]), diff);
401                 }
402                 struct ChanNode *alertchan_chan = getChanByName(alertchan);
403                 struct ClientSocket *alertclient;
404                 if(alertchan_chan && (alertclient = getChannelBot(alertchan_chan, 0)) != NULL) {
405                     putsock(alertclient, "PRIVMSG %s :Deleted User %s (%s)", alertchan_chan->name, auth, reason);
406                 }
407             }
408         } else if(exists && !strcmp(row[1], "0")) {
409             printf_mysql_query("UPDATE `users` SET `user_registered` = '%lu', `user_lastcheck` = UNIX_TIMESTAMP() WHERE `user_id` = '%s'", (unsigned long) registered, row[0]);
410         } else {
411             printf_mysql_query("UPDATE `users` SET `user_lastcheck` = UNIX_TIMESTAMP() WHERE `user_id` = '%s'", row[0]);
412         }
413     }
414 }
415
416 TIMEQ_CALLBACK(main_checkauths) {
417     int next_call = 600;
418     if(get_int_field("General.CheckAuths.enabled")) {
419         int check_start_time = get_int_field("General.CheckAuths.start_time") * 3600;
420         int duration = get_int_field("General.CheckAuths.duration") * 60;
421         int now = getCurrentSecondsOfDay();
422         if(now < check_start_time && check_start_time+duration >= 86400) {
423             check_start_time -= 86400;
424         }
425         if(now >= check_start_time && now < (check_start_time + duration)) {
426             next_call = get_int_field("General.CheckAuths.interval");
427             //get the "longest-unchecked-user"
428             MYSQL_RES *res;
429             MYSQL_ROW row;
430             int lastcheck;
431             time_t unixtime = time(0);
432             int min_unckecked = get_int_field("General.CheckAuths.min_unckecked");
433             printf_mysql_query("SELECT `user_user`, `user_lastcheck` FROM `users` ORDER BY `user_lastcheck` ASC LIMIT 1");
434             res = mysql_use();
435             if ((row = mysql_fetch_row(res)) != NULL) {
436                 lastcheck = atoi(row[1]);
437                 if(!lastcheck || unixtime - lastcheck >= min_unckecked) {
438                     lookup_authname(row[0], 0, main_checkauths_callback, NULL);
439                 } else 
440                     next_call = 300;
441             }
442         } else {
443             int pending;
444             if(now > check_start_time)
445                 pending = 86400 - now + check_start_time;
446             else
447                 pending = check_start_time - now;
448             if(pending < 600)
449                 next_call = pending;
450         }
451         
452     }
453     timeq_add(next_call, 0, main_checkauths, NULL);
454 }
455
456 TIMEQ_CALLBACK(main_statistics) {
457     int update_minutes = get_int_field("statistics.frequency");
458     if(!update_minutes) update_minutes = 2;
459     timeq_add(update_minutes * 60, 0, main_statistics, NULL);
460     if(get_int_field("statistics.enable")) {
461         statistics_enabled = 1;
462         statistics_requested_lusers = 1;
463         if(get_int_field("statistics.include_lusers")) {
464             struct ClientSocket *bot, *lusersbot = NULL;
465             for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
466                 if(bot->flags & SOCKET_FLAG_PREFERRED)
467                     lusersbot = bot;
468             }
469             bot = lusersbot;
470             if(bot == NULL) bot = getBots(SOCKET_FLAG_READY, NULL);
471             putsock(bot, "LUSERS");
472         } else {
473             statistics_update();
474         }
475     } else
476         statistics_enabled = 0;
477 }
478
479 int statistics_update() {
480     if(get_int_field("statistics.enable") && statistics_requested_lusers && get_string_field("statistics.execute")) {
481         statistics_requested_lusers = 0;
482         char command[MAXLEN];
483         /* parameters:
484          - visible users
485          - visible chanusers
486          - visible channels
487          - privmsg per minute
488          - commands per minute
489          - network users
490          - network channels
491         */
492         sprintf(command, "%s %d %d %d %d %d %d %d", get_string_field("statistics.execute"), getUserCount(), getChanUserCount(), getChannelCount(), statistics_privmsg, statistics_commands, statistics_network_users, statistics_network_channels);
493         statistics_privmsg = 0;
494         statistics_commands = 0;
495         return system(command);
496     }
497         return -1;
498 }
499
500 time_t getStartTime() {
501     return start_time;
502 }
503
504 int getRunningThreads() {
505         #ifdef HAVE_THREADS
506     return running_threads;
507         #else
508         return 1;
509         #endif
510 }
511
512 void write_log(int loglevel, const char *line, int len) {
513     SYNCHRONIZE(log_sync);
514     if(!daemonized && (print_loglevel & loglevel)) {
515         printf("%s", line);
516     } else if(!daemonized && loglevel == LOGLEVEL_ERROR) {
517         fprintf(stderr, "%s", line);
518     }
519     if(get_int_field("log.loglevel") & loglevel) {
520         if(!log_fptr) {
521             log_fptr = fopen(LOG_FILE, "a");
522             if(!log_fptr) goto write_log_end;
523         }
524         time_t rawtime;
525         struct tm *timeinfo;
526         time(&rawtime);
527         timeinfo = localtime(&rawtime);
528         char timestr[20];
529         int timepos = strftime(timestr, 20, "%x %X ", timeinfo);
530         fwrite(timestr, 1, timepos, log_fptr);
531         fwrite(line, 1, len, log_fptr);
532     }
533     write_log_end:
534     DESYNCHRONIZE(log_sync);
535 }
536
537 void putlog(int loglevel, const char *text, ...) {
538     va_list arg_list;
539     char logBuf[MAXLOGLEN];
540     int pos;
541     logBuf[0] = '\0';
542     va_start(arg_list, text);
543     pos = vsnprintf(logBuf, MAXLOGLEN - 1, text, arg_list);
544     va_end(arg_list);
545     if (pos < 0 || pos > (MAXLOGLEN - 1)) pos = MAXLOGLEN - 1;
546     logBuf[pos] = '\0';
547     write_log(loglevel, logBuf, pos);
548 }
549
550 static void check_firstrun() {
551     MYSQL_RES *res;
552     MYSQL_ROW row;
553     printf_mysql_query("SELECT `user_id` FROM `users` WHERE `user_access` = 1000 LIMIT 1");
554     res = mysql_use();
555     if (mysql_fetch_row(res) == NULL) {
556         //first run!
557         printf("No superuser found...\n");
558         check_firstrun_admin:
559         printf("AuthServ account name of admin user: ");
560         char *ptr;
561         char adminuser[31];
562         ptr = fgets(adminuser, 30, stdin);
563         for(ptr = adminuser; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
564         if(strlen(adminuser) < 2) goto check_firstrun_admin;
565         printf_mysql_query("SELECT `user_id` FROM `users` WHERE `user_user` = '%s'", escape_string(adminuser));
566         res = mysql_use();
567         if ((row = mysql_fetch_row(res)) != NULL)
568             printf_mysql_query("UPDATE `users` SET `user_access` = 1000 WHERE `user_id` = '%s'", row[0]);
569         else
570             printf_mysql_query("INSERT INTO `users` (`user_user`, `user_access`) VALUES ('%s', 1000)", escape_string(adminuser));
571     }
572     printf_mysql_query("SELECT `id` FROM `bots` WHERE `active` = 1 LIMIT 1");
573     res = mysql_use();
574     if (mysql_fetch_row(res) == NULL) {
575         //no bot active
576         printf("No active bot found...\n\n");
577         printf("ADD NEW BOT\n");
578         char *ptr;
579         char bot_nick[31];
580         check_firstrun_bot_nick:
581         printf("Nick: ");
582         ptr = fgets(bot_nick, 30, stdin);
583         for(ptr = bot_nick; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
584         if(strlen(bot_nick) < 2) goto check_firstrun_bot_nick;
585         char bot_ident[16];
586         check_firstrun_bot_ident:
587         printf("Ident: ");
588         ptr = fgets(bot_ident, 15, stdin);
589         for(ptr = bot_ident; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
590         if(strlen(bot_ident) < 2) goto check_firstrun_bot_ident;
591         char bot_realname[101];
592         check_firstrun_bot_realname:
593         printf("Realname: ");
594         ptr = fgets(bot_realname, 100, stdin);
595         for(ptr = bot_realname; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
596         if(strlen(bot_realname) < 2) goto check_firstrun_bot_realname;
597         char bot_server[101];
598         check_firstrun_bot_server:
599         printf("Server: [irc.onlinegamesnet.net] ");
600         ptr = fgets(bot_server, 100, stdin);
601         for(ptr = bot_server; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
602         if(*bot_server && strlen(bot_nick) < 5) goto check_firstrun_bot_server;
603         if(!*bot_server)
604             strcpy(bot_server, "irc.onlinegamesnet.net");
605         int bot_port;
606         char bot_port_buf[7];
607         printf("Port: [6667] ");
608         ptr = fgets(bot_port_buf, 6, stdin);
609         for(ptr = bot_port_buf; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
610         if(!*bot_port_buf)
611             bot_port = 6667;
612         else
613             bot_port = atoi(bot_port_buf);
614         int bot_ssl;
615         char bot_ssl_buf[5];
616         check_firstrun_bot_ssl:
617         printf("SSL: [y/N] ");
618         ptr = fgets(bot_ssl_buf, 4, stdin);
619         for(ptr = bot_ssl_buf; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
620         if(!*bot_ssl_buf || tolower(*bot_ssl_buf) == 'n')
621             bot_ssl = 0;
622         else if(tolower(*bot_ssl_buf) == 'y')
623             bot_ssl = 1;
624         else
625             goto check_firstrun_bot_ssl;
626         char bot_pass[101];
627         printf("Server Password: [] ");
628         ptr = fgets(bot_pass, 100, stdin);
629         for(ptr = bot_pass; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
630         int bot_maxchan;
631         char bot_maxchan_buf[5];
632         printf("MaxChannel: [20] ");
633         ptr = fgets(bot_maxchan_buf, 5, stdin);
634         for(ptr = bot_maxchan_buf; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
635         if(*bot_maxchan_buf)
636             bot_maxchan = atoi(bot_maxchan_buf);
637         else
638             bot_maxchan = 20;
639         int bot_queue;
640         char bot_queue_buf[5];
641         check_firstrun_bot_queue:
642         printf("Queue (prevents excess floods): [Y/n] ");
643         ptr = fgets(bot_queue_buf, 4, stdin);
644         for(ptr = bot_queue_buf; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
645         if(!*bot_queue_buf || tolower(*bot_queue_buf) == 'y')
646             bot_queue = 1;
647         else if(tolower(*bot_queue_buf) == 'n')
648             bot_queue = 0;
649         else
650             goto check_firstrun_bot_queue;
651         printf_mysql_query("INSERT INTO `bots` (`active`, `nick`, `server`, `port`, `pass`, `ssl`, `ident`, `realname`, `botclass`, `textbot`, `queue`, `defaulttrigger`, `max_channels`) VALUES ('1', '%s', '%s', '%d', '%s', '%d', '%s', '%s', '1', '1', '%d', '+', '%d')", escape_string(bot_nick), escape_string(bot_server), bot_port, escape_string(bot_pass), bot_ssl, escape_string(bot_ident), escape_string(bot_realname), bot_queue, bot_maxchan);
652     }
653 }
654