[5ebff60] | 1 | /********************************************************************\ |
---|
[b7d3cc34] | 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[0e788f5] | 4 | * Copyright 2002-2012 Wilmer van der Gaast and others * |
---|
[b7d3cc34] | 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; |
---|
[6f10697] | 22 | if not, write to the Free Software Foundation, Inc., 51 Franklin St., |
---|
| 23 | Fifth Floor, Boston, MA 02110-1301 USA |
---|
[b7d3cc34] | 24 | */ |
---|
| 25 | |
---|
| 26 | #include "bitlbee.h" |
---|
[7c9db24] | 27 | |
---|
| 28 | #include "arc.h" |
---|
| 29 | #include "base64.h" |
---|
[b7d3cc34] | 30 | #include "commands.h" |
---|
| 31 | #include "protocols/nogaim.h" |
---|
| 32 | #include "help.h" |
---|
[54879ab] | 33 | #include "ipc.h" |
---|
[7c9db24] | 34 | #include "md5.h" |
---|
| 35 | #include "misc.h" |
---|
[b7d3cc34] | 36 | #include <signal.h> |
---|
| 37 | #include <unistd.h> |
---|
| 38 | #include <sys/time.h> |
---|
[d25f6fc] | 39 | #include <sys/wait.h> |
---|
[aaf92a9] | 40 | #include <pwd.h> |
---|
[badd148] | 41 | #include <locale.h> |
---|
[ad46e4d] | 42 | #include <grp.h> |
---|
[b7d3cc34] | 43 | |
---|
[d150a9d] | 44 | #if defined(OTR_BI) || defined(OTR_PI) |
---|
| 45 | #include "otr.h" |
---|
| 46 | #endif |
---|
| 47 | |
---|
[0d2cd10] | 48 | #ifdef HAVE_BACKTRACE |
---|
| 49 | #include <execinfo.h> |
---|
| 50 | #endif |
---|
| 51 | |
---|
[5ebff60] | 52 | global_t global; /* Against global namespace pollution */ |
---|
[b7d3cc34] | 53 | |
---|
[2e99039] | 54 | static struct { |
---|
| 55 | int fd[2]; |
---|
| 56 | int tag; |
---|
| 57 | } shutdown_pipe = {{-1 , -1}, 0}; |
---|
| 58 | |
---|
[5ebff60] | 59 | static void sighandler_shutdown(int signal); |
---|
| 60 | static void sighandler_crash(int signal); |
---|
[b7d3cc34] | 61 | |
---|
[5ebff60] | 62 | static int crypt_main(int argc, char *argv[]); |
---|
[7c9db24] | 63 | |
---|
[5ebff60] | 64 | int main(int argc, char *argv[]) |
---|
[b7d3cc34] | 65 | { |
---|
| 66 | int i = 0; |
---|
[58bc4e6] | 67 | char *old_cwd = NULL; |
---|
[b7d3cc34] | 68 | struct sigaction sig, old; |
---|
[0d2cd10] | 69 | #ifdef HAVE_BACKTRACE |
---|
| 70 | void *unused[1]; |
---|
| 71 | #endif |
---|
[5ebff60] | 72 | |
---|
[badd148] | 73 | /* Required to make iconv to ASCII//TRANSLIT work. This makes BitlBee |
---|
| 74 | system-locale-sensitive. :-( */ |
---|
[5ebff60] | 75 | setlocale(LC_CTYPE, ""); |
---|
| 76 | |
---|
| 77 | if (argc > 1 && strcmp(argv[1], "-x") == 0) { |
---|
| 78 | return crypt_main(argc, argv); |
---|
| 79 | } |
---|
| 80 | |
---|
[d25f6fc] | 81 | log_init(); |
---|
[10b3683] | 82 | /* Catch early errors */ |
---|
| 83 | log_link(LOGLVL_ERROR, LOGOUTPUT_CONSOLE); |
---|
| 84 | log_link(LOGLVL_WARNING, LOGOUTPUT_CONSOLE); |
---|
[5ebff60] | 85 | |
---|
| 86 | global.conf_file = g_strdup(CONF_FILE_DEF); |
---|
| 87 | global.conf = conf_load(argc, argv); |
---|
| 88 | if (global.conf == NULL) { |
---|
| 89 | return(1); |
---|
| 90 | } |
---|
| 91 | |
---|
[72d48b6] | 92 | if (global.conf->runmode == RUNMODE_INETD) { |
---|
| 93 | log_link(LOGLVL_ERROR, LOGOUTPUT_IRC); |
---|
| 94 | log_link(LOGLVL_WARNING, LOGOUTPUT_IRC); |
---|
| 95 | } else { |
---|
| 96 | log_link(LOGLVL_ERROR, LOGOUTPUT_CONSOLE); |
---|
| 97 | log_link(LOGLVL_WARNING, LOGOUTPUT_CONSOLE); |
---|
| 98 | } |
---|
| 99 | |
---|
[60c1a4e] | 100 | b_main_init(); |
---|
[5ebff60] | 101 | |
---|
[3fc6c32] | 102 | /* libpurple doesn't like fork()s after initializing itself, so if |
---|
| 103 | we use it, do this init a little later (in case we're running in |
---|
| 104 | ForkDaemon mode). */ |
---|
| 105 | #ifndef WITH_PURPLE |
---|
| 106 | nogaim_init(); |
---|
| 107 | #endif |
---|
[5ebff60] | 108 | |
---|
[858ea01] | 109 | #ifdef OTR_BI |
---|
[5ebff60] | 110 | otr_init(); |
---|
[858ea01] | 111 | #endif |
---|
[5ebff60] | 112 | |
---|
| 113 | global.helpfile = g_strdup(HELP_FILE); |
---|
| 114 | if (help_init(&global.help, global.helpfile) == NULL) { |
---|
| 115 | log_message(LOGLVL_WARNING, "Error opening helpfile %s.", HELP_FILE); |
---|
[5674207] | 116 | } |
---|
[b7d3cc34] | 117 | |
---|
[5ebff60] | 118 | global.storage = storage_init(global.conf->primary_storage, global.conf->migrate_storage); |
---|
| 119 | if (global.storage == NULL) { |
---|
| 120 | log_message(LOGLVL_ERROR, "Unable to load storage backend '%s'", global.conf->primary_storage); |
---|
| 121 | return(1); |
---|
[8e6ecfe] | 122 | } |
---|
| 123 | |
---|
| 124 | global.auth = auth_init(global.conf->auth_backend); |
---|
| 125 | if (global.conf->auth_backend && global.auth == NULL) { |
---|
| 126 | log_message(LOGLVL_ERROR, "Unable to load authentication backend '%s'", global.conf->auth_backend); |
---|
| 127 | return(1); |
---|
[b7d3cc34] | 128 | } |
---|
[5ebff60] | 129 | |
---|
| 130 | if (global.conf->runmode == RUNMODE_INETD) { |
---|
| 131 | i = bitlbee_inetd_init(); |
---|
| 132 | log_message(LOGLVL_INFO, "%s %s starting in inetd mode.", PACKAGE, BITLBEE_VERSION); |
---|
| 133 | |
---|
| 134 | } else if (global.conf->runmode == RUNMODE_DAEMON) { |
---|
[b7d3cc34] | 135 | i = bitlbee_daemon_init(); |
---|
[5ebff60] | 136 | log_message(LOGLVL_INFO, "%s %s starting in daemon mode.", PACKAGE, BITLBEE_VERSION); |
---|
| 137 | } else if (global.conf->runmode == RUNMODE_FORKDAEMON) { |
---|
[54879ab] | 138 | /* In case the operator requests a restart, we need this. */ |
---|
[5ebff60] | 139 | old_cwd = g_malloc(256); |
---|
| 140 | if (getcwd(old_cwd, 255) == NULL) { |
---|
| 141 | log_message(LOGLVL_WARNING, "Could not save current directory: %s", strerror(errno)); |
---|
| 142 | g_free(old_cwd); |
---|
[54879ab] | 143 | old_cwd = NULL; |
---|
| 144 | } |
---|
[5ebff60] | 145 | |
---|
[d25f6fc] | 146 | i = bitlbee_daemon_init(); |
---|
[5ebff60] | 147 | log_message(LOGLVL_INFO, "%s %s starting in forking daemon mode.", PACKAGE, BITLBEE_VERSION); |
---|
| 148 | } |
---|
| 149 | if (i != 0) { |
---|
| 150 | return(i); |
---|
[d25f6fc] | 151 | } |
---|
[5ebff60] | 152 | |
---|
| 153 | if ((global.conf->user && *global.conf->user) && |
---|
| 154 | (global.conf->runmode == RUNMODE_DAEMON || |
---|
| 155 | global.conf->runmode == RUNMODE_FORKDAEMON) && |
---|
| 156 | (!getuid() || !geteuid())) { |
---|
[aaf92a9] | 157 | struct passwd *pw = NULL; |
---|
[5ebff60] | 158 | pw = getpwnam(global.conf->user); |
---|
[0483e1e] | 159 | if (!pw) { |
---|
| 160 | log_message(LOGLVL_ERROR, "Failed to look up user %s.", global.conf->user); |
---|
| 161 | |
---|
| 162 | } else if (initgroups(global.conf->user, pw->pw_gid) != 0) { |
---|
| 163 | log_message(LOGLVL_ERROR, "initgroups: %s.", strerror(errno)); |
---|
| 164 | |
---|
| 165 | } else if (setgid(pw->pw_gid) != 0) { |
---|
| 166 | log_message(LOGLVL_ERROR, "setgid(%d): %s.", pw->pw_gid, strerror(errno)); |
---|
| 167 | |
---|
| 168 | } else if (setuid(pw->pw_uid) != 0) { |
---|
| 169 | log_message(LOGLVL_ERROR, "setuid(%d): %s.", pw->pw_uid, strerror(errno)); |
---|
[ad46e4d] | 170 | } |
---|
[aaf92a9] | 171 | } |
---|
[5ebff60] | 172 | |
---|
[b7d3cc34] | 173 | /* Catch some signals to tell the user what's happening before quitting */ |
---|
[5ebff60] | 174 | memset(&sig, 0, sizeof(sig)); |
---|
[7233f68] | 175 | sig.sa_handler = SIG_IGN; |
---|
[5ebff60] | 176 | sigaction(SIGCHLD, &sig, &old); |
---|
| 177 | sigaction(SIGPIPE, &sig, &old); |
---|
[b7d3cc34] | 178 | sig.sa_flags = SA_RESETHAND; |
---|
[7233f68] | 179 | sig.sa_handler = sighandler_crash; |
---|
[5ebff60] | 180 | sigaction(SIGSEGV, &sig, &old); |
---|
[7233f68] | 181 | |
---|
[2e99039] | 182 | sighandler_shutdown_setup(); |
---|
| 183 | |
---|
| 184 | sig.sa_handler = sighandler_shutdown; |
---|
| 185 | sigaction(SIGINT, &sig, &old); |
---|
| 186 | sigaction(SIGTERM, &sig, &old); |
---|
[5ebff60] | 187 | |
---|
[0d2cd10] | 188 | #ifdef HAVE_BACKTRACE |
---|
| 189 | /* As per the backtrace(3) man page, call this outside of the signal |
---|
| 190 | * handler once to ensure any dynamic libraries are loaded in an |
---|
| 191 | * async-signal-safe environment to prevent deadlocks */ |
---|
| 192 | backtrace(unused, 1); |
---|
| 193 | #endif |
---|
| 194 | |
---|
[5ebff60] | 195 | if (!getuid() || !geteuid()) { |
---|
| 196 | log_message(LOGLVL_WARNING, "BitlBee is running with root privileges. Why?"); |
---|
| 197 | } |
---|
| 198 | |
---|
[ba9edaa] | 199 | b_main_run(); |
---|
[5ebff60] | 200 | |
---|
[0fbda193] | 201 | /* Mainly good for restarting, to make sure we close the help.txt fd. */ |
---|
[5ebff60] | 202 | help_free(&global.help); |
---|
| 203 | |
---|
| 204 | if (global.restart) { |
---|
[54879ab] | 205 | char *fn = ipc_master_save_state(); |
---|
[daae10f] | 206 | char *env; |
---|
[5ebff60] | 207 | |
---|
| 208 | env = g_strdup_printf("_BITLBEE_RESTART_STATE=%s", fn); |
---|
| 209 | putenv(env); |
---|
| 210 | g_free(fn); |
---|
[daae10f] | 211 | /* Looks like env should *not* be freed here as putenv |
---|
| 212 | doesn't make a copy. Odd. */ |
---|
[5ebff60] | 213 | |
---|
| 214 | i = chdir(old_cwd); |
---|
| 215 | close(global.listen_socket); |
---|
| 216 | |
---|
| 217 | if (execv(argv[0], argv) == -1) { |
---|
[cd63d58] | 218 | /* Apparently the execve() failed, so let's just |
---|
| 219 | jump back into our own/current main(). */ |
---|
| 220 | /* Need more cleanup code to make this work. */ |
---|
| 221 | return 1; /* main( argc, argv ); */ |
---|
[5ebff60] | 222 | } |
---|
[54879ab] | 223 | } |
---|
[5ebff60] | 224 | |
---|
| 225 | return(0); |
---|
[b7d3cc34] | 226 | } |
---|
| 227 | |
---|
[5ebff60] | 228 | static int crypt_main(int argc, char *argv[]) |
---|
[7c9db24] | 229 | { |
---|
| 230 | int pass_len; |
---|
| 231 | unsigned char *pass_cr, *pass_cl; |
---|
[5ebff60] | 232 | |
---|
| 233 | if (argc < 4 || (strcmp(argv[2], "hash") != 0 && |
---|
| 234 | strcmp(argv[2], "unhash") != 0 && argc < 5)) { |
---|
| 235 | printf("Supported:\n" |
---|
| 236 | " %s -x enc <key> <cleartext password>\n" |
---|
| 237 | " %s -x dec <key> <encrypted password>\n" |
---|
| 238 | " %s -x hash <cleartext password>\n" |
---|
| 239 | " %s -x unhash <hashed password>\n" |
---|
| 240 | " %s -x chkhash <hashed password> <cleartext password>\n", |
---|
| 241 | argv[0], argv[0], argv[0], argv[0], argv[0]); |
---|
| 242 | } else if (strcmp(argv[2], "enc") == 0) { |
---|
[5535a47] | 243 | char *encoded; |
---|
| 244 | |
---|
| 245 | pass_len = arc_encode(argv[4], strlen(argv[4]), &pass_cr, argv[3], 12); |
---|
| 246 | |
---|
| 247 | encoded = base64_encode(pass_cr, pass_len); |
---|
| 248 | printf("%s\n", encoded); |
---|
| 249 | g_free(encoded); |
---|
| 250 | g_free(pass_cr); |
---|
[5ebff60] | 251 | } else if (strcmp(argv[2], "dec") == 0) { |
---|
[5535a47] | 252 | pass_len = base64_decode(argv[4], &pass_cr); |
---|
[5ebff60] | 253 | arc_decode(pass_cr, pass_len, (char **) &pass_cl, argv[3]); |
---|
| 254 | printf("%s\n", pass_cl); |
---|
[5535a47] | 255 | |
---|
| 256 | g_free(pass_cr); |
---|
| 257 | g_free(pass_cl); |
---|
[5ebff60] | 258 | } else if (strcmp(argv[2], "hash") == 0) { |
---|
[7c9db24] | 259 | md5_byte_t pass_md5[21]; |
---|
| 260 | md5_state_t md5_state; |
---|
[5535a47] | 261 | char *encoded; |
---|
[5ebff60] | 262 | |
---|
| 263 | random_bytes(pass_md5 + 16, 5); |
---|
| 264 | md5_init(&md5_state); |
---|
| 265 | md5_append(&md5_state, (md5_byte_t *) argv[3], strlen(argv[3])); |
---|
| 266 | md5_append(&md5_state, pass_md5 + 16, 5); /* Add the salt. */ |
---|
| 267 | md5_finish(&md5_state, pass_md5); |
---|
| 268 | |
---|
[5535a47] | 269 | encoded = base64_encode(pass_md5, 21); |
---|
| 270 | printf("%s\n", encoded); |
---|
| 271 | g_free(encoded); |
---|
[5ebff60] | 272 | } else if (strcmp(argv[2], "unhash") == 0) { |
---|
| 273 | printf("Hash %s submitted to a massive Beowulf cluster of\n" |
---|
| 274 | "overclocked 486s. Expect your answer next year somewhere around this time. :-)\n", argv[3]); |
---|
| 275 | } else if (strcmp(argv[2], "chkhash") == 0) { |
---|
| 276 | char *hash = strncmp(argv[3], "md5:", 4) == 0 ? argv[3] + 4 : argv[3]; |
---|
| 277 | int st = md5_verify_password(argv[4], hash); |
---|
| 278 | |
---|
| 279 | printf("Hash %s given password.\n", st == 0 ? "matches" : "does not match"); |
---|
| 280 | |
---|
[7c9db24] | 281 | return st; |
---|
| 282 | } |
---|
[5ebff60] | 283 | |
---|
[7c9db24] | 284 | return 0; |
---|
| 285 | } |
---|
| 286 | |
---|
[2e99039] | 287 | /* Set up a pipe for SIGTERM/SIGINT so the actual signal handler doesn't do anything unsafe */ |
---|
| 288 | void sighandler_shutdown_setup() |
---|
| 289 | { |
---|
| 290 | if (shutdown_pipe.fd[0] != -1) { |
---|
| 291 | /* called again from a forked process, clean up to avoid propagating the signal */ |
---|
| 292 | b_event_remove(shutdown_pipe.tag); |
---|
| 293 | close(shutdown_pipe.fd[0]); |
---|
| 294 | close(shutdown_pipe.fd[1]); |
---|
| 295 | } |
---|
| 296 | |
---|
| 297 | if (pipe(shutdown_pipe.fd) == 0) { |
---|
| 298 | shutdown_pipe.tag = b_input_add(shutdown_pipe.fd[0], B_EV_IO_READ, bitlbee_shutdown, NULL); |
---|
| 299 | } |
---|
| 300 | } |
---|
| 301 | |
---|
[7233f68] | 302 | /* Signal handler for SIGTERM and SIGINT */ |
---|
[5ebff60] | 303 | static void sighandler_shutdown(int signal) |
---|
[b7d3cc34] | 304 | { |
---|
[0483e1e] | 305 | int unused G_GNUC_UNUSED; |
---|
[7233f68] | 306 | /* Write a single null byte to the pipe, just to send a message to the main loop. |
---|
| 307 | * This gets handled by bitlbee_shutdown (the b_input_add callback for this pipe) */ |
---|
[0483e1e] | 308 | unused = write(shutdown_pipe.fd[1], "", 1); |
---|
[7233f68] | 309 | } |
---|
| 310 | |
---|
[0d2cd10] | 311 | #ifdef HAVE_BACKTRACE |
---|
| 312 | /* Writes a backtrace to (usually) /var/lib/bitlbee/crash.log |
---|
| 313 | * No malloc allowed means not a lot can be written to that file */ |
---|
| 314 | static void sighandler_crash_backtrace() |
---|
| 315 | { |
---|
| 316 | int fd, mapsfd; |
---|
| 317 | int size; |
---|
| 318 | void *trace[128]; |
---|
| 319 | const char message[] = "## " PACKAGE " crashed\n" |
---|
| 320 | "## Version: " BITLBEE_VERSION "\n" |
---|
| 321 | "## Configure args: " BITLBEE_CONFIGURE_ARGS "\n" |
---|
| 322 | "##\n" |
---|
| 323 | "## Backtrace:\n\n"; |
---|
| 324 | const char message2[] = "\n" |
---|
| 325 | "## Hint: To get details on addresses use\n" |
---|
| 326 | "## addr2line -e <binary> <address>\n" |
---|
| 327 | "## or\n" |
---|
| 328 | "## gdb <binary> -ex 'l *<address>' -ex q\n" |
---|
| 329 | "## where <binary> is a filename from above and <address> is the part between (...)\n" |
---|
| 330 | "##\n\n"; |
---|
| 331 | const char message3[] = "\n## End of memory maps. See above for the backtrace\n\n"; |
---|
| 332 | |
---|
| 333 | fd = open(CRASHFILE, O_WRONLY | O_APPEND | O_CREAT, 0600); |
---|
| 334 | |
---|
| 335 | if (fd == -1 || write(fd, message, sizeof(message) - 1) == -1) { |
---|
| 336 | return; |
---|
| 337 | } |
---|
| 338 | |
---|
| 339 | size = backtrace(trace, 128); |
---|
| 340 | backtrace_symbols_fd(trace, size, fd); |
---|
| 341 | |
---|
| 342 | (void) write(fd, message2, sizeof(message2) - 1); |
---|
| 343 | |
---|
| 344 | /* a bit too linux-specific, so fail gracefully */ |
---|
| 345 | mapsfd = open("/proc/self/maps", O_RDONLY, 0); |
---|
| 346 | |
---|
| 347 | if (mapsfd != -1) { |
---|
| 348 | char buf[4096] = {0}; |
---|
| 349 | ssize_t bytes; |
---|
| 350 | |
---|
| 351 | while ((bytes = read(mapsfd, buf, sizeof(buf))) > 0) { |
---|
| 352 | (void) write(fd, buf, bytes); |
---|
| 353 | } |
---|
| 354 | (void) close(mapsfd); |
---|
| 355 | (void) write(fd, message3, sizeof(message3) - 1); |
---|
| 356 | } |
---|
| 357 | |
---|
| 358 | (void) close(fd); |
---|
| 359 | } |
---|
| 360 | #endif |
---|
| 361 | |
---|
[7233f68] | 362 | /* Signal handler for SIGSEGV |
---|
| 363 | * A desperate attempt to tell the user that everything is wrong in the world. |
---|
| 364 | * Avoids using irc_abort() because it has several unsafe calls to malloc */ |
---|
[5ebff60] | 365 | static void sighandler_crash(int signal) |
---|
[7233f68] | 366 | { |
---|
| 367 | GSList *l; |
---|
[0d2cd10] | 368 | const char message[] = "ERROR :BitlBee crashed! (SIGSEGV received)\r\n" |
---|
| 369 | #ifdef HAVE_BACKTRACE |
---|
| 370 | "ERROR :Writing backtrace to " CRASHFILE "\r\n" |
---|
| 371 | #endif |
---|
| 372 | "ERROR :This is a bug either in BitlBee or a plugin, ask us on IRC if unsure\r\n"; |
---|
[7233f68] | 373 | |
---|
[5ebff60] | 374 | for (l = irc_connection_list; l; l = l->next) { |
---|
[7233f68] | 375 | irc_t *irc = l->data; |
---|
[c467adc] | 376 | sock_make_blocking(irc->fd); |
---|
[e1e5bd6] | 377 | if (irc->sendbuffer) { |
---|
[c82e4ca] | 378 | (void) write(irc->fd, irc->sendbuffer->str, irc->sendbuffer->len); |
---|
[e1e5bd6] | 379 | } |
---|
[0d2cd10] | 380 | (void) write(irc->fd, message, sizeof(message) - 1); |
---|
[b7d3cc34] | 381 | } |
---|
[7233f68] | 382 | |
---|
[0d2cd10] | 383 | #ifdef HAVE_BACKTRACE |
---|
| 384 | sighandler_crash_backtrace(); |
---|
| 385 | #endif |
---|
| 386 | |
---|
[5ebff60] | 387 | raise(signal); |
---|
[b7d3cc34] | 388 | } |
---|
| 389 | |
---|
| 390 | double gettime() |
---|
| 391 | { |
---|
| 392 | struct timeval time[1]; |
---|
| 393 | |
---|
[5ebff60] | 394 | gettimeofday(time, 0); |
---|
| 395 | return((double) time->tv_sec + (double) time->tv_usec / 1000000); |
---|
[b7d3cc34] | 396 | } |
---|