source: win32.c @ abe53d3

Last change on this file since abe53d3 was abe53d3, checked in by Jelmer Vernooij <jelmer@…>, at 2005-11-07T16:42:49Z

More work on config manager

  • Property mode set to 100644
File size: 8.0 KB
RevLine 
[d1d6776]1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2004 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
[99318ad]7/* Main file (Windows specific part)                                   */
[d1d6776]8
9/*
10  This program is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License with
21  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
22  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23  Suite 330, Boston, MA  02111-1307  USA
24*/
[99318ad]25
26#define BITLBEE_CORE
[d1d6776]27#include "bitlbee.h"
28#include "commands.h"
29#include "crypting.h"
30#include "protocols/nogaim.h"
31#include "help.h"
32#include <signal.h>
[99318ad]33#include <windows.h>
[d1d6776]34
35global_t global;        /* Against global namespace pollution */
36
[99318ad]37static void WINAPI service_ctrl (DWORD dwControl)
38{
39        switch (dwControl)
40        {
41        case SERVICE_CONTROL_STOP:
42                        /* FIXME */
43            break;
44
45        case SERVICE_CONTROL_INTERROGATE:
46            break;
47
48        default:
49            break;
50
51    }
52}
[abe53d3]53
54static void bitlbee_init(int argc, char **argv)
55{
56        int i = -1;
57        memset( &global, 0, sizeof( global_t ) );
58       
59        global.loop = g_main_new( FALSE );
60       
61        global.conf = conf_load( argc, argv );
62        if( global.conf == NULL )
63                return;
64       
65        if( global.conf->runmode == RUNMODE_INETD )
66        {
67                i = bitlbee_inetd_init();
68                log_message( LOGLVL_INFO, "Bitlbee %s starting in inetd mode.", BITLBEE_VERSION );
69
70        }
71        else if( global.conf->runmode == RUNMODE_DAEMON )
72        {
73                i = bitlbee_daemon_init();
74                log_message( LOGLVL_INFO, "Bitlbee %s starting in daemon mode.", BITLBEE_VERSION );
75        } 
76        else 
77        {
78                log_message( LOGLVL_INFO, "No bitlbee mode specified...");
79        }
80       
81        if( i != 0 )
82                return;
83       
84        if( access( global.conf->configdir, F_OK ) != 0 )
85                log_message( LOGLVL_WARNING, "The configuration directory %s does not exist. Configuration won't be saved.", global.conf->configdir );
86        else if( access( global.conf->configdir, 06 ) != 0 )
87                log_message( LOGLVL_WARNING, "Permission problem: Can't read/write from/to %s.", global.conf->configdir );
88        if( help_init( &(global.help) ) == NULL )
89                log_message( LOGLVL_WARNING, "Error opening helpfile %s.", global.helpfile );
90}
[99318ad]91
92void service_main (DWORD argc, LPTSTR *argv)
[d1d6776]93{
[99318ad]94        SERVICE_STATUS_HANDLE handle;
95        SERVICE_STATUS status;
96
97    handle = RegisterServiceCtrlHandler("bitlbee", service_ctrl);
98
99    if (!handle)
100                return;
101
102    status.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
103    status.dwServiceSpecificExitCode = 0;
[abe53d3]104
105        bitlbee_init(argc, argv);
[99318ad]106
107        SetServiceStatus(handle, &status);
[d1d6776]108       
109        g_main_run( global.loop );
[99318ad]110}
111
[abe53d3]112SERVICE_TABLE_ENTRY dispatch_table[] =
113{
114   { TEXT("bitlbee"), (LPSERVICE_MAIN_FUNCTION)service_main },
115   { NULL, NULL }
116};
117
118static int debug = 0;
119
120static void usage()
121{
122        printf("Options:\n");
123        printf("-h   Show this help message\n");
124        printf("-d   Debug mode (simple console program)\n");
125}
126
127int main( int argc, char **argv)
128{   
129        int i;
130        WSADATA WSAData;
[99318ad]131
132        nogaim_init( );
[abe53d3]133
134        for (i = 1; i < argc; i++) {
135                if (!strcmp(argv[i], "-d")) debug = 1;
136                if (!strcmp(argv[i], "-h")) {
137                        usage();
138                        return 0;
139                }
140        }
141
142    WSAStartup(MAKEWORD(1,1), &WSAData);
143
144        if (!debug) {
145                if (!StartServiceCtrlDispatcher(dispatch_table))
146                        log_message( LOGLVL_ERROR, "StartServiceCtrlDispatcher failed.");
147        } else {
148                        bitlbee_init(argc, argv);
149                        g_main_run( global.loop );
150        }
[99318ad]151       
152        return 0;
[d1d6776]153}
154
155double gettime()
156{
157        return (GetTickCount() / 1000);
158}
159
160void conf_get_string(HKEY section, const char *name, const char *def, char **dest)
161{
162        char buf[4096];
163        long x;
164        if (RegQueryValue(section, name, buf, &x) == ERROR_SUCCESS) {
165                *dest = g_strdup(buf);
166        } else if (!def) {
167                *dest = NULL;
168        } else {
169                *dest = g_strdup(def);
170        }
171}
172
173
174void conf_get_int(HKEY section, const char *name, int def, int *dest)
175{
176        char buf[20];
177        long x;
178        DWORD y;
179        if (RegQueryValue(section, name, buf, &x) == ERROR_SUCCESS) {
180                memcpy(&y, buf, sizeof(DWORD));
181                *dest = y;
182        } else {
183                *dest = def;
184        }
185}
186
187conf_t *conf_load( int argc, char *argv[] ) 
188{
189        conf_t *conf;
190        HKEY key, key_main, key_proxy;
191        char *tmp;
[99318ad]192
193        RegOpenKey(HKEY_CURRENT_USER, "SOFTWARE\\Bitlbee", &key);
194        RegOpenKey(key, "main", &key_main);
195        RegOpenKey(key, "proxy", &key_proxy);
[d1d6776]196       
197        memset( &global, 0, sizeof( global_t ) );
198        global.loop = g_main_new(FALSE);
199
200        conf = g_new0( conf_t,1 );
201        global.conf = conf;
202        conf_get_string(key_main, "interface", "0.0.0.0", &global.conf->iface);
203        conf_get_int(key_main, "port", 6667, &global.conf->port);
204        conf_get_int(key_main, "verbose", 0, &global.conf->verbose);
205        conf_get_string(key_main, "password", "", &global.conf->password);
206        conf_get_int(key_main, "ping_interval_timeout", 60, &global.conf->ping_interval);
207        conf_get_string(key_main, "hostname", "localhost", &global.conf->hostname);
208        conf_get_string(key_main, "configdir", NULL, &global.conf->configdir);
209        conf_get_string(key_main, "motdfile", NULL, &global.conf->motdfile);
210        conf_get_string(key_main, "helpfile", NULL, &global.helpfile);
[abe53d3]211        global.conf->runmode = RUNMODE_DAEMON;
212        conf_get_int(key_main, "AuthMode", AUTHMODE_OPEN, &global.conf->authmode);
[d1d6776]213        conf_get_string(key_proxy, "host", "", &tmp); strcpy(proxyhost, tmp);
214        conf_get_string(key_proxy, "user", "", &tmp); strcpy(proxyuser, tmp);
215        conf_get_string(key_proxy, "password", "", &tmp); strcpy(proxypass, tmp);
216        conf_get_int(key_proxy, "type", PROXY_NONE, &proxytype);
217        conf_get_int(key_proxy, "port", 3128, &proxyport);
218
219        RegCloseKey(key);
220        RegCloseKey(key_main);
221        RegCloseKey(key_proxy);
222
223        return conf;
224}
225
226void conf_loaddefaults( irc_t *irc )
227{
228        HKEY key_defaults;
229        int i;
230        char name[4096], data[4096];
231        DWORD namelen = sizeof(name), datalen = sizeof(data);
232        DWORD type;
233        if (RegOpenKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Bitlbee\\defaults", &key_defaults) != ERROR_SUCCESS) {
234                return;
235        }
236
237        for (i = 0; RegEnumValue(key_defaults, i, name, &namelen, NULL, &type, data, &datalen) == ERROR_SUCCESS; i++) {
238                set_t *s = set_find( irc, name );
239                       
240                if( s )
241                {
242                        if( s->def ) g_free( s->def );
243                        s->def = g_strdup( data );
244                }
245
246                namelen = sizeof(name);
247                datalen = sizeof(data);
248        }
249
250        RegCloseKey(key_defaults);
251}
252
253#ifndef INADDR_NONE
254#define INADDR_NONE 0xffffffff
255#endif
256
257int
258inet_aton(const char *cp, struct in_addr *addr)
259{
260  addr->s_addr = inet_addr(cp);
261  return (addr->s_addr == INADDR_NONE) ? 0 : 1;
262}
[99318ad]263
264void log_error(char *msg)
265{
266        log_message(LOGLVL_ERROR, "%s", msg);
267}
268
269void log_message(int level, char *message, ...)
270{
271    HANDLE  hEventSource;
272    LPTSTR  lpszStrings[2];
273        WORD elevel;
274    va_list ap;
275
[abe53d3]276    va_start(ap, message);
277
278        if (debug) {
279                vprintf(message, ap);
280                putchar('\n');
281                va_end(ap);
282                return;
283        }
[99318ad]284
285    hEventSource = RegisterEventSource(NULL, TEXT("bitlbee"));
286
287    lpszStrings[0] = TEXT("bitlbee");
288    lpszStrings[1] = g_strdup_vprintf(message, ap);
289    va_end(ap);
290
291        switch (level) {
292        case LOGLVL_ERROR: elevel = EVENTLOG_ERROR_TYPE; break;
293        case LOGLVL_WARNING: elevel = EVENTLOG_WARNING_TYPE; break;
294        case LOGLVL_INFO: elevel = EVENTLOG_INFORMATION_TYPE; break;
295#ifdef DEBUG
296        case LOGLVL_DEBUG: elevel = EVENTLOG_AUDIT_SUCCESS; break;
297#endif
298        }
299
300    if (hEventSource != NULL) {
301        ReportEvent(hEventSource, 
302        elevel,
303        0,                   
304        0,                   
305        NULL,                 
306        2,                   
307        0,                   
308        lpszStrings,         
309        NULL);               
310
311        DeregisterEventSource(hEventSource);
312    }
313
314        g_free(lpszStrings[1]);
315}
Note: See TracBrowser for help on using the repository browser.