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