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