source: unix.c @ 32c632f

Last change on this file since 32c632f was 703f0f7, checked in by Jelmer Vernooij <jelmer@…>, at 2005-12-14T01:17:25Z

Merge my pluginable branch

  • Property mode set to 100644
File size: 4.3 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2004 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/* Main file (Unix specific part)                                       */
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*/
25
26#include "bitlbee.h"
27#include "commands.h"
28#include "crypting.h"
29#include "protocols/nogaim.h"
30#include "help.h"
31#include <signal.h>
32#include <unistd.h>
33#include <sys/time.h>
34
35global_t global;        /* Against global namespace pollution */
36
37static void sighandler( int signal );
38
39int main( int argc, char *argv[] )
40{
41        int i = 0;
42        struct sigaction sig, old;
43       
44        memset( &global, 0, sizeof( global_t ) );
45       
46        global.loop = g_main_new( FALSE );
47       
48        log_init( );
49
50        nogaim_init();
51
52        CONF_FILE = g_strdup( CONF_FILE_DEF );
53       
54        global.helpfile = g_strdup( HELP_FILE );
55
56        global.conf = conf_load( argc, argv );
57        if( global.conf == NULL )
58                return( 1 );
59
60
61        if( global.conf->runmode == RUNMODE_INETD )
62        {
63                i = bitlbee_inetd_init();
64                log_message( LOGLVL_INFO, "Bitlbee %s starting in inetd mode.", BITLBEE_VERSION );
65
66        }
67        else if( global.conf->runmode == RUNMODE_DAEMON )
68        {
69                i = bitlbee_daemon_init();
70                log_message( LOGLVL_INFO, "Bitlbee %s starting in daemon mode.", BITLBEE_VERSION );
71        }
72        if( i != 0 )
73                return( i );
74
75        global.storage = storage_init( global.conf->primary_storage, 
76                                                                   global.conf->migrate_storage );
77        if ( global.storage == NULL) {
78                log_message( LOGLVL_ERROR, "Unable to load storage backend '%s'", global.conf->primary_storage );
79                return( 1 );
80        }
81       
82       
83        /* Catch some signals to tell the user what's happening before quitting */
84        memset( &sig, 0, sizeof( sig ) );
85        sig.sa_handler = sighandler;
86        sigaction( SIGPIPE, &sig, &old );
87        sig.sa_flags = SA_RESETHAND;
88        sigaction( SIGINT,  &sig, &old );
89        sigaction( SIGILL,  &sig, &old );
90        sigaction( SIGBUS,  &sig, &old );
91        sigaction( SIGFPE,  &sig, &old );
92        sigaction( SIGSEGV, &sig, &old );
93        sigaction( SIGTERM, &sig, &old );
94        sigaction( SIGQUIT, &sig, &old );
95        sigaction( SIGXCPU, &sig, &old );
96       
97        if( !getuid() || !geteuid() )
98                log_message( LOGLVL_WARNING, "BitlBee is running with root privileges. Why?" );
99        if( help_init( &(global.help) ) == NULL )
100                log_message( LOGLVL_WARNING, "Error opening helpfile %s.", HELP_FILE );
101       
102        g_main_run( global.loop );
103       
104        return( 0 );
105}
106
107static void sighandler( int signal )
108{
109        /* FIXME: In fact, calling log_message() here can be dangerous. But well, let's take the risk for now. */
110       
111        if( signal == SIGTERM )
112        {
113                static int first = 1;
114               
115                if( first )
116                {
117                        /* We don't know what we were doing when this signal came in. It's not safe to touch
118                           the user data now (not to mention writing them to disk), so add a timer. */
119                       
120                        log_message( LOGLVL_ERROR, "SIGTERM received, cleaning up process." );
121                        g_timeout_add_full( G_PRIORITY_LOW, 1, (GSourceFunc) bitlbee_shutdown, NULL, NULL );
122                       
123                        first = 0;
124                }
125                else
126                {
127                        /* Well, actually, for now we'll never need this part because this signal handler
128                           will never be called more than once in a session for a non-SIGPIPE signal...
129                           But just in case we decide to change that: */
130                       
131                        log_message( LOGLVL_ERROR, "SIGTERM received twice, so long for a clean shutdown." );
132                        raise( signal );
133                }
134        }
135        else if( signal != SIGPIPE )
136        {
137                log_message( LOGLVL_ERROR, "Fatal signal received: %d. That's probably a bug.", signal );
138                raise( signal );
139        }
140}
141
142double gettime()
143{
144        struct timeval time[1];
145
146        gettimeofday( time, 0 );
147        return( (double) time->tv_sec + (double) time->tv_usec / 1000000 );
148}
Note: See TracBrowser for help on using the repository browser.