search for: main_deinit

Displaying 20 results from an estimated 37 matches for "main_deinit".

2018 Dec 04
3
Dovecot 2.3.4 crash
...359D8: userdb_deinit (userdb.c:191) Dec 4 12:09:40 dovecot: auth-worker: Error: ==3071== by 0x119C88: auth_deinit (auth.c:335) Dec 4 12:09:40 dovecot: auth-worker: Error: ==3071== by 0x119C88: auths_deinit (auth.c:433) Dec 4 12:09:40 dovecot: auth-worker: Error: ==3071== by 0x1187FF: main_deinit (main.c:271) Dec 4 12:09:40 dovecot: auth-worker: Error: ==3071== by 0x1187FF: main (main.c:398) Dec 4 12:09:40 dovecot: auth-worker: Error: ==3071== Address 0x66e3870 is 0 bytes inside a block of size 120 free'd Dec 4 12:09:40 dovecot: auth-worker: Error: ==3071== at 0x4C2CDDB: fr...
2018 Dec 03
3
Dovecot 2.3.4 crash
On 2 Dec 2018, at 22.22, Guillaume via dovecot <dovecot at dovecot.org> wrote: > > I also have this kind of segfault since the update : > > Dec 2 21:12:11 xxxxxxx dovecot: auth-worker: Error: *** Error in `dovecot/auth': double free or corruption (fasttop): 0x000055573bb99f70 Is this easy to reproduce? Can you try with valgrind? It will slow down the logins a bit though.
2018 Dec 02
0
Dovecot 2.3.4 crash
...t;userdb_deinit" #9 0x0000562c3454ac89 in auth_deinit (auth=0x562c36624d28) at auth.c:335 passdb = <optimized out> userdb = 0x562c36624ee8 #10 auths_deinit () at auth.c:433 auth__foreach_end = 0x562c3662e628 auth = 0x562c3662e620 #11 0x0000562c34549800 in main_deinit () at main.c:271 l = <optimized out> #12 main (argc=<optimized out>, argv=<optimized out>) at main.c:398 c = <optimized out> gdb /usr/lib/dovecot/auth /var/core/core.28358 GNU gdb (Debian 7.12-6) 7.12.0.20161007-git Copyright (C) 2016 Free Software Foundatio...
2008 Feb 06
2
(message_parse_header_next): assertion failed:, +(IS_LWSP(line->value[0])) 1.1beta14
...c:257 #10 0x00000000004b263d in io_loop_handle_timeouts_real (ioloop=0x5ff240) at ioloop.c:267 #11 0x00000000004b351e in io_loop_handler_run (ioloop=0x5ff240) at ioloop-kqueue.c:123 #12 0x00000000004b2690 in io_loop_handle_timeouts_real (ioloop=0x5ff240) at ioloop.c:280 #13 0x00000000004265de in main_deinit () at main.c:269 #14 0x000000000041418e in _start (ap=0x0, cleanup=0x7fffffffe6ad) at /usr/src/lib/csu/amd64/crt1.c:69 #15 0x00007fffffffe6ca in ?? () #16 0x00007fffffffe6dd in ?? () #17 0x00007fffffffe6f8 in ?? () #18 0x00007fffffffe709 in ?? () #19 0x00007fffffffe71a in ?? () #20 0x00007fffffffe...
2017 Sep 11
1
pop3-login core dump when using TLSSTART on version dovecot-2.2.32 (INTERNAL)
...eng_init.c:115 to_return = 1 #3 0x00007ff0bd3c1064 in ENGINE_finish (e=0x1c51c60) at eng_init.c:150 to_return = 1 #4 0x00007ff0be0f9300 in ssl_proxy_deinit () from /local/nextmail/dovecot/lib64/dovecot/libdovecot-login.so.0 No symbol table info available. #5 0x00007ff0be0f4472 in main_deinit () from /local/nextmail/dovecot/lib64/dovecot/libdovecot-login.so.0 No symbol table info available. #6 0x00007ff0be0f479f in login_binary_run () from /local/nextmail/dovecot/lib64/dovecot/libdovecot-login.so.0 No symbol table info available. #7 0x00000000004032da in main (argc=1, argv=0x7ffe3059f...
2005 Jan 15
1
STARTTLS and inetd
...i_fatal("Unknown parameter: %s", argv[i]); } @@ -277,7 +278,7 @@ } if (fd != -1) - (void)client_create(fd, &ip, TRUE); + (void)client_create(fd, &ip, ssl); io_loop_run(ioloop); main_deinit();
2017 Sep 11
1
pop3-login core dump when using TLSSTART on version dovecot-2.2.32 (INTERNAL)
...n = 1 > #3 0x00007ff0bd3c1064 in ENGINE_finish (e=0x1c51c60) at eng_init.c:150 > to_return = 1 > #4 0x00007ff0be0f9300 in ssl_proxy_deinit () from > /local/nextmail/dovecot/lib64/dovecot/libdovecot-login.so.0 > No symbol table info available. > #5 0x00007ff0be0f4472 in main_deinit () from > /local/nextmail/dovecot/lib64/dovecot/libdovecot-login.so.0 > No symbol table info available. > #6 0x00007ff0be0f479f in login_binary_run () from > /local/nextmail/dovecot/lib64/dovecot/libdovecot-login.so.0 > No symbol table info available. > #7 0x00000000004032da i...
2012 Aug 13
2
[PATCH] Replace hard-coded PKG_STATEDIR with state_dir setting
...ext ATTR_UNUSED) { - (void)replicator_queue_export(queue, REPLICATOR_DB_PATH); + const char *db_path; + + db_path = t_strconcat(set->state_dir, "replicator.db", NULL); + (void)replicator_queue_export(queue, db_path); } static void main_init(void) @@ -77,10 +80,13 @@ static void main_deinit(void) { + const char *db_path; + notify_connections_destroy_all(); replicator_brain_deinit(&brain); timeout_remove(&to_dump); - (void)replicator_queue_export(queue, REPLICATOR_DB_PATH); + db_path = t_strconcat(set->state_dir, "replicator.db", NULL); + (void)replicator_qu...
2010 Oct 08
0
2.0.5: dovecot/auth crash upon reload (with backtrace)
..._full ( _conn=<value optimized out>, abort_requests=<value optimized out>) at auth-client-connection.c:355 conn = 0x9fe3bf8 clients = 0x9f82ba8 #9 0x080517b1 in auth_client_connections_deinit () at auth-client-connection.c:407 i = 2 #10 0x0805c1bf in main_deinit (argc=1, argv=0x9efe1c0) at main.c:166 No locals. #11 main (argc=1, argv=0x9efe1c0) at main.c:284 c = <value optimized out> -- Ralf Hildebrandt Gesch?ftsbereich IT | Abteilung Netzwerk Charit? - Universit?tsmedizin Berlin Campus Benjamin Franklin Hindenburgdamm 30 | D-12203...
2015 Oct 01
1
doveadm + ldap userdb
Hi! OS: CentOS Linux release 7.1.1503 (Core) Dovecot: 2.2.18 Run user listing - doveadm user '*', single user - work. auth[20540]: segfault at 8 ip 00007fd554340c6b sp 00007ffc17c886e0 error 4 in libauthdb_ldap.so[7fd55433b000+a000] dovecot: auth: Fatal: master: service(auth): child 20540 killed with signal 11 (core dumped) dovecot: auth: Error: net_connect_unix(auth-worker) failed:
2010 Sep 19
1
linking problems of dovecot 2.0.3
...ILD/dovecot-2.0.3/src/login-common/main.c:358: undefined reference to `login_process_preinit' ./.libs/liblogin.a(main.o): In function `main_init': /tmp/dovecot/BUILD/dovecot-2.0.3/src/login-common/main.c:308: undefined reference to `clients_init' ./.libs/liblogin.a(main.o): In function `main_deinit': /tmp/dovecot/BUILD/dovecot-2.0.3/src/login-common/main.c:317: undefined reference to `clients_deinit' ./.libs/liblogin.a(sasl-server.o): In function `anvil_check_too_many_connections': /tmp/dovecot/BUILD/dovecot-2.0.3/src/login-common/sasl-server.c:187: undefined reference to `login_b...
2019 Jan 20
2
auth-worker service failed since recent MariaDB upgrade
...3b320) at > auth.c:335 > passdb = <optimized out> > userdb = 0x55927283b4e0 > passdb = <optimized out> > userdb = <optimized out> > #11 auths_deinit () at auth.c:433 > auth__foreach_end = 0x559272842e18 > auth = 0x559272842e10 > #12 0x00005592724ae664 in main_deinit () at main.c:271 > l = <optimized out> > l = <optimized out> > l_end = <optimized out> > #13 main (argc=<optimized out>, argv=<optimized out>) at main.c:398 > c = <optimized out> > (gdb) > > My `dovecot -n` output is this: > > 0 ?...
2018 Feb 19
0
[bt full included] imap-login: Panic: file client-common.c: line 272 (client_destroy): assertion failed: (client->create_finished)
...d9b2e624 in clients_destroy_all_reason (reason=0x7fddd9b35e21 "Disconnected: Shutting down") at client-common.c:430 client = <optimized out> next = 0x0 #7 0x0000561a9aeeb12a in imap_login_deinit () at imap-login-client.c:764 No locals. #8 0x00007fddd9b34587 in main_deinit () at main.c:475 strp = <optimized out> strp = <optimized out> strp_end = <optimized out> #9 login_binary_run (binary=<optimized out>, argc=<optimized out>, argv=<optimized out>) at main.c:550 set_pool = 0x561a9c86b100...
2008 Oct 15
2
imap segfaults in dovecot 1.2 on logout
...trcasecmp () from /lib/tls/i686/cmov/libc.so.6 #1 0x0806ab6c in command_unregister (name=0x815b9ab "LOGOUT") at commands.c:83 #2 0x0806ac56 in command_unregister_array (cmdarr=0x815ba8c, count=25) at commands.c:101 #3 0x0806ae36 in commands_deinit () at commands.c:146 #4 0x08073a8f in main_deinit () at main.c:273 #5 0x08073b7b in main (argc=1, argv=0xbfacb884, envp=0xbfacb88c) at main.c:310 (gdb) up #1 0x0806ab6c in command_unregister (name=0x815b9ab "LOGOUT") at commands.c:83 83 if (strcasecmp(cmd[i].name, name) == 0) { (gdb) p cmd[i] $1 = {name = 0xb7e65ce...
2010 Oct 06
1
2.0.5: doveadm reload results in dovecot/auth crashing
It's not THAT bad, but: GNU gdb (GDB) 7.0.1-debian Copyright (C) 2009 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was
2019 Jan 20
2
auth-worker service failed since recent MariaDB upgrade
...auth.c:335 passdb = <optimized out> userdb = 0x55927283b4e0 passdb = <optimized out> userdb = <optimized out> #11 auths_deinit () at auth.c:433 auth__foreach_end = 0x559272842e18 auth = 0x559272842e10 #12 0x00005592724ae664 in main_deinit () at main.c:271 l = <optimized out> l = <optimized out> l_end = <optimized out> #13 main (argc=<optimized out>, argv=<optimized out>) at main.c:398 c = <optimized out> (gdb) My `dovecot -n` output is this: 0 ? root ? /hom...
2019 Jan 27
1
auth-worker: Error: double free or corruption (fasttop)
...auth.c:335 passdb = <optimized out> userdb = 0x55c7d97d5068 passdb = <optimized out> userdb = <optimized out> #10 auths_deinit () at auth.c:433 auth__foreach_end = 0x55c7d97dbda0 auth = 0x55c7d97dbd98 #11 0x000055c7d7ae1d73 in main_deinit () at main.c:271 l = <optimized out> l = <optimized out> l_end = <optimized out> #12 main (argc=<optimized out>, argv=<optimized out>) at main.c:398 c = <optimized out> (gdb) Hope it helps... Regards, Marcel Am 20.1.2019 12...
2007 Nov 15
1
imap process consuming 100% CPU (Dovecot 1.0.3)
...gt; (dbx) dump > > io_loop_run(ioloop = 0x2001d0e8), line 329 in "ioloop.c" > > (dbx) up > > main(argc = 1, argv = 0x2ff22b50, envp = 0x2ff22b58), line 290 in "main.c" > > (dbx) list > > 290 io_loop_run(ioloop); > > 291 main_deinit(); > > 292 > > 293 io_loop_destroy(&ioloop); > > 294 lib_deinit(); > > 295 > > 296 return 0; > > 297 } > > (dbx) dump > > main(argc = 1, argv = 0x2ff22b50, envp = 0x2ff22b58), line 290 in "mai...
2019 Jan 20
0
auth-worker service failed since recent MariaDB upgrade
...t; passdb = <optimized out> >> userdb = 0x55927283b4e0 >> passdb = <optimized out> >> userdb = <optimized out> >> #11 auths_deinit () at auth.c:433 >> auth__foreach_end = 0x559272842e18 >> auth = 0x559272842e10 >> #12 0x00005592724ae664 in main_deinit () at main.c:271 >> l = <optimized out> >> l = <optimized out> >> l_end = <optimized out> >> #13 main (argc=<optimized out>, argv=<optimized out>) at main.c:398 >> c = <optimized out> >> (gdb) >> >> My `dovecot -n`...
2012 Nov 10
4
imap-login hanging when firewall blocks ssl handshaking
...= 124797000 } events = (struct kevent *) 0x10cb4ee78 #9 0x000000010cb11b88 in io_loop_run (ioloop=0x7fff53152b90) at ioloop.c:398 No locals. #10 0x000000010cafde9b in master_service_run (service=0x7f7fa0c039f0, callback=0x7f7fa0c1c2d8) at master-service.c:543 No locals. #11 0x000000010cabdcd1 in main_deinit [inlined] () at /private/tmp/johnsone/dovecot-2.1.10/src/login-common/main.c:406 set_pool = (pool_t) 0x7f7fa100b420 login_socket = 0x10cb4f7f8 "?9??" #12 0x000000010cabdcd1 in login_binary_run (argc=1, argv=0x7f7fa0c037c0, binary=0x7fff53152b90) at main.c:407 set_pool = (pool_t) 0x7f7f...