[0431ea1] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[54879ab] | 4 | * Copyright 2002-2006 Wilmer van der Gaast and others * |
---|
[0431ea1] | 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* IPC - communication between BitlBee processes */ |
---|
| 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 | #define BITLBEE_CORE |
---|
| 27 | #include "bitlbee.h" |
---|
| 28 | #include "ipc.h" |
---|
| 29 | #include "commands.h" |
---|
| 30 | |
---|
| 31 | GSList *child_list = NULL; |
---|
[54879ab] | 32 | static char *statefile = NULL; |
---|
[74c119d] | 33 | |
---|
[f73b969] | 34 | static void ipc_master_cmd_client( irc_t *data, char **cmd ) |
---|
[2face62] | 35 | { |
---|
| 36 | struct bitlbee_child *child = (void*) data; |
---|
| 37 | |
---|
[54879ab] | 38 | if( child && cmd[1] ) |
---|
[bd9b00f] | 39 | { |
---|
| 40 | child->host = g_strdup( cmd[1] ); |
---|
| 41 | child->nick = g_strdup( cmd[2] ); |
---|
| 42 | child->realname = g_strdup( cmd[3] ); |
---|
| 43 | } |
---|
[2face62] | 44 | |
---|
[54879ab] | 45 | if( g_strcasecmp( cmd[0], "CLIENT" ) == 0 ) |
---|
| 46 | ipc_to_children_str( "OPERMSG :Client connecting (PID=%d): %s@%s (%s)\r\n", |
---|
| 47 | child ? child->pid : -1, cmd[2], cmd[1], cmd[3] ); |
---|
[2face62] | 48 | } |
---|
| 49 | |
---|
[f73b969] | 50 | static void ipc_master_cmd_die( irc_t *data, char **cmd ) |
---|
[0431ea1] | 51 | { |
---|
[74c119d] | 52 | if( global.conf->runmode == RUNMODE_FORKDAEMON ) |
---|
| 53 | ipc_to_children_str( "DIE\r\n" ); |
---|
| 54 | |
---|
[13caf0a] | 55 | bitlbee_shutdown( NULL ); |
---|
[0431ea1] | 56 | } |
---|
| 57 | |
---|
[f73b969] | 58 | void ipc_master_cmd_rehash( irc_t *data, char **cmd ) |
---|
[0431ea1] | 59 | { |
---|
[f4a5940] | 60 | runmode_t oldmode; |
---|
| 61 | |
---|
| 62 | oldmode = global.conf->runmode; |
---|
| 63 | |
---|
| 64 | g_free( global.conf ); |
---|
| 65 | global.conf = conf_load( 0, NULL ); |
---|
| 66 | |
---|
| 67 | if( global.conf->runmode != oldmode ) |
---|
| 68 | { |
---|
| 69 | log_message( LOGLVL_WARNING, "Can't change RunMode setting at runtime, restoring original setting" ); |
---|
| 70 | global.conf->runmode = oldmode; |
---|
| 71 | } |
---|
| 72 | |
---|
| 73 | if( global.conf->runmode == RUNMODE_FORKDAEMON ) |
---|
| 74 | ipc_to_children( cmd ); |
---|
[0431ea1] | 75 | } |
---|
| 76 | |
---|
[54879ab] | 77 | void ipc_master_cmd_restart( irc_t *data, char **cmd ) |
---|
| 78 | { |
---|
| 79 | struct bitlbee_child *child = (void*) data; |
---|
| 80 | |
---|
| 81 | if( global.conf->runmode != RUNMODE_FORKDAEMON ) |
---|
| 82 | { |
---|
| 83 | /* Tell child that this is unsupported. */ |
---|
| 84 | return; |
---|
| 85 | } |
---|
| 86 | |
---|
| 87 | global.restart = -1; |
---|
| 88 | bitlbee_shutdown( NULL ); |
---|
| 89 | } |
---|
| 90 | |
---|
[0431ea1] | 91 | static const command_t ipc_master_commands[] = { |
---|
[2face62] | 92 | { "client", 3, ipc_master_cmd_client, 0 }, |
---|
[54879ab] | 93 | { "hello", 0, ipc_master_cmd_client, 0 }, |
---|
[0431ea1] | 94 | { "die", 0, ipc_master_cmd_die, 0 }, |
---|
[f4a5940] | 95 | { "wallops", 1, NULL, IPC_CMD_TO_CHILDREN }, |
---|
| 96 | { "lilo", 1, NULL, IPC_CMD_TO_CHILDREN }, |
---|
[2face62] | 97 | { "opermsg", 1, NULL, IPC_CMD_TO_CHILDREN }, |
---|
[f4a5940] | 98 | { "rehash", 0, ipc_master_cmd_rehash, 0 }, |
---|
[48721c3] | 99 | { "kill", 2, NULL, IPC_CMD_TO_CHILDREN }, |
---|
[54879ab] | 100 | { "restart", 0, ipc_master_cmd_restart, 0 }, |
---|
[0431ea1] | 101 | { NULL } |
---|
| 102 | }; |
---|
| 103 | |
---|
[74c119d] | 104 | |
---|
[f73b969] | 105 | static void ipc_child_cmd_die( irc_t *irc, char **cmd ) |
---|
[74c119d] | 106 | { |
---|
[87de505] | 107 | irc_abort( irc, 0, "Shutdown requested by operator" ); |
---|
[74c119d] | 108 | } |
---|
| 109 | |
---|
[f73b969] | 110 | static void ipc_child_cmd_wallops( irc_t *irc, char **cmd ) |
---|
[0431ea1] | 111 | { |
---|
[daa9e02] | 112 | if( irc->status < USTATUS_LOGGED_IN ) |
---|
[f73b969] | 113 | return; |
---|
[daa9e02] | 114 | |
---|
[0431ea1] | 115 | if( strchr( irc->umode, 'w' ) ) |
---|
[e0ca412] | 116 | irc_write( irc, ":%s WALLOPS :%s", irc->myhost, cmd[1] ); |
---|
| 117 | } |
---|
| 118 | |
---|
[f73b969] | 119 | static void ipc_child_cmd_lilo( irc_t *irc, char **cmd ) |
---|
[e0ca412] | 120 | { |
---|
[daa9e02] | 121 | if( irc->status < USTATUS_LOGGED_IN ) |
---|
[f73b969] | 122 | return; |
---|
[daa9e02] | 123 | |
---|
[74c119d] | 124 | if( strchr( irc->umode, 's' ) ) |
---|
| 125 | irc_write( irc, ":%s NOTICE %s :%s", irc->myhost, irc->nick, cmd[1] ); |
---|
[0431ea1] | 126 | } |
---|
| 127 | |
---|
[f73b969] | 128 | static void ipc_child_cmd_opermsg( irc_t *irc, char **cmd ) |
---|
[2face62] | 129 | { |
---|
| 130 | if( irc->status < USTATUS_LOGGED_IN ) |
---|
[f73b969] | 131 | return; |
---|
[2face62] | 132 | |
---|
| 133 | if( strchr( irc->umode, 'o' ) ) |
---|
| 134 | irc_write( irc, ":%s NOTICE %s :*** OperMsg *** %s", irc->myhost, irc->nick, cmd[1] ); |
---|
| 135 | } |
---|
| 136 | |
---|
[f73b969] | 137 | static void ipc_child_cmd_rehash( irc_t *irc, char **cmd ) |
---|
[f4a5940] | 138 | { |
---|
| 139 | runmode_t oldmode; |
---|
| 140 | |
---|
| 141 | oldmode = global.conf->runmode; |
---|
| 142 | |
---|
| 143 | g_free( global.conf ); |
---|
| 144 | global.conf = conf_load( 0, NULL ); |
---|
| 145 | |
---|
| 146 | global.conf->runmode = oldmode; |
---|
| 147 | } |
---|
| 148 | |
---|
[f73b969] | 149 | static void ipc_child_cmd_kill( irc_t *irc, char **cmd ) |
---|
[48721c3] | 150 | { |
---|
| 151 | if( irc->status < USTATUS_LOGGED_IN ) |
---|
[f73b969] | 152 | return; |
---|
[48721c3] | 153 | |
---|
| 154 | if( nick_cmp( cmd[1], irc->nick ) != 0 ) |
---|
[f73b969] | 155 | return; /* It's not for us. */ |
---|
[48721c3] | 156 | |
---|
| 157 | irc_write( irc, ":%s!%s@%s KILL %s :%s", irc->mynick, irc->mynick, irc->myhost, irc->nick, cmd[2] ); |
---|
[f73b969] | 158 | irc_abort( irc, 0, "Killed by operator: %s", cmd[2] ); |
---|
[48721c3] | 159 | } |
---|
| 160 | |
---|
[54879ab] | 161 | static void ipc_child_cmd_hello( irc_t *irc, char **cmd ) |
---|
| 162 | { |
---|
| 163 | if( irc->status < USTATUS_LOGGED_IN ) |
---|
| 164 | ipc_to_master_str( "HELLO\r\n" ); |
---|
| 165 | else |
---|
| 166 | ipc_to_master_str( "HELLO %s %s :%s\r\n", irc->host, irc->nick, irc->realname ); |
---|
| 167 | } |
---|
| 168 | |
---|
[0431ea1] | 169 | static const command_t ipc_child_commands[] = { |
---|
[74c119d] | 170 | { "die", 0, ipc_child_cmd_die, 0 }, |
---|
| 171 | { "wallops", 1, ipc_child_cmd_wallops, 0 }, |
---|
| 172 | { "lilo", 1, ipc_child_cmd_lilo, 0 }, |
---|
[2face62] | 173 | { "opermsg", 1, ipc_child_cmd_opermsg, 0 }, |
---|
[48721c3] | 174 | { "rehash", 0, ipc_child_cmd_rehash, 0 }, |
---|
| 175 | { "kill", 2, ipc_child_cmd_kill, 0 }, |
---|
[54879ab] | 176 | { "hello", 0, ipc_child_cmd_hello, 0 }, |
---|
[0431ea1] | 177 | { NULL } |
---|
| 178 | }; |
---|
| 179 | |
---|
[74c119d] | 180 | |
---|
[0431ea1] | 181 | static void ipc_command_exec( void *data, char **cmd, const command_t *commands ) |
---|
| 182 | { |
---|
[f1d38f2] | 183 | int i, j; |
---|
[0431ea1] | 184 | |
---|
| 185 | if( !cmd[0] ) |
---|
| 186 | return; |
---|
| 187 | |
---|
| 188 | for( i = 0; commands[i].command; i ++ ) |
---|
| 189 | if( g_strcasecmp( commands[i].command, cmd[0] ) == 0 ) |
---|
| 190 | { |
---|
[f1d38f2] | 191 | /* There is no typo in this line: */ |
---|
| 192 | for( j = 1; cmd[j]; j ++ ); j --; |
---|
| 193 | |
---|
| 194 | if( j < commands[i].required_parameters ) |
---|
| 195 | break; |
---|
| 196 | |
---|
[f4a5940] | 197 | if( commands[i].flags & IPC_CMD_TO_CHILDREN ) |
---|
| 198 | ipc_to_children( cmd ); |
---|
| 199 | else |
---|
| 200 | commands[i].execute( data, cmd ); |
---|
| 201 | |
---|
[f1d38f2] | 202 | break; |
---|
[0431ea1] | 203 | } |
---|
| 204 | } |
---|
| 205 | |
---|
| 206 | static char *ipc_readline( int fd ) |
---|
| 207 | { |
---|
| 208 | char *buf, *eol; |
---|
| 209 | int size; |
---|
| 210 | |
---|
| 211 | buf = g_new0( char, 513 ); |
---|
| 212 | |
---|
| 213 | /* Because this is internal communication, it should be pretty safe |
---|
| 214 | to just peek at the message, find its length (by searching for the |
---|
| 215 | end-of-line) and then just read that message. With internal |
---|
| 216 | sockets and limites message length, messages should always be |
---|
| 217 | complete. Saves us quite a lot of code and buffering. */ |
---|
| 218 | size = recv( fd, buf, 512, MSG_PEEK ); |
---|
| 219 | if( size == 0 || ( size < 0 && !sockerr_again() ) ) |
---|
| 220 | return NULL; |
---|
[1ea13be] | 221 | else if( size < 0 ) /* && sockerr_again() */ |
---|
| 222 | return( g_strdup( "" ) ); |
---|
[0431ea1] | 223 | else |
---|
| 224 | buf[size] = 0; |
---|
| 225 | |
---|
| 226 | eol = strstr( buf, "\r\n" ); |
---|
| 227 | if( eol == NULL ) |
---|
| 228 | return NULL; |
---|
| 229 | else |
---|
| 230 | size = eol - buf + 2; |
---|
| 231 | |
---|
| 232 | g_free( buf ); |
---|
| 233 | buf = g_new0( char, size + 1 ); |
---|
| 234 | |
---|
| 235 | if( recv( fd, buf, size, 0 ) != size ) |
---|
| 236 | return NULL; |
---|
| 237 | else |
---|
| 238 | buf[size-2] = 0; |
---|
| 239 | |
---|
| 240 | return buf; |
---|
| 241 | } |
---|
| 242 | |
---|
| 243 | void ipc_master_read( gpointer data, gint source, GaimInputCondition cond ) |
---|
| 244 | { |
---|
| 245 | char *buf, **cmd; |
---|
| 246 | |
---|
| 247 | if( ( buf = ipc_readline( source ) ) ) |
---|
| 248 | { |
---|
| 249 | cmd = irc_parse_line( buf ); |
---|
| 250 | if( cmd ) |
---|
| 251 | ipc_command_exec( data, cmd, ipc_master_commands ); |
---|
| 252 | } |
---|
| 253 | else |
---|
| 254 | { |
---|
| 255 | GSList *l; |
---|
| 256 | struct bitlbee_child *c; |
---|
| 257 | |
---|
| 258 | for( l = child_list; l; l = l->next ) |
---|
| 259 | { |
---|
| 260 | c = l->data; |
---|
| 261 | if( c->ipc_fd == source ) |
---|
| 262 | { |
---|
[2face62] | 263 | ipc_master_free_one( c ); |
---|
| 264 | child_list = g_slist_remove( child_list, c ); |
---|
[0431ea1] | 265 | break; |
---|
| 266 | } |
---|
| 267 | } |
---|
| 268 | } |
---|
| 269 | } |
---|
| 270 | |
---|
| 271 | void ipc_child_read( gpointer data, gint source, GaimInputCondition cond ) |
---|
| 272 | { |
---|
| 273 | char *buf, **cmd; |
---|
| 274 | |
---|
| 275 | if( ( buf = ipc_readline( source ) ) ) |
---|
| 276 | { |
---|
| 277 | cmd = irc_parse_line( buf ); |
---|
| 278 | if( cmd ) |
---|
| 279 | ipc_command_exec( data, cmd, ipc_child_commands ); |
---|
| 280 | } |
---|
| 281 | else |
---|
| 282 | { |
---|
| 283 | gaim_input_remove( global.listen_watch_source_id ); |
---|
| 284 | close( global.listen_socket ); |
---|
| 285 | |
---|
| 286 | global.listen_socket = -1; |
---|
| 287 | } |
---|
| 288 | } |
---|
| 289 | |
---|
| 290 | void ipc_to_master( char **cmd ) |
---|
| 291 | { |
---|
| 292 | if( global.conf->runmode == RUNMODE_FORKDAEMON ) |
---|
| 293 | { |
---|
[74c119d] | 294 | char *s = irc_build_line( cmd ); |
---|
[2face62] | 295 | ipc_to_master_str( "%s", s ); |
---|
[f4a5940] | 296 | g_free( s ); |
---|
| 297 | } |
---|
| 298 | else if( global.conf->runmode == RUNMODE_DAEMON ) |
---|
| 299 | { |
---|
| 300 | ipc_command_exec( NULL, cmd, ipc_master_commands ); |
---|
| 301 | } |
---|
| 302 | } |
---|
| 303 | |
---|
[2face62] | 304 | void ipc_to_master_str( char *format, ... ) |
---|
[f4a5940] | 305 | { |
---|
[2face62] | 306 | char *msg_buf; |
---|
| 307 | va_list params; |
---|
| 308 | |
---|
| 309 | va_start( params, format ); |
---|
| 310 | msg_buf = g_strdup_vprintf( format, params ); |
---|
| 311 | va_end( params ); |
---|
| 312 | |
---|
| 313 | if( strlen( msg_buf ) > 512 ) |
---|
| 314 | { |
---|
| 315 | /* Don't send it, it's too long... */ |
---|
| 316 | } |
---|
| 317 | else if( global.conf->runmode == RUNMODE_FORKDAEMON ) |
---|
[f4a5940] | 318 | { |
---|
| 319 | write( global.listen_socket, msg_buf, strlen( msg_buf ) ); |
---|
| 320 | } |
---|
| 321 | else if( global.conf->runmode == RUNMODE_DAEMON ) |
---|
| 322 | { |
---|
[bd9b00f] | 323 | char **cmd, *s; |
---|
| 324 | |
---|
| 325 | if( ( s = strchr( msg_buf, '\r' ) ) ) |
---|
| 326 | *s = 0; |
---|
[f4a5940] | 327 | |
---|
[2face62] | 328 | cmd = irc_parse_line( msg_buf ); |
---|
[f4a5940] | 329 | ipc_command_exec( NULL, cmd, ipc_master_commands ); |
---|
| 330 | g_free( cmd ); |
---|
[74c119d] | 331 | } |
---|
[2face62] | 332 | |
---|
| 333 | g_free( msg_buf ); |
---|
[74c119d] | 334 | } |
---|
| 335 | |
---|
| 336 | void ipc_to_children( char **cmd ) |
---|
| 337 | { |
---|
| 338 | if( global.conf->runmode == RUNMODE_FORKDAEMON ) |
---|
| 339 | { |
---|
| 340 | char *msg_buf = irc_build_line( cmd ); |
---|
[2face62] | 341 | ipc_to_children_str( "%s", msg_buf ); |
---|
[74c119d] | 342 | g_free( msg_buf ); |
---|
| 343 | } |
---|
[f4a5940] | 344 | else if( global.conf->runmode == RUNMODE_DAEMON ) |
---|
| 345 | { |
---|
| 346 | GSList *l; |
---|
| 347 | |
---|
| 348 | for( l = irc_connection_list; l; l = l->next ) |
---|
| 349 | ipc_command_exec( l->data, cmd, ipc_child_commands ); |
---|
| 350 | } |
---|
[74c119d] | 351 | } |
---|
| 352 | |
---|
[2face62] | 353 | void ipc_to_children_str( char *format, ... ) |
---|
[74c119d] | 354 | { |
---|
[2face62] | 355 | char *msg_buf; |
---|
| 356 | va_list params; |
---|
| 357 | |
---|
| 358 | va_start( params, format ); |
---|
| 359 | msg_buf = g_strdup_vprintf( format, params ); |
---|
| 360 | va_end( params ); |
---|
| 361 | |
---|
| 362 | if( strlen( msg_buf ) > 512 ) |
---|
| 363 | { |
---|
| 364 | /* Don't send it, it's too long... */ |
---|
| 365 | } |
---|
| 366 | else if( global.conf->runmode == RUNMODE_FORKDAEMON ) |
---|
[74c119d] | 367 | { |
---|
| 368 | int msg_len = strlen( msg_buf ); |
---|
| 369 | GSList *l; |
---|
[0431ea1] | 370 | |
---|
[74c119d] | 371 | for( l = child_list; l; l = l->next ) |
---|
[0431ea1] | 372 | { |
---|
[74c119d] | 373 | struct bitlbee_child *c = l->data; |
---|
| 374 | write( c->ipc_fd, msg_buf, msg_len ); |
---|
[0431ea1] | 375 | } |
---|
| 376 | } |
---|
[f4a5940] | 377 | else if( global.conf->runmode == RUNMODE_DAEMON ) |
---|
| 378 | { |
---|
[bd9b00f] | 379 | char **cmd, *s; |
---|
| 380 | |
---|
| 381 | if( ( s = strchr( msg_buf, '\r' ) ) ) |
---|
| 382 | *s = 0; |
---|
[f4a5940] | 383 | |
---|
[2face62] | 384 | cmd = irc_parse_line( msg_buf ); |
---|
[f4a5940] | 385 | ipc_to_children( cmd ); |
---|
| 386 | g_free( cmd ); |
---|
| 387 | } |
---|
[2face62] | 388 | |
---|
| 389 | g_free( msg_buf ); |
---|
| 390 | } |
---|
| 391 | |
---|
| 392 | void ipc_master_free_one( struct bitlbee_child *c ) |
---|
| 393 | { |
---|
| 394 | gaim_input_remove( c->ipc_inpa ); |
---|
| 395 | closesocket( c->ipc_fd ); |
---|
| 396 | |
---|
| 397 | g_free( c->host ); |
---|
| 398 | g_free( c->nick ); |
---|
| 399 | g_free( c->realname ); |
---|
| 400 | g_free( c ); |
---|
| 401 | } |
---|
| 402 | |
---|
| 403 | void ipc_master_free_all() |
---|
| 404 | { |
---|
| 405 | GSList *l; |
---|
| 406 | |
---|
| 407 | for( l = child_list; l; l = l->next ) |
---|
| 408 | ipc_master_free_one( l->data ); |
---|
| 409 | |
---|
| 410 | g_slist_free( child_list ); |
---|
| 411 | child_list = NULL; |
---|
[0431ea1] | 412 | } |
---|
[54879ab] | 413 | |
---|
| 414 | char *ipc_master_save_state() |
---|
| 415 | { |
---|
| 416 | char *fn = g_strdup( "/tmp/bee-restart.XXXXXX" ); |
---|
| 417 | int fd = mkstemp( fn ); |
---|
| 418 | GSList *l; |
---|
| 419 | FILE *fp; |
---|
| 420 | int i; |
---|
| 421 | |
---|
| 422 | if( fd == -1 ) |
---|
| 423 | { |
---|
| 424 | log_message( LOGLVL_ERROR, "Could not create temporary file: %s", strerror( errno ) ); |
---|
| 425 | g_free( fn ); |
---|
| 426 | return NULL; |
---|
| 427 | } |
---|
| 428 | |
---|
| 429 | /* This is more convenient now. */ |
---|
| 430 | fp = fdopen( fd, "w" ); |
---|
| 431 | |
---|
| 432 | for( l = child_list, i = 0; l; l = l->next ) |
---|
| 433 | i ++; |
---|
| 434 | |
---|
| 435 | /* Number of client processes. */ |
---|
| 436 | fprintf( fp, "%d\n", i ); |
---|
| 437 | |
---|
| 438 | for( l = child_list; l; l = l->next ) |
---|
| 439 | fprintf( fp, "%d %d\n", ((struct bitlbee_child*)l->data)->pid, |
---|
| 440 | ((struct bitlbee_child*)l->data)->ipc_fd ); |
---|
| 441 | |
---|
| 442 | if( fclose( fp ) == 0 ) |
---|
| 443 | { |
---|
| 444 | return fn; |
---|
| 445 | } |
---|
| 446 | else |
---|
| 447 | { |
---|
| 448 | unlink( fn ); |
---|
| 449 | g_free( fn ); |
---|
| 450 | return NULL; |
---|
| 451 | } |
---|
| 452 | } |
---|
| 453 | |
---|
| 454 | void ipc_master_set_statefile( char *fn ) |
---|
| 455 | { |
---|
| 456 | statefile = g_strdup( fn ); |
---|
| 457 | } |
---|
| 458 | |
---|
| 459 | int ipc_master_load_state() |
---|
| 460 | { |
---|
| 461 | struct bitlbee_child *child; |
---|
| 462 | FILE *fp; |
---|
| 463 | int i, n; |
---|
| 464 | |
---|
| 465 | if( statefile == NULL ) |
---|
| 466 | return 0; |
---|
| 467 | fp = fopen( statefile, "r" ); |
---|
| 468 | unlink( statefile ); /* Why do it later? :-) */ |
---|
| 469 | if( fp == NULL ) |
---|
| 470 | return 0; |
---|
| 471 | |
---|
| 472 | if( fscanf( fp, "%d", &n ) != 1 ) |
---|
| 473 | { |
---|
| 474 | log_message( LOGLVL_WARNING, "Could not import state information for child processes." ); |
---|
| 475 | fclose( fp ); |
---|
| 476 | return 0; |
---|
| 477 | } |
---|
| 478 | |
---|
| 479 | log_message( LOGLVL_INFO, "Importing information for %d child processes.", n ); |
---|
| 480 | for( i = 0; i < n; i ++ ) |
---|
| 481 | { |
---|
| 482 | child = g_new0( struct bitlbee_child, 1 ); |
---|
| 483 | |
---|
| 484 | if( fscanf( fp, "%d %d", &child->pid, &child->ipc_fd ) != 2 ) |
---|
| 485 | { |
---|
| 486 | log_message( LOGLVL_WARNING, "Unexpected end of file: Only processed %d clients.", i ); |
---|
| 487 | g_free( child ); |
---|
| 488 | fclose( fp ); |
---|
| 489 | return 0; |
---|
| 490 | } |
---|
| 491 | child->ipc_inpa = gaim_input_add( child->ipc_fd, GAIM_INPUT_READ, ipc_master_read, child ); |
---|
| 492 | |
---|
| 493 | child_list = g_slist_append( child_list, child ); |
---|
| 494 | } |
---|
| 495 | |
---|
| 496 | ipc_to_children_str( "HELLO\r\n" ); |
---|
| 497 | ipc_to_children_str( "OPERMSG :New BitlBee master process started (version " BITLBEE_VERSION ")\r\n" ); |
---|
| 498 | |
---|
| 499 | return 1; |
---|
| 500 | } |
---|