search for: istream_priv

Displaying 13 results from an estimated 13 matches for "istream_priv".

2017 Jul 05
2
gzip compressed mbox: Panic: file istream-zlib.c: line 421 (i_stream_zlib_seek): assertion failed: (ret == -1)
...am)) > 0); > > in src/lib-compression/istream-zlib.c > > does it still fix the issue? With this change applied to fresh origin/master-2.2 I see no error: --- a/src/lib-compression/istream-zlib.c +++ b/src/lib-compression/istream-zlib.c @@ -417,7 +417,7 @@ i_stream_zlib_seek(struct istream_private *stream, uoff_t v_offset, bool mark) } i_stream_skip(&stream->istream, avail); - } while ((ret = i_stream_read(&stream->istream)) > 0); + } while (i_stream_read(&stream->istream) > 0);...
2017 Jul 05
0
gzip compressed mbox: Panic: file istream-zlib.c: line 421 (i_stream_zlib_seek): assertion failed: (ret == -1)
...-compression/istream-zlib.c > > > > does it still fix the issue? > > With this change applied to fresh origin/master-2.2 I see no error: > --- a/src/lib-compression/istream-zlib.c > +++ b/src/lib-compression/istream-zlib.c > @@ -417,7 +417,7 @@ i_stream_zlib_seek(struct istream_private *stream, > uoff_t v_offset, bool mark) > } > > i_stream_skip(&stream->istream, avail); > - } while ((ret = i_stream_read(&stream->istream)) > 0); > + } while (i_stream_read(&stream...
2008 Dec 02
1
Panic 1.1.x
...) at failures.c:430 No locals. #5 0x080b6b1c in i_panic (format=0x80cac30 "file %s: line %d (%s): assertion failed: (%s)") at failures.c:197 args = 0xbfab4104 "\"\204\r\bQ" #6 0x080bb69a in i_stream_read (stream=0x80f4590) at istream.c:81 _stream = (struct istream_private *) 0x80f4568 ret = 6 __PRETTY_FUNCTION__ = "i_stream_read" #7 0x080bd57b in i_stream_limit_read (stream=0x80f1c50) at istream-limit.c:59 left = <value optimized out> ret = 0 pos = 0 __PRETTY_FUNCTION__ = "i_stream_limit_read&q...
2017 Jul 05
2
gzip compressed mbox: Panic: file istream-zlib.c: line 421 (i_stream_zlib_seek): assertion failed: (ret == -1)
Hello, I use mbox compressed by gzip as read-only folder (using zlib plugin). I have errors in logs: Panic: file istream-zlib.c: line 416 (i_stream_zlib_seek): assertion failed: (ret == -1) and can't read messages in MUA. IMAP commands to reproduce a bug: 1 SELECT "compressed.gz" 2 UID fetch 2 BODY.PEEK[] # sleep 5 3 UID fetch 2 BODY.PEEK[] # repeat sleep/fetch until assert (a
2017 Jul 21
2
Core dumped when authenticating to managesieve
...m /libexec/ld-elf.so.1...done. Loaded symbols for /libexec/ld-elf.so.1 #0 i_stream_seek (stream=0x0, v_offset=80) at istream.c:296 296 istream.c: No such file or directory. in istream.c (gdb) bt full #0 i_stream_seek (stream=0x0, v_offset=80) at istream.c:296 _stream = (struct istream_private *) 0x5385e16 #1 0x000000000536937a in i_stream_limit_read (stream=0x767d540) at istream-limit.c:34 lstream = (struct limit_istream *) 0x767d540 left = 123848760 ret = 1 pos = 119265200 #2 0x000000000535f340 in i_stream_read (stream=0x767d5b0) at istream.c:174...
2008 Oct 09
5
Panic 1.1.4
...04 in i_stream_limit_read (stream=0x8118cc8) at istream-limit.c:83 left = <value optimized out> ret = -1 pos = 65 __PRETTY_FUNCTION__ = "i_stream_limit_read" #7 0x080c7e28 in i_stream_read (stream=0x8118cf0) at istream.c:73 _stream = (struct istream_private *) 0x0 ret = <value optimized out> __PRETTY_FUNCTION__ = "i_stream_read" #8 0x080c7edd in i_stream_read_data (stream=0x8118cf0, data_r=0xbf941e68, size_r=0xbf941e64, threshold=65) at istream.c:299 ret = -1080811928 read_more = false __PRE...
2017 Jul 24
0
Core dumped when authenticating to managesieve
...Loaded symbols for /libexec/ld-elf.so.1 > #0 i_stream_seek (stream=0x0, v_offset=80) at istream.c:296 > 296 istream.c: No such file or directory. > in istream.c > (gdb) bt full > #0 i_stream_seek (stream=0x0, v_offset=80) at istream.c:296 > _stream = (struct istream_private *) 0x5385e16 > #1 0x000000000536937a in i_stream_limit_read (stream=0x767d540) at > istream-limit.c:34 > lstream = (struct limit_istream *) 0x767d540 > left = 123848760 > ret = 1 > pos = 119265200 > #2 0x000000000535f340 in i_stream_read (st...
2010 Aug 31
0
istream_read like zlib, but without zlib
...rouble is, my debug file have a lot of "READ Plugin\n", and i think it's because my read becomes a loop, i think it's because i don't know to identify the EOF from the istream. you can help me to identify the EOF and set it ? Tks .!!! static ssize_t i_stream_emx_read(struct istream_private *stream) { struct emx_istream *emxstream = (struct emx_istream *)stream; const unsigned char *data; uoff_t high_offset; size_t size; int ret; fprintf(emxstream->debug,"READ Plugin\n"); fflush(emxstream->debug); high_offset = stream->istream....
2009 Oct 15
2
FS Quota broken for delivering BIG message
...cc7e57d71b4) failed: Disk quota exceeded stat(/tmp/Dovecot Delivery Mail) failed: Disk quota exceeded from=<>, msgid=: save failed to INBOX: BUG: Unknown internal error --- This "write_full() failed" from: src/lib/istream-seekable.c --- static ssize_t i_stream_seekable_read(struct istream_private *stream) { ... /* save to our file */ data = i_stream_get_data(sstream->cur_input, &size); if (write_full(sstream->fd, data, size) < 0) { i_assert(errno != 0); stream->istream.stream_e...
2008 Oct 16
2
dovecot 1.1.4 maildir imap segfault in message_parse_header_next
...ilter_read (stream=0x877d6d0) at istream-header-filter.c:293 mstream = (struct header_filter_istream *) 0xfffffffe ret = <value optimized out> pos = <value optimized out> #3 0x080d4fa8 in i_stream_read (stream=0x877d6f8) at istream.c:73 _stream = (struct istream_private *) 0xfffffffe ret = <value optimized out> __PRETTY_FUNCTION__ = '\0' <repeats 13 times> #4 0x080d505d in i_stream_read_data (stream=0x877d6f8, data_r=0xbfa439a8, size_r=0xbfa439a4, threshold=0) at istream.c:299 ret = 0 read_more = false...
2016 Mar 20
2
[BUG] Dovecot 2.2.22 lmtp child killed with signal 11
...o "word"... Reading symbols from /usr/local/dovecot/libexec/dovecot/lmtp...done. [New LWP 31124] Core was generated by `dovecot/lmtp'. Program terminated with signal SIGSEGV, Segmentation fault. #0 0x00007f466de6d9fc in i_stream_skip (stream=0x0, count=0) at istream.c:241 241 struct istream_private *_stream = stream->real_stream; #0 0x00007f466de6d9fc in i_stream_skip (stream=0x0, count=0) at istream.c:241 _stream = 0x7f4670603020 data_size = 139940470939840 #1 0x00007f466de71e9b in i_stream_concat_skip (cstream=0x7f467069af80) at istream-concat.c:128 stream =...
2009 Aug 13
4
Crash in v1.2.3: istream.c: assertion failed on line 99
Hi, I have a couple of people bumping into an issue with their imap process crashing - from the users perspective, their mail client (thunderbird) just stops recieving new mail. It still seems to be possible for them to read their mail using squirell mail. When it crashes, it leaves behind a log message like this on the server: Aug 12 15:52:25 fury dovecot: imap-login: Login:
2009 Feb 24
4
dovecot1.2 segfault
I've tried 2 builds of dovecot, based on a amd64 rebuild of the experimental package on http://xi.rename-it.nl/debian/ I've tried to include as much useful info as possible, sorry if I've missed out anything of use. Let me know as I'm more then happy to assist in any way possible. $ telnet host 110 Escape character is '^]'. +OK Dovecot ready. USER ian at domain.com +OK