source: unix.c @ bce78c8

Last change on this file since bce78c8 was 156bbd7, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-04-13T23:55:30Z

Log to stderr+syslog until daemonized. Current behaviour is too confusing
and annoying.

  • Property mode set to 100644
File size: 8.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
28#include "arc.h"
29#include "base64.h"
30#include "commands.h"
31#include "protocols/nogaim.h"
32#include "help.h"
33#include "ipc.h"
34#include "md5.h"
35#include "misc.h"
36#include <signal.h>
37#include <unistd.h>
38#include <sys/time.h>
39#include <sys/wait.h>
40#include <pwd.h>
41
42global_t global;        /* Against global namespace pollution */
43
44static void sighandler( int signal );
45
46static int crypt_main( int argc, char *argv[] );
47
48int main( int argc, char *argv[] )
49{
50        int i = 0;
51        char *old_cwd = NULL;
52        struct sigaction sig, old;
53       
54        if( argc > 1 && strcmp( argv[1], "-x" ) == 0 )
55                return crypt_main( argc, argv );
56       
57        log_init();
58        global.conf_file = g_strdup( CONF_FILE_DEF );
59        global.conf = conf_load( argc, argv );
60        if( global.conf == NULL )
61                return( 1 );
62       
63        b_main_init();
64        nogaim_init();
65       
66        srand( time( NULL ) ^ getpid() );
67        global.helpfile = g_strdup( HELP_FILE );
68       
69        if( global.conf->runmode == RUNMODE_INETD )
70        {
71                log_link( LOGLVL_ERROR, LOGOUTPUT_IRC );
72                log_link( LOGLVL_WARNING, LOGOUTPUT_IRC );
73       
74                i = bitlbee_inetd_init();
75                log_message( LOGLVL_INFO, "BitlBee %s starting in inetd mode.", BITLBEE_VERSION );
76
77        }
78        else if( global.conf->runmode == RUNMODE_DAEMON )
79        {
80                log_link( LOGLVL_ERROR, LOGOUTPUT_CONSOLE );
81                log_link( LOGLVL_WARNING, LOGOUTPUT_CONSOLE );
82
83                i = bitlbee_daemon_init();
84                log_message( LOGLVL_INFO, "BitlBee %s starting in daemon mode.", BITLBEE_VERSION );
85        }
86        else if( global.conf->runmode == RUNMODE_FORKDAEMON )
87        {
88                log_link( LOGLVL_ERROR, LOGOUTPUT_CONSOLE );
89                log_link( LOGLVL_WARNING, LOGOUTPUT_CONSOLE );
90
91                /* In case the operator requests a restart, we need this. */
92                old_cwd = g_malloc( 256 );
93                if( getcwd( old_cwd, 255 ) == NULL )
94                {
95                        log_message( LOGLVL_WARNING, "Could not save current directory: %s", strerror( errno ) );
96                        g_free( old_cwd );
97                        old_cwd = NULL;
98                }
99               
100                i = bitlbee_daemon_init();
101                log_message( LOGLVL_INFO, "BitlBee %s starting in forking daemon mode.", BITLBEE_VERSION );
102        }
103        if( i != 0 )
104                return( i );
105       
106        if( ( global.conf->user && *global.conf->user ) &&
107            ( global.conf->runmode == RUNMODE_DAEMON || 
108              global.conf->runmode == RUNMODE_FORKDAEMON ) &&
109            ( !getuid() || !geteuid() ) )
110        {
111                struct passwd *pw = NULL;
112                pw = getpwnam( global.conf->user );
113                if( pw )
114                {
115                        setgid( pw->pw_gid );
116                        setuid( pw->pw_uid );
117                }
118        }
119
120        global.storage = storage_init( global.conf->primary_storage, global.conf->migrate_storage );
121        if( global.storage == NULL )
122        {
123                log_message( LOGLVL_ERROR, "Unable to load storage backend '%s'", global.conf->primary_storage );
124                return( 1 );
125        }
126       
127        /* Catch some signals to tell the user what's happening before quitting */
128        memset( &sig, 0, sizeof( sig ) );
129        sig.sa_handler = sighandler;
130        sigaction( SIGCHLD, &sig, &old );
131        sigaction( SIGPIPE, &sig, &old );
132        sig.sa_flags = SA_RESETHAND;
133        sigaction( SIGINT,  &sig, &old );
134        sigaction( SIGILL,  &sig, &old );
135        sigaction( SIGBUS,  &sig, &old );
136        sigaction( SIGFPE,  &sig, &old );
137        sigaction( SIGSEGV, &sig, &old );
138        sigaction( SIGTERM, &sig, &old );
139        sigaction( SIGQUIT, &sig, &old );
140        sigaction( SIGXCPU, &sig, &old );
141       
142        if( !getuid() || !geteuid() )
143                log_message( LOGLVL_WARNING, "BitlBee is running with root privileges. Why?" );
144        if( help_init( &global.help, global.helpfile ) == NULL )
145                log_message( LOGLVL_WARNING, "Error opening helpfile %s.", HELP_FILE );
146       
147        b_main_run();
148       
149        /* Mainly good for restarting, to make sure we close the help.txt fd. */
150        help_free( &global.help );
151       
152        if( global.restart )
153        {
154                char *fn = ipc_master_save_state();
155               
156                chdir( old_cwd );
157               
158                setenv( "_BITLBEE_RESTART_STATE", fn, 1 );
159                g_free( fn );
160               
161                close( global.listen_socket );
162               
163                if( execv( argv[0], argv ) == -1 )
164                        /* Apparently the execve() failed, so let's just
165                           jump back into our own/current main(). */
166                        /* Need more cleanup code to make this work. */
167                        return 1; /* main( argc, argv ); */
168        }
169       
170        return( 0 );
171}
172
173static int crypt_main( int argc, char *argv[] )
174{
175        int pass_len;
176        unsigned char *pass_cr, *pass_cl;
177       
178        if( argc < 4 || ( strcmp( argv[2], "hash" ) != 0 &&
179                          strcmp( argv[2], "unhash" ) != 0 && argc < 5 ) )
180        {
181                printf( "Supported:\n"
182                        "  %s -x enc <key> <cleartext password>\n"
183                        "  %s -x dec <key> <encrypted password>\n"
184                        "  %s -x hash <cleartext password>\n"
185                        "  %s -x unhash <hashed password>\n"
186                        "  %s -x chkhash <hashed password> <cleartext password>\n",
187                        argv[0], argv[0], argv[0], argv[0], argv[0] );
188        }
189        else if( strcmp( argv[2], "enc" ) == 0 )
190        {
191                pass_len = arc_encode( argv[4], strlen( argv[4] ), (unsigned char**) &pass_cr, argv[3], 12 );
192                printf( "%s\n", base64_encode( pass_cr, pass_len ) );
193        }
194        else if( strcmp( argv[2], "dec" ) == 0 )
195        {
196                pass_len = base64_decode( argv[4], (unsigned char**) &pass_cr );
197                arc_decode( pass_cr, pass_len, (char**) &pass_cl, argv[3] );
198                printf( "%s\n", pass_cl );
199        }
200        else if( strcmp( argv[2], "hash" ) == 0 )
201        {
202                md5_byte_t pass_md5[21];
203                md5_state_t md5_state;
204               
205                random_bytes( pass_md5 + 16, 5 );
206                md5_init( &md5_state );
207                md5_append( &md5_state, (md5_byte_t*) argv[3], strlen( argv[3] ) );
208                md5_append( &md5_state, pass_md5 + 16, 5 ); /* Add the salt. */
209                md5_finish( &md5_state, pass_md5 );
210               
211                printf( "%s\n", base64_encode( pass_md5, 21 ) );
212        }
213        else if( strcmp( argv[2], "unhash" ) == 0 )
214        {
215                printf( "Hash %s submitted to a massive Beowulf cluster of\n"
216                        "overclocked 486s. Expect your answer next year somewhere around this time. :-)\n", argv[3] );
217        }
218        else if( strcmp( argv[2], "chkhash" ) == 0 )
219        {
220                char *hash = strncmp( argv[3], "md5:", 4 ) == 0 ? argv[3] + 4 : argv[3];
221                int st = md5_verify_password( argv[4], hash );
222               
223                printf( "Hash %s given password.\n", st == 0 ? "matches" : "does not match" );
224               
225                return st;
226        }
227       
228        return 0;
229}
230
231static void sighandler( int signal )
232{
233        /* FIXME: Calling log_message() here is not a very good idea! */
234       
235        if( signal == SIGTERM )
236        {
237                static int first = 1;
238               
239                if( first )
240                {
241                        /* We don't know what we were doing when this signal came in. It's not safe to touch
242                           the user data now (not to mention writing them to disk), so add a timer. */
243                       
244                        log_message( LOGLVL_ERROR, "SIGTERM received, cleaning up process." );
245                        b_timeout_add( 1, (b_event_handler) bitlbee_shutdown, NULL );
246                       
247                        first = 0;
248                }
249                else
250                {
251                        /* Well, actually, for now we'll never need this part because this signal handler
252                           will never be called more than once in a session for a non-SIGPIPE signal...
253                           But just in case we decide to change that: */
254                       
255                        log_message( LOGLVL_ERROR, "SIGTERM received twice, so long for a clean shutdown." );
256                        raise( signal );
257                }
258        }
259        else if( signal == SIGCHLD )
260        {
261                pid_t pid;
262                int st;
263               
264                while( ( pid = waitpid( 0, &st, WNOHANG ) ) > 0 )
265                {
266                        if( WIFSIGNALED( st ) )
267                                log_message( LOGLVL_INFO, "Client %d terminated normally. (status = %d)", (int) pid, WEXITSTATUS( st ) );
268                        else if( WIFEXITED( st ) )
269                                log_message( LOGLVL_INFO, "Client %d killed by signal %d.", (int) pid, WTERMSIG( st ) );
270                }
271        }
272        else if( signal != SIGPIPE )
273        {
274                log_message( LOGLVL_ERROR, "Fatal signal received: %d. That's probably a bug.", signal );
275                raise( signal );
276        }
277}
278
279double gettime()
280{
281        struct timeval time[1];
282
283        gettimeofday( time, 0 );
284        return( (double) time->tv_sec + (double) time->tv_usec / 1000000 );
285}
Note: See TracBrowser for help on using the repository browser.