added experimental multi thread support
[NeonServV5.git] / src / main.c
1 /* main.c - NeonServ v5.3
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 "ClientSocket.h"
20 #include "UserNode.h"
21 #include "ChanNode.h"
22 #include "IRCEvents.h"
23 #include "IRCParser.h"
24 #include "modcmd.h"
25 #include "WHOHandler.h"
26 #include "bots.h"
27 #include "mysqlConn.h"
28 #include "HandleInfoHandler.h"
29 #include "lang.h"
30 #include "tools.h"
31 #include "timeq.h"
32 #include "EventLogger.h"
33 #include "ModeNode.h"
34 #include "IRCQueue.h"
35 #include "DBHelper.h"
36 #include "commands.h"
37 #include "ConfigParser.h"
38 #include "ssl.h"
39
40 time_t start_time;
41 static int running, hard_restart;
42 static int statistics_requested_lusers = 0;
43 int statistics_enabled;
44 TIMEQ_CALLBACK(main_statistics);
45
46 void cleanup() {
47     free_sockets();
48     free_parser();
49     free_UserNode();
50     free_ChanNode();
51     free_bind();
52     free_modcmd();
53     free_whoqueue();
54     free_bots();
55     free_mysql();
56     free_handleinfohandler();
57     free_lang();
58 }
59
60 static int load_mysql_config() {
61     char *mysql_host, *mysql_user, *mysql_pass, *mysql_base;
62     int mysql_serverport;
63     if(loadConfig("neonserv.conf")) {
64         mysql_host = get_string_field("MySQL.host");
65         if(!mysql_host) {
66             perror("invalid neonserv.conf: missing MySQL.host");
67             return 0;
68         }
69         mysql_serverport = get_int_field("MySQL.port");
70         if(!mysql_serverport)
71             mysql_serverport = 3306;
72         mysql_user = get_string_field("MySQL.user");
73         if(!mysql_user) {
74             perror("invalid neonserv.conf: missing MySQL.user");
75             return 0;
76         }
77         mysql_pass = get_string_field("MySQL.pass");
78         if(!mysql_pass) {
79             perror("invalid neonserv.conf: missing MySQL.pass");
80             return 0;
81         }
82         mysql_base = get_string_field("MySQL.base");
83         if(!mysql_base) {
84             perror("invalid neonserv.conf: missing MySQL base");
85             return 0;
86         }
87     } else {
88         perror("Unable to load neonserv.conf");
89         return 0;
90     }
91     init_mysql(mysql_host, mysql_serverport, mysql_user, mysql_pass, mysql_base);
92     return 1;
93 }
94
95 #ifdef HAVE_THREADS
96 void * thread_main(void *arg) {
97     time_t socket_wait;
98     while(running) {
99         socket_wait = time(0) + SOCKET_SELECT_TIME;
100         do {
101             socket_loop(SOCKET_SELECT_TIME);
102         } while(time(0) < socket_wait);
103         timeq_tick();
104         loop_bots();
105         clearTempUsers();
106         destroyEvents();
107         queue_loop();
108     }
109     return NULL;
110 }
111 #endif
112
113 int main(int argc, char *argv[]) {
114 main:
115     
116     start_time = time(0);
117     
118     #ifdef WIN32
119     int res;
120     WSADATA wsadata;
121     // Start Windows Sockets.
122     res = WSAStartup(MAKEWORD(2, 0), &wsadata);
123     if (res)
124     {
125         perror("Unable to start Windows Sockets");
126         return 0;
127     }
128     #endif
129     
130     if(!load_mysql_config()) return 0;
131     
132     statistics_enabled = get_int_field("statistics.enable");
133     
134     queue_init();
135     init_timeq();
136     init_lang();
137     ssl_init();
138     init_parser();
139     init_UserNode();
140     init_ChanNode();
141     init_ModeNode();
142     init_bind();
143         init_modcmd();
144     init_handleinfohandler();
145     init_tools();
146     register_commands();
147     init_bots();
148     init_DBHelper();
149     
150     load_languages();
151     int update_minutes = get_int_field("statistics.frequency");
152     if(!update_minutes) update_minutes = 2;
153     timeq_add(update_minutes * 60 + 10, main_statistics, NULL);
154     
155     int worker_threads = get_int_field("General.worker_threads");
156     if(!worker_threads) worker_threads = 1;
157     
158     running = 1;
159     #ifdef HAVE_THREADS
160     pthread_t tid[worker_threads];
161     int tid_id = 0;
162     for(tid_id = 0; tid_id < worker_threads; tid_id++) {
163         pthread_create(&tid[tid_id], NULL, thread_main, NULL);
164     }
165     for(tid_id = 0; tid_id < worker_threads; tid_id++) {
166         pthread_join(tid[tid_id], NULL);
167     }
168     #else
169     time_t socket_wait;
170     while(running) {
171         socket_wait = time(0) + SOCKET_SELECT_TIME;
172         do {
173             socket_loop(SOCKET_SELECT_TIME);
174         } while(time(0) < socket_wait);
175         timeq_tick();
176         loop_bots();
177         clearTempUsers();
178         destroyEvents();
179         queue_loop();
180     }
181     #endif
182     cleanup();
183     if(hard_restart) {
184         /* Append a NULL to the end of argv[]. */
185         char **restart_argv = (char **)alloca((argc + 1) * sizeof(char *));
186         memcpy(restart_argv, argv, argc * sizeof(char *));
187         restart_argv[argc] = NULL;
188         
189         #ifdef WIN32
190         execv(argv[0], (const char * const*)restart_argv);
191         #else
192         execv(argv[0], restart_argv);
193         #endif
194     }
195     goto main;
196 }
197
198 int stricmp (const char *s1, const char *s2)
199 {
200    if (s1 == NULL) return s2 == NULL ? 0 : -(*s2);
201    if (s2 == NULL) return *s1;
202    char c1, c2;
203    while ((c1 = tolower (*s1)) == (c2 = tolower (*s2)))
204    {
205      if (*s1 == '\0') break;
206      ++s1; ++s2;
207    }
208    return c1 - c2;
209 }
210
211 int stricmplen (const char *s1, const char *s2, int len)
212 {
213    if (s1 == NULL) return s2 == NULL ? 0 : -(*s2);
214    if (s2 == NULL) return *s1;
215    char c1, c2;
216    int i = 0;
217    while ((c1 = tolower (*s1)) == (c2 = tolower (*s2)))
218    {
219      i++;
220      if (*s1 == '\0') break;
221      ++s1; ++s2;
222      if(i == len) break;
223    }
224    return c1 - c2;
225 }
226
227 void restart_bot(int do_hard_restart) {
228     hard_restart = do_hard_restart;
229     running = 0;
230 }
231
232 void stop_bot() {
233     cleanup();
234     exit(0);
235 }
236
237 void reload_config() {
238     loadConfig("neonserv.conf");
239 }
240
241 TIMEQ_CALLBACK(main_statistics) {
242     int update_minutes = get_int_field("statistics.frequency");
243     if(!update_minutes) update_minutes = 2;
244     timeq_add(update_minutes * 60, main_statistics, NULL);
245     if(get_int_field("statistics.enable")) {
246         statistics_enabled = 1;
247         statistics_requested_lusers = 1;
248         if(get_int_field("statistics.include_lusers")) {
249             struct ClientSocket *bot, *lusersbot = NULL;
250             for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
251                 if(bot->flags & SOCKET_FLAG_PREFERRED)
252                     lusersbot = bot;
253             }
254             bot = lusersbot;
255             if(bot == NULL) bot = getBots(SOCKET_FLAG_READY, NULL);
256             putsock(bot, "LUSERS");
257         } else {
258             statistics_update();
259         }
260     } else
261         statistics_enabled = 0;
262 }
263
264 void statistics_update() {
265     if(get_int_field("statistics.enable") && statistics_requested_lusers && get_string_field("statistics.execute")) {
266         statistics_requested_lusers = 0;
267         char command[MAXLEN];
268         /* parameters:
269          - visible users
270          - visible chanusers
271          - visible channels
272          - privmsg per minute
273          - commands per minute
274          - network users
275          - network channels
276         */
277         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);
278         statistics_privmsg = 0;
279         statistics_commands = 0;
280         system(command);
281     }
282 }