Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. crash desallocating local string when closing socket
Forum Updated to NodeBB v4.3 + New Features

crash desallocating local string when closing socket

Scheduled Pinned Locked Moved Solved General and Desktop
17 Posts 2 Posters 4.4k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    kshegunov
    Moderators
    wrote on 4 Jan 2016, 18:44 last edited by
    #2

    Hello,
    Is _log() used elsewhere in the code? Is it tread-safe? Could you share its implementation?

    Read and abide by the Qt Code of Conduct

    1 Reply Last reply
    0
    • M Offline
      M Offline
      mbruel
      wrote on 4 Jan 2016, 19:15 last edited by
      #3

      well yeah my _log function is thread safe. I'm using it in other parts of the project (multi threaded) without any issue...

      void MonitorHandler::_log(const QString & aMessage) const {
           Proxy::log(iLogPrefix, aMessage);
      }
      
      void Proxy::log(const QString & aClassPrefix, const QString &aMessage){
          QString str(aClassPrefix);
          str.append(aMessage);
          *sLogMain << str;
      }
      
      Log & Log::operator<< (const QString & aStr){
          QMutexLocker lock(&iMutex);
          writeLinePrefix();
          iStream << aStr << "\n";
          iStream.flush();
          return *this;
      }
      

      iStream being a QTextStream that is attached to an open QFile (iStream.setDevice(&iFile))

      1 Reply Last reply
      0
      • M Offline
        M Offline
        mbruel
        wrote on 4 Jan 2016, 19:25 last edited by mbruel 1 Apr 2016, 19:27
        #4

        I've just tried to remove the call of my _log function.
        I've replaced it with a qDebug call.

        Still crashing but the backtrace is a bit different:

        Thread 4 (Thread 0xb3df2b40 (LWP 5066)):
        #0  0xb7719d40 in __kernel_vsyscall ()
        No symbol table info available.
        #1  0xb6cd6307 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
                resultvar = <optimized out>
                resultvar = <optimized out>
                pid = -1226514432
                selftid = 5066
        #2  0xb6cd79c3 in __GI_abort () at abort.c:89
                save_stage = 2
                act = {__sigaction_handler = {sa_handler = 0xb7267ce6 <QEvent::~QEvent()+6>, sa_sigaction = 0xb7267ce6 <QEvent::~QEvent()+6>}, sa_mask = {__val = {3075700288, 3069837312, 3007327008, 3069177430, 3007315984, 3069177512, 3007361808, 3072752998, 1, 3075700288, 3007327328, 3007327328, 3075715212, 3071824420, 3007327328, 1, 3076274649, 3069837312, 3007327328, 3007327328, 3075715212, 3069177448, 0, 3007327328, 3075715212, 3076822231, 3076822183, 3069177430, 3077657284, 0, 3, 4096}}, sa_flags = -1227305128, sa_restorer = 0x1000}
                sigs = {__val = {32, 0 <repeats 31 times>}}
        #3  0xb6d146f8 in __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0xb6e0a65c "*** Error in `%s': %s: 0x%s ***\n") at ../sysdeps/posix/libc_fatal.c:175
                ap = <optimized out>
                fd = 10
                on_2 = <optimized out>
                list = <optimized out>
                nlist = <optimized out>
                cp = <optimized out>
                written = <optimized out>
        #4  0xb6d1a76a in malloc_printerr (action=<optimized out>, str=0xb6e06138 "corrupted double-linked list", ptr=0xb340b298) at malloc.c:4996
                buf = "b340b298"
                cp = <optimized out>
        #5  0xb6d1b5fb in _int_free (av=0xb3400010, p=<optimized out>, have_lock=0) at malloc.c:3996
                size = 32968
                fb = <optimized out>
                nextchunk = 0xb340b298
                nextsize = <optimized out>
                nextinuse = <optimized out>
                prevsize = <optimized out>
                bck = <optimized out>
                fwd = <optimized out>
                errstr = 0x0
                locked = 1
                __func__ = "_int_free"
        #6  0xb707f476 in QArrayData::deallocate(QArrayData*, unsigned int, unsigned int) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #7  0xb7084b89 in QByteArray::clear() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #8  0xb764590a in QAbstractSocket::disconnectFromHost() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Network.so.5
        No symbol table info available.
        #9  0x0808f0b4 in MonitorHandler::readyRead (this=0x826a010) at ../nntpProxyQT/monitorhandler.cpp:69
                line = {static MaxSize = 1073741808, d = 0xb340f318}
                str = {static null = {<No data fields>}, d = 0xb3403190}
                __PRETTY_FUNCTION__ = "void MonitorHandler::readyRead()"
        #10 0x0808f802 in QtPrivate::FunctorCall<QtPrivate::IndexesList<>, QtPrivate::List<>, void, void (MonitorHandler::*)()>::call(void (MonitorHandler::*)(), MonitorHandler*, void**) (f=(void (MonitorHandler::*)(MonitorHandler * const)) 0x808efa4 <MonitorHandler::readyRead()>, o=0x826a010, arg=0xb3df1f1c) at /opt/Qt5.5.1/5.5/gcc/include/QtCore/qobjectdefs_impl.h:501
        No locals.
        #11 0x0808f7b3 in QtPrivate::FunctionPointer<void (MonitorHandler::*)()>::call<QtPrivate::List<>, void>(void (MonitorHandler::*)(), MonitorHandler*, void**) (f=(void (MonitorHandler::*)(MonitorHandler * const)) 0x808efa4 <MonitorHandler::readyRead()>, o=0x826a010, arg=0xb3df1f1c) at /opt/Qt5.5.1/5.5/gcc/include/QtCore/qobjectdefs_impl.h:520
        No locals.
        #12 0x0808f74a in QtPrivate::QSlotObject<void (MonitorHandler::*)(), QtPrivate::List<>, void>::impl(int, QtPrivate::QSlotObjectBase*, QObject*, void**, bool*) (which=1, this_=0xb3403028, r=0x826a010, a=0xb3df1f1c, ret=0x0) at /opt/Qt5.5.1/5.5/gcc/include/QtCore/qobject_impl.h:143
        No locals.
        #13 0xb7290598 in QMetaObject::activate(QObject*, int, int, void**) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #14 0xb729112d in QMetaObject::activate(QObject*, QMetaObject const*, int, void**) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #15 0xb730f0e2 in QIODevice::readyRead() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #16 0xb7646030 in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Network.so.5
        No symbol table info available.
        #17 0xb763965a in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Network.so.5
        No symbol table info available.
        #18 0xb7653c1f in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Network.so.5
        No symbol table info available.
        #19 0xb72615fc in QCoreApplicationPrivate::notify_helper(QObject*, QEvent*) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #20 0xb7261760 in QCoreApplication::notifyInternal(QObject*, QEvent*) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #21 0xb72b9425 in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #22 0xb4f68da4 in g_main_context_dispatch () from /lib/i386-linux-gnu/libglib-2.0.so.0
        No symbol table info available.
        #23 0xb4f690c9 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
        No symbol table info available.
        #24 0xb4f69196 in g_main_context_iteration () from /lib/i386-linux-gnu/libglib-2.0.so.0
        No symbol table info available.
        #25 0xb72b8dbc in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #26 0xb725ed13 in QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #27 0xb725f18a in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #28 0xb7078c85 in QThread::exec() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #29 0xb7078d58 in QThread::run() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #30 0xb707df60 in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #31 0xb6faeefb in start_thread (arg=0xb3df2b40) at pthread_create.c:309
                __res = <optimized out>
                pd = 0xb3df2b40
                now = <optimized out>
                unwind_buf = {cancel_jmp_buf = {{jmp_buf = {-1224994816, -1277220032, 4001536, -1277221848, 412061843, 1393877145}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}}
                not_first_call = <optimized out>
                pagesize_m1 = <optimized out>
                sp = <optimized out>
                freesize = <optimized out>
                __PRETTY_FUNCTION__ = "start_thread"
        #32 0xb6d9162e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129
        No locals.
        
        Thread 3 (Thread 0xb4708b40 (LWP 5063)):
        #0  0xb7719d40 in __kernel_vsyscall ()
        No symbol table info available.
        #1  0xb6fb3015 in pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_timedwait.S:245
        No locals.
        #2  0xb707eebd in QWaitCondition::wait(QMutex*, unsigned long) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #3  0xb707af1a in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #4  0xb707df60 in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #5  0xb6faeefb in start_thread (arg=0xb4708b40) at pthread_create.c:309
                __res = <optimized out>
                pd = 0xb4708b40
                now = <optimized out>
                unwind_buf = {cancel_jmp_buf = {{jmp_buf = {-1224994816, -1267692736, 4001536, -1267694552, 1204785308, 1393877145}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}}
                not_first_call = <optimized out>
                pagesize_m1 = <optimized out>
                sp = <optimized out>
                freesize = <optimized out>
                __PRETTY_FUNCTION__ = "start_thread"
        #6  0xb6d9162e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129
        No locals.
        
        Thread 1 (Thread 0xb4eae700 (LWP 5054)):
        #0  0xb7719d40 in __kernel_vsyscall ()
        No symbol table info available.
        #1  0xb6d86deb in poll () at ../sysdeps/unix/syscall-template.S:81
        No locals.
        #2  0xb4f780b0 in g_poll () from /lib/i386-linux-gnu/libglib-2.0.so.0
        No symbol table info available.
        #3  0xb4f69054 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
        No symbol table info available.
        #4  0xb4f69196 in g_main_context_iteration () from /lib/i386-linux-gnu/libglib-2.0.so.0
        No symbol table info available.
        #5  0xb72b8dbc in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #6  0xb725ed13 in QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #7  0xb725f18a in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #8  0xb726728a in QCoreApplication::exec() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
        No symbol table info available.
        #9  0x0804e12d in main (argc=1, argv=0xbf944b44) at ../nntpProxyQT/main.cpp:45
                app = <incomplete type>
                theProxy = 0x82310e8
                configFile = 0x0
        
        

        Now it's seems to be around the disconnectFromHost call...
        I find really weird that if I don't use the QString for the logging I don't get the crash...

        1 Reply Last reply
        0
        • M Offline
          M Offline
          mbruel
          wrote on 4 Jan 2016, 20:19 last edited by
          #5

          I changed my code to be like this:

          void MonitorHandler::readyRead(){
              if(iSocket->canReadLine()){
                  QString line(iSocket->readLine());
          
                  if (line.startsWith(sCmds.QUIT, Qt::CaseInsensitive)
                          || line.startsWith(sCmds.EXIT, Qt::CaseInsensitive)){
                      iSocket->disconnectFromHost();
                  } else {
                      write("plop\n");
                  }
              }
          }
          

          and I'm getting a crash on the disconnectFromHost.

          
          Thread 4 (Thread 0xb3dffb40 (LWP 5922)):
          #0  0xb775fd40 in __kernel_vsyscall ()
          No symbol table info available.
          #1  0xb6d1c307 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
                  resultvar = <optimized out>
                  resultvar = <optimized out>
                  pid = -1226227712
                  selftid = 5922
          #2  0xb6d1d9c3 in __GI_abort () at abort.c:89
                  save_stage = 2
                  act = {__sigaction_handler = {sa_handler = 0xb72adce6 <QEvent::~QEvent()+6>, sa_sigaction = 0xb72adce6 <QEvent::~QEvent()+6>}, sa_mask = {__val = {3075987008, 3070124032, 3007327008, 3069464150, 3007315984, 3069464232, 3007361808, 3073039718, 1, 3075987008, 3007327328, 3007327328, 3076002160, 3072111140, 3007327328, 1, 3076561369, 3070124032, 3007327328, 3007327328, 3076002160, 3069464168, 0, 3007327328, 3076002160, 3077108951, 3077108903, 3069464150, 3077944004, 0, 3, 4096}}, sa_flags = -1227018408, sa_restorer = 0x1000}
                  sigs = {__val = {32, 0 <repeats 31 times>}}
          #3  0xb6d5a6f8 in __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0xb6e5065c "*** Error in `%s': %s: 0x%s ***\n") at ../sysdeps/posix/libc_fatal.c:175
                  ap = <optimized out>
                  fd = 10
                  on_2 = <optimized out>
                  list = <optimized out>
                  nlist = <optimized out>
                  cp = <optimized out>
                  written = <optimized out>
          #4  0xb6d6076a in malloc_printerr (action=<optimized out>, str=0xb6e4c138 "corrupted double-linked list", ptr=0xb3403188) at malloc.c:4996
                  buf = "b3403188"
                  cp = <optimized out>
          #5  0xb6d61793 in _int_free (av=0xb3400010, p=<optimized out>, have_lock=0) at malloc.c:3987
                  size = 33040
                  fb = <optimized out>
                  nextchunk = 0xb340b298
                  nextsize = <optimized out>
                  nextinuse = <optimized out>
                  prevsize = <optimized out>
                  bck = <optimized out>
                  fwd = <optimized out>
                  errstr = 0x0
                  locked = 1
                  __func__ = "_int_free"
          #6  0xb70c5476 in QArrayData::deallocate(QArrayData*, unsigned int, unsigned int) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #7  0xb70cab89 in QByteArray::clear() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #8  0xb768b90a in QAbstractSocket::disconnectFromHost() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Network.so.5
          No symbol table info available.
          #9  0x0808f00d in MonitorHandler::readyRead (this=0x982ece0) at ../nntpProxyQT/monitorhandler.cpp:71
                  line = {static null = {<No data fields>}, d = 0xb3402998}
          #10 0x0808f906 in QtPrivate::FunctorCall<QtPrivate::IndexesList<>, QtPrivate::List<>, void, void (MonitorHandler::*)()>::call(void (MonitorHandler::*)(), MonitorHandler*, void**) (f=(void (MonitorHandler::*)(MonitorHandler * const)) 0x808ef3a <MonitorHandler::readyRead()>, o=0x982ece0, arg=0xb3dfef1c) at /opt/Qt5.5.1/5.5/gcc/include/QtCore/qobjectdefs_impl.h:501
          No locals.
          #11 0x0808f8b7 in QtPrivate::FunctionPointer<void (MonitorHandler::*)()>::call<QtPrivate::List<>, void>(void (MonitorHandler::*)(), MonitorHandler*, void**) (f=(void (MonitorHandler::*)(MonitorHandler * const)) 0x808ef3a <MonitorHandler::readyRead()>, o=0x982ece0, arg=0xb3dfef1c) at /opt/Qt5.5.1/5.5/gcc/include/QtCore/qobjectdefs_impl.h:520
          No locals.
          #12 0x0808f84e in QtPrivate::QSlotObject<void (MonitorHandler::*)(), QtPrivate::List<>, void>::impl(int, QtPrivate::QSlotObjectBase*, QObject*, void**, bool*) (which=1, this_=0xb3403028, r=0x982ece0, a=0xb3dfef1c, ret=0x0) at /opt/Qt5.5.1/5.5/gcc/include/QtCore/qobject_impl.h:143
          No locals.
          #13 0xb72d6598 in QMetaObject::activate(QObject*, int, int, void**) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #14 0xb72d712d in QMetaObject::activate(QObject*, QMetaObject const*, int, void**) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #15 0xb73550e2 in QIODevice::readyRead() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #16 0xb768c030 in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Network.so.5
          No symbol table info available.
          #17 0xb767f65a in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Network.so.5
          No symbol table info available.
          #18 0xb7699c1f in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Network.so.5
          No symbol table info available.
          #19 0xb72a75fc in QCoreApplicationPrivate::notify_helper(QObject*, QEvent*) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #20 0xb72a7760 in QCoreApplication::notifyInternal(QObject*, QEvent*) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #21 0xb72ff425 in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #22 0xb4faeda4 in g_main_context_dispatch () from /lib/i386-linux-gnu/libglib-2.0.so.0
          No symbol table info available.
          #23 0xb4faf0c9 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
          No symbol table info available.
          #24 0xb4faf196 in g_main_context_iteration () from /lib/i386-linux-gnu/libglib-2.0.so.0
          No symbol table info available.
          #25 0xb72fedbc in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #26 0xb72a4d13 in QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #27 0xb72a518a in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #28 0xb70bec85 in QThread::exec() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #29 0xb70bed58 in QThread::run() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #30 0xb70c3f60 in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #31 0xb6ff4efb in start_thread (arg=0xb3dffb40) at pthread_create.c:309
                  __res = <optimized out>
                  pd = 0xb3dffb40
                  now = <optimized out>
                  unwind_buf = {cancel_jmp_buf = {{jmp_buf = {-1224708096, -1277166784, 4001536, -1277168600, 570784379, 1669204593}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}}
                  not_first_call = <optimized out>
                  pagesize_m1 = <optimized out>
                  sp = <optimized out>
                  freesize = <optimized out>
                  __PRETTY_FUNCTION__ = "start_thread"
          #32 0xb6dd762e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129
          No locals.
          
          Thread 3 (Thread 0xb474eb40 (LWP 5921)):
          #0  0xb775fd40 in __kernel_vsyscall ()
          No symbol table info available.
          #1  0xb6ff9015 in pthread_cond_timedwait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_timedwait.S:245
          No locals.
          #2  0xb70c4ebd in QWaitCondition::wait(QMutex*, unsigned long) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #3  0xb70c0f1a in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #4  0xb70c3f60 in ?? () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #5  0xb6ff4efb in start_thread (arg=0xb474eb40) at pthread_create.c:309
                  __res = <optimized out>
                  pd = 0xb474eb40
                  now = <optimized out>
                  unwind_buf = {cancel_jmp_buf = {{jmp_buf = {-1224708096, -1267406016, 4001536, -1267407832, 1948613236, 1669204593}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}}
                  not_first_call = <optimized out>
                  pagesize_m1 = <optimized out>
                  sp = <optimized out>
                  freesize = <optimized out>
                  __PRETTY_FUNCTION__ = "start_thread"
          #6  0xb6dd762e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:129
          No locals.
          
          Thread 1 (Thread 0xb4ef4700 (LWP 5912)):
          #0  0xb775fd40 in __kernel_vsyscall ()
          No symbol table info available.
          #1  0xb6dccdeb in poll () at ../sysdeps/unix/syscall-template.S:81
          No locals.
          #2  0xb4fbe0b0 in g_poll () from /lib/i386-linux-gnu/libglib-2.0.so.0
          No symbol table info available.
          #3  0xb4faf054 in ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
          No symbol table info available.
          #4  0xb4faf196 in g_main_context_iteration () from /lib/i386-linux-gnu/libglib-2.0.so.0
          No symbol table info available.
          #5  0xb72fedbc in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #6  0xb72a4d13 in QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #7  0xb72a518a in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #8  0xb72ad28a in QCoreApplication::exec() () from /opt/Qt5.5.1/5.5/gcc/lib/libQt5Core.so.5
          No symbol table info available.
          #9  0x0804e08d in main (argc=1, argv=0xbfeb3b24) at ../nntpProxyQT/main.cpp:45
                  app = <incomplete type>
                  theProxy = 0x97cb0e8
                  configFile = 0x0
          
          
          1 Reply Last reply
          0
          • M Offline
            M Offline
            mbruel
            wrote on 4 Jan 2016, 20:45 last edited by
            #6

            It seems that when I disconnect the socket, I go straight to my disconnection handler where I delete the socket.
            At this point when it tries to come back to readyRead, it is crashing on the destruction of the QString built on the QByteArray maybe coming from the buffer of the socket that has been freed?

            I don't have the issue if I'm putting the string in the heap:

            void MonitorHandler::readyRead(){
                if(iSocket->canReadLine()){
                    QString *line = new QString(iSocket->readLine());
            
            #ifdef LOG_MONITOR_DATA
                    QString str("Data In: ");
                    str += *line;
                    qDebug() << str;
            //        _log(str);
            #endif
            
                    if (line->startsWith(sCmds.QUIT, Qt::CaseInsensitive)
                            || line->startsWith(sCmds.EXIT, Qt::CaseInsensitive)){
                        delete line;
                        line = Q_NULLPTR;
                        iSocket->disconnectFromHost();
                    } else {
            
                        write("plop\n");
                    }
                    delete line;
                }
                qDebug() << "readyRead <<<";
            }
            

            But I don't find this really elegant...
            Any suggestion on how I could this in a better way?

            My Server only accepts one connection at a time, rejects new ones when it is busy. When the client exit, I would like to delete the iSocket and set it to NULL as it is the way I know if the server is busy or not.

            1 Reply Last reply
            0
            • K Offline
              K Offline
              kshegunov
              Moderators
              wrote on 4 Jan 2016, 20:49 last edited by
              #7

              You could make this connection
              connect(iSocket, &QTcpSocket::disconnected, this, &MonitorHandler::disconnected);
              to be queued. Or instead of deleting your socket with delete you could use QObject::deleteLater().

              Kind regards.

              Read and abide by the Qt Code of Conduct

              1 Reply Last reply
              0
              • M Offline
                M Offline
                mbruel
                wrote on 4 Jan 2016, 21:06 last edited by
                #8

                Thanks, I thought I tried and it didn't work but probably I queued the wrong connection.
                I'll take this option to queue the disconnect call of the socket. I'll keep the delete of the socket as I want to make sure the pointer is then set to NULL.

                K 1 Reply Last reply 4 Jan 2016, 21:13
                0
                • M mbruel
                  4 Jan 2016, 21:06

                  Thanks, I thought I tried and it didn't work but probably I queued the wrong connection.
                  I'll take this option to queue the disconnect call of the socket. I'll keep the delete of the socket as I want to make sure the pointer is then set to NULL.

                  K Offline
                  K Offline
                  kshegunov
                  Moderators
                  wrote on 4 Jan 2016, 21:13 last edited by
                  #9

                  @mbruel
                  If you want to be notified of the socket deletion and still wish to use deleteLater you could hold the pointer not as QTcpSocket *, but as a QPointer<QTcpSocket> instead. In that case when the socket is deleted by Qt (through processing of the events) the QPointer instance will be set to point to NULL automatically.

                  Kind regards.

                  Read and abide by the Qt Code of Conduct

                  M 1 Reply Last reply 5 Jan 2016, 11:23
                  0
                  • K kshegunov
                    4 Jan 2016, 21:13

                    @mbruel
                    If you want to be notified of the socket deletion and still wish to use deleteLater you could hold the pointer not as QTcpSocket *, but as a QPointer<QTcpSocket> instead. In that case when the socket is deleted by Qt (through processing of the events) the QPointer instance will be set to point to NULL automatically.

                    Kind regards.

                    M Offline
                    M Offline
                    mbruel
                    wrote on 5 Jan 2016, 11:23 last edited by
                    #10

                    @kshegunov
                    I'm trying QPointers and I'm having a compilation issue with the one of my QTextStream. I don't understand what is the problem.
                    Here is what I did:

                    definition:
                        QPointer<QTcpSocket>   iSocket;
                        QPointer<QTextStream>  iStream;
                    
                    void MonitorServer::newConnection(){
                        QTcpSocket *sock = iServer->nextPendingConnection();
                        if (iSocket.isNull()){
                            _log("Ignore Connection: Monitor Server has already a local connection...");
                            sock->write("Already a connection in use...\n");
                            sock->flush();
                            delete sock;
                        } else {
                            iSocket = sock;
                            iStream = new QTextStream(sock);
                    
                            connect(this, &MonitorServer::destroyMonitorConnection, iSocket.data(), &QObject::deleteLater);
                            connect(this, &MonitorServer::destroyMonitorConnection, iStream.data(), &QObject::deleteLater);
                    
                    }
                    

                    I'm getting this issue:

                    monitorserver.cpp:62: error: no matching function for call to 'MonitorServer::connect(MonitorServer*, void (MonitorServer::*)(), QTextStream*, void (QObject::*)())'
                             connect(this, &MonitorServer::destroyMonitorConnection, iStream.data(), &QObject::deleteLater);
                                                                                                                          ^
                    

                    It must be silly but I don't see why I'm getting this issue with the QTextStream and not with the QTcpSocket...

                    PS: Here is my code now for the deletion:

                    void MonitorServer::disconnected(){
                        _log("disconnected...");
                        emit destroyMonitorConnection();
                    }
                    
                    1 Reply Last reply
                    0
                    • K Offline
                      K Offline
                      kshegunov
                      Moderators
                      wrote on 5 Jan 2016, 12:22 last edited by kshegunov 1 May 2016, 12:24
                      #11

                      Hello,

                      It must be silly but I don't see why I'm getting this issue with the QTextStream and not with the QTcpSocket...

                      You're getting an error simply because QTextStream is not a QObject subclass, so it doesn't have signals, nor slots and you can't use it with QPointer. QPointer is specifically tailored to be used with QObject pointers, and not with any class. If you wish you could use QScopedPointer for the text stream or just create an instance on the stack when you're reading the socket (which would be my preference). For example:

                      void MonitorHandler::readyRead()
                      {
                          // ... Some code
                          QTextStream inputStream(iSocket);
                          // ... Read from the stream while there's data pending:
                          while (!inputStream.atEnd())  {
                              QString line = inputStream.readLine();
                              // ... Do something with line you've read
                          }
                      }
                      

                      Kind regards.

                      Read and abide by the Qt Code of Conduct

                      M 1 Reply Last reply 5 Jan 2016, 16:49
                      0
                      • K kshegunov
                        5 Jan 2016, 12:22

                        Hello,

                        It must be silly but I don't see why I'm getting this issue with the QTextStream and not with the QTcpSocket...

                        You're getting an error simply because QTextStream is not a QObject subclass, so it doesn't have signals, nor slots and you can't use it with QPointer. QPointer is specifically tailored to be used with QObject pointers, and not with any class. If you wish you could use QScopedPointer for the text stream or just create an instance on the stack when you're reading the socket (which would be my preference). For example:

                        void MonitorHandler::readyRead()
                        {
                            // ... Some code
                            QTextStream inputStream(iSocket);
                            // ... Read from the stream while there's data pending:
                            while (!inputStream.atEnd())  {
                                QString line = inputStream.readLine();
                                // ... Do something with line you've read
                            }
                        }
                        

                        Kind regards.

                        M Offline
                        M Offline
                        mbruel
                        wrote on 5 Jan 2016, 16:49 last edited by
                        #12

                        @kshegunov
                        ok I see, I thought all QT objects where inherited from QObject which in fact doesn't make sense as we can only inherit once from QObject...
                        For the QTextStream, using a local object on the stack means it will be initialised every time the socket receive information... I find it a not efficient so I'll keep a normal pointer.
                        Thanks for all your advices.
                        I start to really love QT :)

                        K 1 Reply Last reply 5 Jan 2016, 17:15
                        0
                        • M mbruel
                          5 Jan 2016, 16:49

                          @kshegunov
                          ok I see, I thought all QT objects where inherited from QObject which in fact doesn't make sense as we can only inherit once from QObject...
                          For the QTextStream, using a local object on the stack means it will be initialised every time the socket receive information... I find it a not efficient so I'll keep a normal pointer.
                          Thanks for all your advices.
                          I start to really love QT :)

                          K Offline
                          K Offline
                          kshegunov
                          Moderators
                          wrote on 5 Jan 2016, 17:15 last edited by kshegunov 1 May 2016, 17:18
                          #13

                          @mbruel said:

                          as we can only inherit once from QObject...

                          This is news to me, how come you can only inherit once? You can subclass QObject as many times as you wish.

                          For the QTextStream, using a local object on the stack means it will be initialised every time the socket receive information... I find it a not efficient so I'll keep a normal pointer.

                          This point is moot in your case. If you've profiled your code and indeed you're certain that creating a QTextStream on each read is in fact a bottleneck, then and only then you can think about optimization. If you don't wish to create the object everytime just put it globally in your class and on each connect set the QIODevice for the text stream. What's the point in creating the object in the heap really? You gain nothing but an obligation to clean the memory up at some point. Instead you could put a simple QTextStream stream; declaration in your class and call stream.setDevice(socket) when your socket is initialized, like this:

                          class MonitorServer : public QObject
                          {
                              // ... Put your code 
                          private:
                              QTextStream stream;
                          };
                          
                          void MonitorServer::newConnection()
                          {
                              QTcpSocket * sock = iServer->nextPendingConnection();
                              if (!sock)  {  // No pending connection (handle error accordingly)
                              }
                          
                              // Ready to accept the connection ... set the stream's IO device
                              stream.setDevice(sock);
                          }
                          
                          void MonitorHandler::readyRead()
                          {
                              // ... Read ... read ... read
                              if (line->startsWith(sCmds.QUIT, Qt::CaseInsensitive) || line->startsWith(sCmds.EXIT, Qt::CaseInsensitive))  {
                                  stream.setDevice(NULL);    //< This will flush the buffer to the device if any data is pending
                                  iSocket->disconnectFromHost();
                              }
                              // ... More code
                          }
                          

                          The same goes for the QStrings you're using. QString is implicitly shared so instead of making your code more optimized by creating the QString in the heap, you're gaining absolutely nothing, only potential memory leaks!

                          Read and abide by the Qt Code of Conduct

                          M 1 Reply Last reply 5 Jan 2016, 17:57
                          0
                          • K kshegunov
                            5 Jan 2016, 17:15

                            @mbruel said:

                            as we can only inherit once from QObject...

                            This is news to me, how come you can only inherit once? You can subclass QObject as many times as you wish.

                            For the QTextStream, using a local object on the stack means it will be initialised every time the socket receive information... I find it a not efficient so I'll keep a normal pointer.

                            This point is moot in your case. If you've profiled your code and indeed you're certain that creating a QTextStream on each read is in fact a bottleneck, then and only then you can think about optimization. If you don't wish to create the object everytime just put it globally in your class and on each connect set the QIODevice for the text stream. What's the point in creating the object in the heap really? You gain nothing but an obligation to clean the memory up at some point. Instead you could put a simple QTextStream stream; declaration in your class and call stream.setDevice(socket) when your socket is initialized, like this:

                            class MonitorServer : public QObject
                            {
                                // ... Put your code 
                            private:
                                QTextStream stream;
                            };
                            
                            void MonitorServer::newConnection()
                            {
                                QTcpSocket * sock = iServer->nextPendingConnection();
                                if (!sock)  {  // No pending connection (handle error accordingly)
                                }
                            
                                // Ready to accept the connection ... set the stream's IO device
                                stream.setDevice(sock);
                            }
                            
                            void MonitorHandler::readyRead()
                            {
                                // ... Read ... read ... read
                                if (line->startsWith(sCmds.QUIT, Qt::CaseInsensitive) || line->startsWith(sCmds.EXIT, Qt::CaseInsensitive))  {
                                    stream.setDevice(NULL);    //< This will flush the buffer to the device if any data is pending
                                    iSocket->disconnectFromHost();
                                }
                                // ... More code
                            }
                            

                            The same goes for the QStrings you're using. QString is implicitly shared so instead of making your code more optimized by creating the QString in the heap, you're gaining absolutely nothing, only potential memory leaks!

                            M Offline
                            M Offline
                            mbruel
                            wrote on 5 Jan 2016, 17:57 last edited by
                            #14

                            @kshegunov said:

                            You can subclass QObject as many times as you wish.

                            Well that was my impression. For what I remember when I started my project I couldn't inherit from both QTcpSocket and QThread... I don't remember the reason, I thought it had to do with the fact I was inheriting twice from QObject... Maybe it was not that...

                            @kshegunov said:

                            What's the point in creating the object in the heap really? You gain nothing but an obligation to clean the memory up at some point. Instead you could put a simple QTextStream stream; declaration in your class and call stream.setDevice(socket) when your socket is initialized, like this:

                            Well that was my first intention but I looked at the doc of setDevice which states that when the QTextStream is reassigned there is a flush on the old device. I guess there is a test to check if the device exists and is opened but I was lazy to check so I went for a new one in the heap for each connection as the old socket would have been destroyed.
                            Now that my project is nearly finished and quite tested, I may go back to this as indeed it is more clean.

                            @kshegunov said:

                            so instead of making your code more optimized by creating the QString in the heap, you're gaining absolutely nothing, only potential memory leaks!

                            I'm not using any QString on the heap.... The example I've put in my 3rd of 4th was just to attempts to identify the cause of the crash when my socket was closing... It was just some debug tests. By using your solution to queue the disconnect call, I went back to a normal local string on the stack.

                            I'll have a read of your links.
                            Cheers

                            K 1 Reply Last reply 5 Jan 2016, 18:08
                            0
                            • M mbruel
                              5 Jan 2016, 17:57

                              @kshegunov said:

                              You can subclass QObject as many times as you wish.

                              Well that was my impression. For what I remember when I started my project I couldn't inherit from both QTcpSocket and QThread... I don't remember the reason, I thought it had to do with the fact I was inheriting twice from QObject... Maybe it was not that...

                              @kshegunov said:

                              What's the point in creating the object in the heap really? You gain nothing but an obligation to clean the memory up at some point. Instead you could put a simple QTextStream stream; declaration in your class and call stream.setDevice(socket) when your socket is initialized, like this:

                              Well that was my first intention but I looked at the doc of setDevice which states that when the QTextStream is reassigned there is a flush on the old device. I guess there is a test to check if the device exists and is opened but I was lazy to check so I went for a new one in the heap for each connection as the old socket would have been destroyed.
                              Now that my project is nearly finished and quite tested, I may go back to this as indeed it is more clean.

                              @kshegunov said:

                              so instead of making your code more optimized by creating the QString in the heap, you're gaining absolutely nothing, only potential memory leaks!

                              I'm not using any QString on the heap.... The example I've put in my 3rd of 4th was just to attempts to identify the cause of the crash when my socket was closing... It was just some debug tests. By using your solution to queue the disconnect call, I went back to a normal local string on the stack.

                              I'll have a read of your links.
                              Cheers

                              K Offline
                              K Offline
                              kshegunov
                              Moderators
                              wrote on 5 Jan 2016, 18:08 last edited by
                              #15

                              @mbruel
                              Hello,

                              Well that was my impression. For what I remember when I started my project I couldn't inherit from both QTcpSocket and QThread... I don't remember the reason, I thought it had to do with the fact I was inheriting twice from QObject... Maybe it was not that...

                              I guess there was a bit of misunderstanding here. I meant that you can construct a hierarchy based on QObject without any restriction on the depth. You were talking of multiple inheritance. With multiple inheritance you should not extend two classes that are from the same hierarchy (with some very fine exceptions to that rule) and if in the end you do that should be a virtual inheritance like this:

                              class BadClass : public virtual BaseClass1, public virtual BaseClass2  {};
                              

                              In any case you shouldn't be subclassing QThread not to mention both QThread and QTcpSocket. Your new class is not a thread and a socket at the same time, is it?

                              I'm not using any QString on the heap.... The example I've put in my 3rd of 4th was just to attempts to identify the cause of the crash when my socket was closing... It was just some debug tests.

                              Okay, in that case you can disregard the comment. Still, in my opinion, one should be striving to use as little heap allocations as possible. In the end each QObject is dragging a private object that is allocated in the heap, and each implicitly shared class is doing the same but with a shared data object. So if you have a class that inherits from QObject there is nothing wrong in declaring your variables directly, instead of creating them in the heap and using the returned pointers.

                              Kind regards.

                              Read and abide by the Qt Code of Conduct

                              M 1 Reply Last reply 5 Jan 2016, 20:34
                              0
                              • K kshegunov
                                5 Jan 2016, 18:08

                                @mbruel
                                Hello,

                                Well that was my impression. For what I remember when I started my project I couldn't inherit from both QTcpSocket and QThread... I don't remember the reason, I thought it had to do with the fact I was inheriting twice from QObject... Maybe it was not that...

                                I guess there was a bit of misunderstanding here. I meant that you can construct a hierarchy based on QObject without any restriction on the depth. You were talking of multiple inheritance. With multiple inheritance you should not extend two classes that are from the same hierarchy (with some very fine exceptions to that rule) and if in the end you do that should be a virtual inheritance like this:

                                class BadClass : public virtual BaseClass1, public virtual BaseClass2  {};
                                

                                In any case you shouldn't be subclassing QThread not to mention both QThread and QTcpSocket. Your new class is not a thread and a socket at the same time, is it?

                                I'm not using any QString on the heap.... The example I've put in my 3rd of 4th was just to attempts to identify the cause of the crash when my socket was closing... It was just some debug tests.

                                Okay, in that case you can disregard the comment. Still, in my opinion, one should be striving to use as little heap allocations as possible. In the end each QObject is dragging a private object that is allocated in the heap, and each implicitly shared class is doing the same but with a shared data object. So if you have a class that inherits from QObject there is nothing wrong in declaring your variables directly, instead of creating them in the heap and using the returned pointers.

                                Kind regards.

                                M Offline
                                M Offline
                                mbruel
                                wrote on 5 Jan 2016, 20:34 last edited by mbruel 1 May 2016, 20:36
                                #16

                                @kshegunov

                                In any case you shouldn't be subclassing QThread not to mention both QThread and QTcpSocket. Your new class is not a thread and a socket at the same time, is it?

                                Well it was before knowing how QThread works, I thought the whole object, including its slots would be in the thread. That's why I wanted to have my Connection class to be a threaded socket. After a bit of reading I realised it doesn't work like this but that we should moveToThread instead.

                                @kshegunov

                                So if you have a class that inherits from QObject there is nothing wrong in declaring your variables directly, instead of creating them in the heap and using the returned pointers.

                                Yeah that's true. But pointers are still needed when you want to extend the scope of the objects and share them between different objects or also just have an handle independently of the instance (QTcpSocket handle pointing on a QTcpSocket or a QSslSocket)

                                I've just read your link about Implicit sharing, that's interesting to know. There are not so many classes but yeah QByteArray and QString are quite common. I suppose my crash was due to this sharing even between a QString built on a implicit shared QByteArray. I would have expect thus that there would be a copy done at detach time when the source QByteArray is destroyed but still have a local QString using the data...

                                K 1 Reply Last reply 5 Jan 2016, 20:44
                                0
                                • M mbruel
                                  5 Jan 2016, 20:34

                                  @kshegunov

                                  In any case you shouldn't be subclassing QThread not to mention both QThread and QTcpSocket. Your new class is not a thread and a socket at the same time, is it?

                                  Well it was before knowing how QThread works, I thought the whole object, including its slots would be in the thread. That's why I wanted to have my Connection class to be a threaded socket. After a bit of reading I realised it doesn't work like this but that we should moveToThread instead.

                                  @kshegunov

                                  So if you have a class that inherits from QObject there is nothing wrong in declaring your variables directly, instead of creating them in the heap and using the returned pointers.

                                  Yeah that's true. But pointers are still needed when you want to extend the scope of the objects and share them between different objects or also just have an handle independently of the instance (QTcpSocket handle pointing on a QTcpSocket or a QSslSocket)

                                  I've just read your link about Implicit sharing, that's interesting to know. There are not so many classes but yeah QByteArray and QString are quite common. I suppose my crash was due to this sharing even between a QString built on a implicit shared QByteArray. I would have expect thus that there would be a copy done at detach time when the source QByteArray is destroyed but still have a local QString using the data...

                                  K Offline
                                  K Offline
                                  kshegunov
                                  Moderators
                                  wrote on 5 Jan 2016, 20:44 last edited by
                                  #17

                                  @mbruel

                                  Yeah that's true. But pointers are still needed when you want to extend the scope of the objects and share them between different objects or also just have an handle independently of the instance (QTcpSocket handle pointing on a QTcpSocket or a QSslSocket)

                                  I don't argue that. But in your case the QTextStream is locally used, so to allocate in the heap is not as beneficial. In any case this is mostly depending on your preference (i.e. moc generates everything in the heap), I was just giving my opinion.

                                  There are not so many classes but yeah QByteArray and QString are quite common.

                                  In fact many classes in Qt are implicitly shared, including all the container (QList, QVector and the like) the images/pixmaps (QImage, QPixmap), strings and byte arrays, if memory serves me QVariant and more.

                                  I suppose my crash was due to this sharing even between a QString built on a implicit shared QByteArray.

                                  I doubt it. Probably your stack got corrupted and that's why you got the crash. Implicitly shared classes (as to my knowledge) are detaching-thread-safe - meaning that the data copying (which is occurring internally in the background) is thread safe.

                                  Read and abide by the Qt Code of Conduct

                                  1 Reply Last reply
                                  0

                                  11/17

                                  5 Jan 2016, 12:22

                                  • Login

                                  • Login or register to search.
                                  11 out of 17
                                  • First post
                                    11/17
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • Users
                                  • Groups
                                  • Search
                                  • Get Qt Extensions
                                  • Unsolved