Merge branch 'master' into IOMultiplexer
[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     event_reload(1);
206     #if HAVE_THREADS
207     THREAD_MUTEX_INIT(log_sync);
208     #endif
209     if(!load_mysql_config()) {
210         fprintf(stderr, "Unable to connect to MySQL\n");
211         exit(0);
212     }
213     check_firstrun();
214     char **modulelist = get_all_fieldnames("modules");
215     if(!modulelist || !modulelist[0]) {
216         fprintf(stderr, "no modules loaded... Please update your configuration!\n");
217         exit(0);
218     }
219     free(modulelist);
220     if (run_as_daemon) {
221         #ifndef WIN32
222         /* Attempt to fork into the background if daemon mode is on. */
223         pid_t pid = fork();
224         if (pid < 0) {
225             fprintf(stderr, "Unable to fork: %s\n", strerror(errno));
226         } else if (pid > 0) {
227             printf("Forking into the background (pid: %d)...\n", pid);
228             putlog(LOGLEVEL_INFO, "Forking into the background (pid: %d)...\n", pid);
229             exit(0);
230         }
231         setsid();
232         daemonized = 1;
233         atexit(exit_daemon);
234         FILE *pidfile = fopen(PID_FILE, "w");
235         if (pidfile == NULL) {
236             fprintf(stderr, "Unable to create PID file: %s\n", strerror(errno));
237             putlog(LOGLEVEL_ERROR, "Unable to create PID file: %s\n", strerror(errno));
238         } else {
239             fprintf(pidfile, "%i\n", (int)getpid());
240             fclose(pidfile);
241         }
242                 FILE *retn;
243         fclose(stdin); retn = fopen("/dev/null", "r");
244         fclose(stdout); retn = fopen("/dev/null", "w");
245         fclose(stderr); retn = fopen("/dev/null", "w");
246         #endif
247     }
248     
249 main:
250     signal(SIGABRT, sighandler);
251     signal(SIGFPE, sighandler);
252     signal(SIGILL, sighandler);
253     signal(SIGINT, sighandler);
254     signal(SIGSEGV, sighandler);
255     signal(SIGTERM, sighandler);
256     
257     start_time = time(0);
258     
259     statistics_enabled = get_int_field("statistics.enable");
260     
261     #ifdef HAVE_THREADS
262     THREAD_MUTEX_INIT(cache_sync);
263     THREAD_MUTEX_INIT(whohandler_sync);
264     THREAD_MUTEX_INIT(whohandler_mass_sync);
265     #endif
266     
267     init_lang();
268     init_parser();
269     init_UserNode();
270     init_ChanNode();
271     init_ModeNode();
272     init_bind();
273         init_modcmd();
274     register_module_commands();
275     init_handleinfohandler();
276     init_tools();
277     init_modulefunctions();
278     loadModules();
279     init_bots();
280     init_DBHelper();
281     qserver_init();
282     
283     load_languages();
284     int update_minutes = get_int_field("statistics.frequency");
285     if(!update_minutes) update_minutes = 2;
286     timeq_add(update_minutes * 60 + 10, 0, main_statistics, NULL);
287     
288     timeq_add(90, 0, main_checkauths, NULL);
289     
290     timeq_add(CLEAR_CACHE_INTERVAL, 0, clear_cache, NULL);
291     
292     int worker_threads = get_int_field("General.worker_threads");
293     if(!worker_threads) worker_threads = 1;
294     running = 1;
295     #ifdef HAVE_THREADS
296     int tid_id = 0;
297     current_threads = calloc(worker_threads, sizeof(*current_threads));
298     for(tid_id = 0; tid_id < worker_threads; tid_id++) {
299         running_threads++;
300         pthread_create(&current_threads[tid_id], NULL, thread_main, NULL);
301     }
302     #endif
303     thread_main(NULL);
304     #ifdef HAVE_THREADS
305     for(tid_id = 0; tid_id < worker_threads; tid_id++) {
306         pthread_join(current_threads[tid_id], NULL);
307     }
308     running_threads = 0;
309     #endif
310     cleanup();
311     if(hard_restart) {
312         restart_process();
313     }
314     goto main;
315 }
316
317 void restart_process() {
318     /* Append a NULL to the end of argv[]. */
319     char **restart_argv = (char **)alloca((process_argc + 1) * sizeof(char *));
320     memcpy(restart_argv, process_argv, process_argc * sizeof(char *));
321     restart_argv[process_argc] = NULL;
322     #ifdef WIN32
323     execv(process_argv[0], (const char * const*)restart_argv);
324     #else
325     execv(process_argv[0], restart_argv);
326     #endif
327 }
328
329 int stricmp (const char *s1, const char *s2)
330 {
331    if (s1 == NULL) return s2 == NULL ? 0 : -(*s2);
332    if (s2 == NULL) return *s1;
333    char c1, c2;
334    while ((c1 = tolower (*s1)) == (c2 = tolower (*s2)))
335    {
336      if (*s1 == '\0') break;
337      ++s1; ++s2;
338    }
339    return c1 - c2;
340 }
341
342 int stricmplen (const char *s1, const char *s2, int len)
343 {
344    if (s1 == NULL) return s2 == NULL ? 0 : -(*s2);
345    if (s2 == NULL) return *s1;
346    char c1, c2;
347    int i = 0;
348    while ((c1 = tolower (*s1)) == (c2 = tolower (*s2)))
349    {
350      i++;
351      if (*s1 == '\0') break;
352      ++s1; ++s2;
353      if(i == len) break;
354    }
355    return c1 - c2;
356 }
357
358 void restart_bot(int do_hard_restart) {
359     hard_restart = do_hard_restart;
360     running = 0;
361 }
362
363 void stop_bot() {
364     cleanup();
365     exit(0);
366 }
367
368 void reload_config() {
369     loadConfig(CONF_FILE);
370     event_reload(0);
371 }
372
373 static int getCurrentSecondsOfDay() {
374     time_t now = time(0);
375     struct tm *timeofday = localtime(&now);
376     int seconds = 0;
377     seconds += timeofday->tm_hour * 3600;
378     seconds += timeofday->tm_min * 60;
379     seconds += timeofday->tm_sec;
380     return seconds;
381 }
382
383 static AUTHLOOKUP_CALLBACK(main_checkauths_callback) {
384     //check if registered is still valid
385     MYSQL_RES *res;
386     MYSQL_ROW row;
387     printf_mysql_query("SELECT `user_id`, `user_registered` FROM `users` WHERE `user_user` = '%s'", escape_string(auth));
388     res = mysql_use();
389     if ((row = mysql_fetch_row(res)) != NULL) {
390         int diff = registered - atoi(row[1]);
391         if(diff < 0)
392             diff *= -1;
393         if(!exists || (strcmp(row[1], "0") && diff > 86400)) {
394             //User is no longer valid! Delete it...
395             deleteUser(atoi(row[0]));
396             char *alertchan = get_string_field("General.CheckAuths.alertchan");
397             if(alertchan) {
398                 char reason[MAXLEN];
399                 if(!exists) {
400                     strcpy(reason, "USER_NOT_EXISTS");
401                 } else {
402                     sprintf(reason, "USER_REGISTERED_MISSMATCH: %lu, expected %d (diff: %d)", (unsigned long) registered, atoi(row[1]), diff);
403                 }
404                 struct ChanNode *alertchan_chan = getChanByName(alertchan);
405                 struct ClientSocket *alertclient;
406                 if(alertchan_chan && (alertclient = getChannelBot(alertchan_chan, 0)) != NULL) {
407                     putsock(alertclient, "PRIVMSG %s :Deleted User %s (%s)", alertchan_chan->name, auth, reason);
408                 }
409             }
410         } else if(exists && !strcmp(row[1], "0")) {
411             printf_mysql_query("UPDATE `users` SET `user_registered` = '%lu', `user_lastcheck` = UNIX_TIMESTAMP() WHERE `user_id` = '%s'", (unsigned long) registered, row[0]);
412         } else {
413             printf_mysql_query("UPDATE `users` SET `user_lastcheck` = UNIX_TIMESTAMP() WHERE `user_id` = '%s'", row[0]);
414         }
415     }
416 }
417
418 TIMEQ_CALLBACK(main_checkauths) {
419     int next_call = 600;
420     if(get_int_field("General.CheckAuths.enabled")) {
421         int check_start_time = get_int_field("General.CheckAuths.start_time") * 3600;
422         int duration = get_int_field("General.CheckAuths.duration") * 60;
423         int now = getCurrentSecondsOfDay();
424         if(now < check_start_time && check_start_time+duration >= 86400) {
425             check_start_time -= 86400;
426         }
427         if(now >= check_start_time && now < (check_start_time + duration)) {
428             next_call = get_int_field("General.CheckAuths.interval");
429             //get the "longest-unchecked-user"
430             MYSQL_RES *res;
431             MYSQL_ROW row;
432             int lastcheck;
433             time_t unixtime = time(0);
434             int min_unckecked = get_int_field("General.CheckAuths.min_unckecked");
435             printf_mysql_query("SELECT `user_user`, `user_lastcheck` FROM `users` ORDER BY `user_lastcheck` ASC LIMIT 1");
436             res = mysql_use();
437             if ((row = mysql_fetch_row(res)) != NULL) {
438                 lastcheck = atoi(row[1]);
439                 if(!lastcheck || unixtime - lastcheck >= min_unckecked) {
440                     lookup_authname(row[0], 0, main_checkauths_callback, NULL);
441                 } else 
442                     next_call = 300;
443             }
444         } else {
445             int pending;
446             if(now > check_start_time)
447                 pending = 86400 - now + check_start_time;
448             else
449                 pending = check_start_time - now;
450             if(pending < 600)
451                 next_call = pending;
452         }
453         
454     }
455     timeq_add(next_call, 0, main_checkauths, NULL);
456 }
457
458 TIMEQ_CALLBACK(main_statistics) {
459     int update_minutes = get_int_field("statistics.frequency");
460     if(!update_minutes) update_minutes = 2;
461     timeq_add(update_minutes * 60, 0, main_statistics, NULL);
462     if(get_int_field("statistics.enable")) {
463         statistics_enabled = 1;
464         statistics_requested_lusers = 1;
465         if(get_int_field("statistics.include_lusers")) {
466             struct ClientSocket *bot, *lusersbot = NULL;
467             for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
468                 if(bot->flags & SOCKET_FLAG_PREFERRED)
469                     lusersbot = bot;
470             }
471             bot = lusersbot;
472             if(bot == NULL) bot = getBots(SOCKET_FLAG_READY, NULL);
473             putsock(bot, "LUSERS");
474         } else {
475             statistics_update();
476         }
477     } else
478         statistics_enabled = 0;
479 }
480
481 int statistics_update() {
482     if(get_int_field("statistics.enable") && statistics_requested_lusers && get_string_field("statistics.execute")) {
483         statistics_requested_lusers = 0;
484         char command[MAXLEN];
485         /* parameters:
486          - visible users
487          - visible chanusers
488          - visible channels
489          - privmsg per minute
490          - commands per minute
491          - network users
492          - network channels
493         */
494         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);
495         statistics_privmsg = 0;
496         statistics_commands = 0;
497         return system(command);
498     }
499         return -1;
500 }
501
502 time_t getStartTime() {
503     return start_time;
504 }
505
506 int getRunningThreads() {
507         #ifdef HAVE_THREADS
508     return running_threads;
509         #else
510         return 1;
511         #endif
512 }
513
514 void write_log(int loglevel, const char *line, int len) {
515     SYNCHRONIZE(log_sync);
516     if(!daemonized && (print_loglevel & loglevel)) {
517         printf("%s", line);
518     } else if(!daemonized && loglevel == LOGLEVEL_ERROR) {
519         fprintf(stderr, "%s", line);
520     }
521     if(get_int_field("log.loglevel") & loglevel) {
522         if(!log_fptr) {
523             log_fptr = fopen(LOG_FILE, "a");
524             if(!log_fptr) goto write_log_end;
525         }
526         time_t rawtime;
527         struct tm *timeinfo;
528         time(&rawtime);
529         timeinfo = localtime(&rawtime);
530         char timestr[20];
531         int timepos = strftime(timestr, 20, "%x %X ", timeinfo);
532         fwrite(timestr, 1, timepos, log_fptr);
533         fwrite(line, 1, len, log_fptr);
534     }
535     write_log_end:
536     DESYNCHRONIZE(log_sync);
537 }
538
539 void putlog(int loglevel, const char *text, ...) {
540     va_list arg_list;
541     char logBuf[MAXLOGLEN];
542     int pos;
543     logBuf[0] = '\0';
544     va_start(arg_list, text);
545     pos = vsnprintf(logBuf, MAXLOGLEN - 1, text, arg_list);
546     va_end(arg_list);
547     if (pos < 0 || pos > (MAXLOGLEN - 1)) pos = MAXLOGLEN - 1;
548     logBuf[pos] = '\0';
549     write_log(loglevel, logBuf, pos);
550 }
551
552 static void check_firstrun() {
553     MYSQL_RES *res;
554     MYSQL_ROW row;
555     printf_mysql_query("SELECT `user_id` FROM `users` WHERE `user_access` = 1000 LIMIT 1");
556     res = mysql_use();
557     if (mysql_fetch_row(res) == NULL) {
558         //first run!
559         printf("No superuser found...\n");
560         check_firstrun_admin:
561         printf("AuthServ account name of admin user: ");
562         char *ptr;
563         char adminuser[31];
564         ptr = fgets(adminuser, 30, stdin);
565         for(ptr = adminuser; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
566         if(strlen(adminuser) < 2) goto check_firstrun_admin;
567         printf_mysql_query("SELECT `user_id` FROM `users` WHERE `user_user` = '%s'", escape_string(adminuser));
568         res = mysql_use();
569         if ((row = mysql_fetch_row(res)) != NULL)
570             printf_mysql_query("UPDATE `users` SET `user_access` = 1000 WHERE `user_id` = '%s'", row[0]);
571         else
572             printf_mysql_query("INSERT INTO `users` (`user_user`, `user_access`) VALUES ('%s', 1000)", escape_string(adminuser));
573     }
574     printf_mysql_query("SELECT `id` FROM `bots` WHERE `active` = 1 LIMIT 1");
575     res = mysql_use();
576     if (mysql_fetch_row(res) == NULL) {
577         //no bot active
578         printf("No active bot found...\n\n");
579         printf("ADD NEW BOT\n");
580         char *ptr;
581         char bot_nick[31];
582         check_firstrun_bot_nick:
583         printf("Nick: ");
584         ptr = fgets(bot_nick, 30, stdin);
585         for(ptr = bot_nick; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
586         if(strlen(bot_nick) < 2) goto check_firstrun_bot_nick;
587         char bot_ident[16];
588         check_firstrun_bot_ident:
589         printf("Ident: ");
590         ptr = fgets(bot_ident, 15, stdin);
591         for(ptr = bot_ident; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
592         if(strlen(bot_ident) < 2) goto check_firstrun_bot_ident;
593         char bot_realname[101];
594         check_firstrun_bot_realname:
595         printf("Realname: ");
596         ptr = fgets(bot_realname, 100, stdin);
597         for(ptr = bot_realname; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
598         if(strlen(bot_realname) < 2) goto check_firstrun_bot_realname;
599         char bot_server[101];
600         check_firstrun_bot_server:
601         printf("Server: [irc.onlinegamesnet.net] ");
602         ptr = fgets(bot_server, 100, stdin);
603         for(ptr = bot_server; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
604         if(*bot_server && strlen(bot_nick) < 5) goto check_firstrun_bot_server;
605         if(!*bot_server)
606             strcpy(bot_server, "irc.onlinegamesnet.net");
607         int bot_port;
608         char bot_port_buf[7];
609         printf("Port: [6667] ");
610         ptr = fgets(bot_port_buf, 6, stdin);
611         for(ptr = bot_port_buf; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
612         if(!*bot_port_buf)
613             bot_port = 6667;
614         else
615             bot_port = atoi(bot_port_buf);
616         int bot_ssl;
617         char bot_ssl_buf[5];
618         check_firstrun_bot_ssl:
619         printf("SSL: [y/N] ");
620         ptr = fgets(bot_ssl_buf, 4, stdin);
621         for(ptr = bot_ssl_buf; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
622         if(!*bot_ssl_buf || tolower(*bot_ssl_buf) == 'n')
623             bot_ssl = 0;
624         else if(tolower(*bot_ssl_buf) == 'y')
625             bot_ssl = 1;
626         else
627             goto check_firstrun_bot_ssl;
628         char bot_pass[101];
629         printf("Server Password: [] ");
630         ptr = fgets(bot_pass, 100, stdin);
631         for(ptr = bot_pass; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
632         int bot_maxchan;
633         char bot_maxchan_buf[5];
634         printf("MaxChannel: [20] ");
635         ptr = fgets(bot_maxchan_buf, 5, stdin);
636         for(ptr = bot_maxchan_buf; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
637         if(*bot_maxchan_buf)
638             bot_maxchan = atoi(bot_maxchan_buf);
639         else
640             bot_maxchan = 20;
641         int bot_queue;
642         char bot_queue_buf[5];
643         check_firstrun_bot_queue:
644         printf("Queue (prevents excess floods): [Y/n] ");
645         ptr = fgets(bot_queue_buf, 4, stdin);
646         for(ptr = bot_queue_buf; *ptr; ptr++) { if(*ptr == '\n' || *ptr == '\r') *ptr = '\0'; }
647         if(!*bot_queue_buf || tolower(*bot_queue_buf) == 'y')
648             bot_queue = 1;
649         else if(tolower(*bot_queue_buf) == 'n')
650             bot_queue = 0;
651         else
652             goto check_firstrun_bot_queue;
653         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);
654     }
655 }
656