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