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. QFile::close() leads to SIGILL
Qt 6.11 is out! See what's new in the release blog

QFile::close() leads to SIGILL

Scheduled Pinned Locked Moved Solved General and Desktop
31 Posts 5 Posters 6.9k 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.
  • SeDiS SeDi

    @Cobra91151 Thanks for the idea - I have never heard of it before! As I understand, that'd be for Windows, but my problem occurs on an Android device.

    That brought me to just go and try the same code on my windows machine. Runs without a problem there.
    So it's an "Android only" problem? I mean.. QFile...?

    I'm puzzled.

    Cobra91151C Offline
    Cobra91151C Offline
    Cobra91151
    wrote on last edited by
    #4

    @SeDi

    Additionally, you can enable the Developer mode on your Android device, connect to Win 10 machine and debug it live inside of Qt Creator. Maybe it could help you find this issue.

    1 Reply Last reply
    0
    • SeDiS SeDi

      Hi,

      I'm trying to read a .csv file via QTextstream. I works, but I then get a SIGILL crash on file.close().
      Any idea why? Seems like a straightforward thing, but I am probably missing something basic.

      (Qt 5.15.0 for Android, working on a Win10 machine, file content is read in correctly, I can QDebug()<< it properly. )

      Best regards
      Sebastian

      bool CsvTableModel::readDataFromFile() {
          QFile file("://myFileInARecource.csv");
      
          if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) 
          {
              qWarning()<<"file couldn't be opened";
              return false;
           }
      
          int lineNo = 0;
          QTextStream csvIn(&file);
          QList<QStringList> csvData;
          QStringList headers;
      
          while(!csvIn.atEnd())
          {
              QString line = csvIn.readLine();
              QStringList rowList = line.split(';');
              if ( lineNo > 0 )
                  csvData.append(rowList);
              else
                  headers = rowList;
              ++lineNo;
          }
          file.close();
      }
      
      JonBJ Offline
      JonBJ Offline
      JonB
      wrote on last edited by JonB
      #5

      @SeDi
      Your code looks good to me. Why not start by removing your while loop entirely? Then, just read one line, do nothing with it?

      1 Reply Last reply
      1
      • SeDiS Offline
        SeDiS Offline
        SeDi
        wrote on last edited by
        #6

        @Cobra91151 , now I see what you mean! Of course, I am doing exactly that. It crashes on this very line. The stack trace just doesn't help:

        1 CsvTableModel::readDataFromFile          csvtablemodel.cpp 114 0xcc41ab00 
        2 main                                     main.cpp          18  0xcc4188e8 
        3 startQtApplication(_JNIEnv *, _jclass *)                       0xcc5e483a 
        4 ??                                                             0xe988767a 
        

        Unfortunately, I am still lost :-(

        Does the code look ok for you?
        The csv is about 40kB heavy, but I can't figure how that would have any effect.
        Do I have to somehow disconnect the QTextStream or wait for something to clean up internally?

        Cobra91151C 1 Reply Last reply
        0
        • Christian EhrlicherC Offline
          Christian EhrlicherC Offline
          Christian Ehrlicher
          Lifetime Qt Champion
          wrote on last edited by Christian Ehrlicher
          #7

          Please show your main.cpp. Where is exactly line 114?

          Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
          Visit the Qt Academy at https://academy.qt.io/catalog

          1 Reply Last reply
          1
          • SeDiS SeDi

            @Cobra91151 , now I see what you mean! Of course, I am doing exactly that. It crashes on this very line. The stack trace just doesn't help:

            1 CsvTableModel::readDataFromFile          csvtablemodel.cpp 114 0xcc41ab00 
            2 main                                     main.cpp          18  0xcc4188e8 
            3 startQtApplication(_JNIEnv *, _jclass *)                       0xcc5e483a 
            4 ??                                                             0xe988767a 
            

            Unfortunately, I am still lost :-(

            Does the code look ok for you?
            The csv is about 40kB heavy, but I can't figure how that would have any effect.
            Do I have to somehow disconnect the QTextStream or wait for something to clean up internally?

            Cobra91151C Offline
            Cobra91151C Offline
            Cobra91151
            wrote on last edited by
            #8

            @SeDi

            Add this code to main.cpp:

            #ifdef QT_DEBUG
                qputenv("QT_FATAL_WARNINGS", "1");
                qputenv("QT_MESSAGE_PATTERN",
                        "Type: %{type}\nProduct Name: %{appname}\nFile: %{file}\nLine: %{line}\nMethod: %{function}\nThreadID: %{threadid}\nThreadPtr: %{qthreadptr}\nMessage: %{message}");
             #endif
            

            Then, try to debug your app.

            1 Reply Last reply
            2
            • SeDiS Offline
              SeDiS Offline
              SeDi
              wrote on last edited by SeDi
              #9

              @Christian-Ehrlicher Line 114 of CsvTableModel is "file.close()" The crash occurs exactly when I step-proceed over file.close(). I don't actually use my model up to this point. I try to just get the file-reading process ready first.

              My main.cpp is this (I have used an example file from QZXing as a starting point):

              #include <QGuiApplication>
              #include <QQmlApplicationEngine>
              #include <QQmlContext>
              
              #include <QDebug>
              
              #include <Qt>
              #include "QZXing.h"
              #include "application.h"
              #include "csvtablemodel.h"
              
              int main(int argc, char *argv[])
              {
                QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
                  QGuiApplication app(argc, argv);
              
                  CsvTableModel csvModel;
                  csvModel.readDataFromFile();
              
                  QZXing::registerQMLTypes();
              
                  Application customApp;
                  customApp.checkPermissions();
              
                  return app.exec();
              }
              

              The model's constructor is empty:

              CsvTableModel::CsvTableModel() {}
              

              @Cobra91151 : Adding the qputenv lines didn't change a thing, neither was the crash any different, nor the ApplicationOutput (I've made a diff).

              I appreciate your help, guys!

              JonBJ 1 Reply Last reply
              0
              • SeDiS SeDi

                @Christian-Ehrlicher Line 114 of CsvTableModel is "file.close()" The crash occurs exactly when I step-proceed over file.close(). I don't actually use my model up to this point. I try to just get the file-reading process ready first.

                My main.cpp is this (I have used an example file from QZXing as a starting point):

                #include <QGuiApplication>
                #include <QQmlApplicationEngine>
                #include <QQmlContext>
                
                #include <QDebug>
                
                #include <Qt>
                #include "QZXing.h"
                #include "application.h"
                #include "csvtablemodel.h"
                
                int main(int argc, char *argv[])
                {
                  QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
                    QGuiApplication app(argc, argv);
                
                    CsvTableModel csvModel;
                    csvModel.readDataFromFile();
                
                    QZXing::registerQMLTypes();
                
                    Application customApp;
                    customApp.checkPermissions();
                
                    return app.exec();
                }
                

                The model's constructor is empty:

                CsvTableModel::CsvTableModel() {}
                

                @Cobra91151 : Adding the qputenv lines didn't change a thing, neither was the crash any different, nor the ApplicationOutput (I've made a diff).

                I appreciate your help, guys!

                JonBJ Offline
                JonBJ Offline
                JonB
                wrote on last edited by
                #10

                @SeDi
                Like I said, why not remove the while(!csvIn.atEnd()) loop? Keep removing stuff till you get the minimum to make the file.close() crash.

                SeDiS 1 Reply Last reply
                2
                • JonBJ JonB

                  @SeDi
                  Like I said, why not remove the while(!csvIn.atEnd()) loop? Keep removing stuff till you get the minimum to make the file.close() crash.

                  SeDiS Offline
                  SeDiS Offline
                  SeDi
                  wrote on last edited by
                  #11

                  @JonB, I am sorry - i didn't see your answer, probably because I was answering to @Cobra91151 while you wrote it.

                  The problem is solved. file.close() was a red herring, as well as the difference between Android and Windows. The crash hat a reason so profane that I am ashamed to mention it.

                  The method ist

                  bool CsvTableModel::readDataFromFile() {
                  

                  but I did not return true.

                  Facepalm. My apologies and gratitude to y'all. Turns out reduction actually was the key, as it even crashed when the method was empty. One of these moments. Thanks!

                  JonBJ 1 Reply Last reply
                  3
                  • SeDiS SeDi

                    @JonB, I am sorry - i didn't see your answer, probably because I was answering to @Cobra91151 while you wrote it.

                    The problem is solved. file.close() was a red herring, as well as the difference between Android and Windows. The crash hat a reason so profane that I am ashamed to mention it.

                    The method ist

                    bool CsvTableModel::readDataFromFile() {
                    

                    but I did not return true.

                    Facepalm. My apologies and gratitude to y'all. Turns out reduction actually was the key, as it even crashed when the method was empty. One of these moments. Thanks!

                    JonBJ Offline
                    JonBJ Offline
                    JonB
                    wrote on last edited by JonB
                    #12

                    @SeDi

                    1. Didn't your compiler warn about bool function with no return at end?

                    2. You don't use the return result from your call in main().

                    3. Regardless of these, how does omitting a return result lead to a SIGILL?

                    1 Reply Last reply
                    1
                    • Christian EhrlicherC Offline
                      Christian EhrlicherC Offline
                      Christian Ehrlicher
                      Lifetime Qt Champion
                      wrote on last edited by
                      #13

                      @JonB said in QFile::close() leads to SIGILL:

                      Regardless of these, how does omitting a return result lead to a SIGILL?

                      It's undefined behavior.

                      Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                      Visit the Qt Academy at https://academy.qt.io/catalog

                      JonBJ 1 Reply Last reply
                      5
                      • Christian EhrlicherC Christian Ehrlicher

                        @JonB said in QFile::close() leads to SIGILL:

                        Regardless of these, how does omitting a return result lead to a SIGILL?

                        It's undefined behavior.

                        JonBJ Offline
                        JonBJ Offline
                        JonB
                        wrote on last edited by JonB
                        #14

                        @Christian-Ehrlicher
                        Interesting! Then I'm even more surprised the OP's compiler didn't issue any warning for this code....

                        Do you have a reference for "It's undefined behavior"? Of course I know if you test the result you don't know what you'll get, but I'd like to read up on what it has to say if you fail to return any result, leading to possible crash.

                        Many, many years ago I used a C compiler on some unmentionable home computer system. I think it was a 6502 CPU. There, the compiler used the hardware stack to return the (two bytes) of any function result. What this meant was: I had to go through every line of code, working on all other C systems (program was cross-platform), so that if any function returned a value you had to assign that to a variable (or e.g. pass it as a value to another function, etc.). Failure to do so left a number on the stack after the function call, leading to later crash. What this meant was, for example, I had to find & change every single printf(...) in existing code to dummy = printf(), and similar for the hundreds of other functions which happened to return some value we don't care about...! :( And I still don't believe that behaviour was ever "allowed" in a C compiler.

                        Christian EhrlicherC 1 Reply Last reply
                        1
                        • JonBJ JonB

                          @Christian-Ehrlicher
                          Interesting! Then I'm even more surprised the OP's compiler didn't issue any warning for this code....

                          Do you have a reference for "It's undefined behavior"? Of course I know if you test the result you don't know what you'll get, but I'd like to read up on what it has to say if you fail to return any result, leading to possible crash.

                          Many, many years ago I used a C compiler on some unmentionable home computer system. I think it was a 6502 CPU. There, the compiler used the hardware stack to return the (two bytes) of any function result. What this meant was: I had to go through every line of code, working on all other C systems (program was cross-platform), so that if any function returned a value you had to assign that to a variable (or e.g. pass it as a value to another function, etc.). Failure to do so left a number on the stack after the function call, leading to later crash. What this meant was, for example, I had to find & change every single printf(...) in existing code to dummy = printf(), and similar for the hundreds of other functions which happened to return some value we don't care about...! :( And I still don't believe that behaviour was ever "allowed" in a C compiler.

                          Christian EhrlicherC Offline
                          Christian EhrlicherC Offline
                          Christian Ehrlicher
                          Lifetime Qt Champion
                          wrote on last edited by
                          #15

                          @JonB said in QFile::close() leads to SIGILL:

                          Do you have a reference for "It's undefined behavior"?

                          Don't return anything when the function should is undefined behavior by default :)

                          leading to possible crash.

                          It may also work, but it may also eat kittens. It depends on the compiler, the optimization level, the moon phase, ...

                          I know that one compiler did not warn about this kind of stuff, gcc 7.5 at least prints a warning (but compilation does not fail)

                          Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                          Visit the Qt Academy at https://academy.qt.io/catalog

                          JonBJ 1 Reply Last reply
                          3
                          • Christian EhrlicherC Christian Ehrlicher

                            @JonB said in QFile::close() leads to SIGILL:

                            Do you have a reference for "It's undefined behavior"?

                            Don't return anything when the function should is undefined behavior by default :)

                            leading to possible crash.

                            It may also work, but it may also eat kittens. It depends on the compiler, the optimization level, the moon phase, ...

                            I know that one compiler did not warn about this kind of stuff, gcc 7.5 at least prints a warning (but compilation does not fail)

                            JonBJ Offline
                            JonBJ Offline
                            JonB
                            wrote on last edited by JonB
                            #16

                            @Christian-Ehrlicher
                            Saying that "no return result" leads to "undefined behaviour" on the return result is one thing. That's not what I'm asking. Saying that the "undefined behaviour" could lead to "crash" (e.g. on exiting function) is quite another. I need a reference here! I'm going to have a look....

                            P.S.
                            What is that you & @Chris-Kawa have about threatening my fluffy kitten the whole time? She is now getting quite alarmed about these threats....

                            1 Reply Last reply
                            1
                            • Christian EhrlicherC Offline
                              Christian EhrlicherC Offline
                              Christian Ehrlicher
                              Lifetime Qt Champion
                              wrote on last edited by Christian Ehrlicher
                              #17

                              @JonB said in QFile::close() leads to SIGILL:

                              Saying that the "undefined behaviour" could lead to "crash" (e.g. on exiting function) is quite another.

                              Undefined behavior is ... well undefined. anything can happen. My compiler returns '6' for this piece of code:

                              int foo()
                              {
                              	printf("Hello\n");
                              }
                              
                              int main(int argc, char *argv[])
                              {
                                  printf("foo: %d\n", foo());
                                  return 0;
                              }
                              

                              and '2116800' when I remove the printf() statement.

                              Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                              Visit the Qt Academy at https://academy.qt.io/catalog

                              JonBJ 1 Reply Last reply
                              2
                              • Christian EhrlicherC Christian Ehrlicher

                                @JonB said in QFile::close() leads to SIGILL:

                                Saying that the "undefined behaviour" could lead to "crash" (e.g. on exiting function) is quite another.

                                Undefined behavior is ... well undefined. anything can happen. My compiler returns '6' for this piece of code:

                                int foo()
                                {
                                	printf("Hello\n");
                                }
                                
                                int main(int argc, char *argv[])
                                {
                                    printf("foo: %d\n", foo());
                                    return 0;
                                }
                                

                                and '2116800' when I remove the printf() statement.

                                JonBJ Offline
                                JonBJ Offline
                                JonB
                                wrote on last edited by JonB
                                #18

                                @Christian-Ehrlicher
                                Yes, but you know that is not the issue we are discussing! You know we are not talking about what the return result number is, we are talking about "crashing" on the } of foo() (or at the caller) because foo() does not have a return statement.

                                The following also has "undefined behaviour" (in what it prints), but I don't expect it to "crash":

                                int z;
                                printf("%d\n", z);
                                
                                SGaistS 1 Reply Last reply
                                1
                                • Christian EhrlicherC Offline
                                  Christian EhrlicherC Offline
                                  Christian Ehrlicher
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #19

                                  Again: it's undefined - anything can happen, in this case it crashed.

                                  Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                                  Visit the Qt Academy at https://academy.qt.io/catalog

                                  JonBJ 1 Reply Last reply
                                  2
                                  • Christian EhrlicherC Christian Ehrlicher

                                    Again: it's undefined - anything can happen, in this case it crashed.

                                    JonBJ Offline
                                    JonBJ Offline
                                    JonB
                                    wrote on last edited by JonB
                                    #20

                                    @Christian-Ehrlicher
                                    For the record, I have read what I can from various stackoverflow posts, etc. I do accept (now) that non-void no-return => UB => "anything may happen including crash". I was not aware of this, interesting, and thank you. Note however that there was no mention of damage to nearby kittens, either in C++ standard or in posts, so I am calming mine down about this (apart from, I have assured her this is one error I have never made)!

                                    1 Reply Last reply
                                    1
                                    • JonBJ JonB

                                      @Christian-Ehrlicher
                                      Yes, but you know that is not the issue we are discussing! You know we are not talking about what the return result number is, we are talking about "crashing" on the } of foo() (or at the caller) because foo() does not have a return statement.

                                      The following also has "undefined behaviour" (in what it prints), but I don't expect it to "crash":

                                      int z;
                                      printf("%d\n", z);
                                      
                                      SGaistS Offline
                                      SGaistS Offline
                                      SGaist
                                      Lifetime Qt Champion
                                      wrote on last edited by
                                      #21

                                      Hi,

                                      @JonB said in QFile::close() leads to SIGILL:

                                      The following also has "undefined behaviour" (in what it prints), but I don't expect it to "crash":
                                      int z;
                                      printf("%d\n", z);

                                      Strictly speaking it's not undefined behaviour. You will print a random value from an uninitialized int variable.

                                      As @Christian-Ehrlicher already wrote undefined behaviour can be anything from funky values to a crash.

                                      I had once to debug a strange crash that in the end was due to a missing return statement for a QString and the return value wasn't even used. For the fun of experimenting, I changed the return type to int and no crash anymore. That's what undefined behaviour is. That took me quite a while to find because the original warning was swamped in a tons of other warnings (words of the original developer: don't care these are just warnings), the return value being ignored, I did not take notice immediately that the return statement was missing and the code was so involved that tracing the crash correctly was pretty hard as is also required external hardware (

                                      Interested in AI ? www.idiap.ch
                                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      JonBJ 1 Reply Last reply
                                      2
                                      • SGaistS SGaist

                                        Hi,

                                        @JonB said in QFile::close() leads to SIGILL:

                                        The following also has "undefined behaviour" (in what it prints), but I don't expect it to "crash":
                                        int z;
                                        printf("%d\n", z);

                                        Strictly speaking it's not undefined behaviour. You will print a random value from an uninitialized int variable.

                                        As @Christian-Ehrlicher already wrote undefined behaviour can be anything from funky values to a crash.

                                        I had once to debug a strange crash that in the end was due to a missing return statement for a QString and the return value wasn't even used. For the fun of experimenting, I changed the return type to int and no crash anymore. That's what undefined behaviour is. That took me quite a while to find because the original warning was swamped in a tons of other warnings (words of the original developer: don't care these are just warnings), the return value being ignored, I did not take notice immediately that the return statement was missing and the code was so involved that tracing the crash correctly was pretty hard as is also required external hardware (

                                        JonBJ Offline
                                        JonBJ Offline
                                        JonB
                                        wrote on last edited by JonB
                                        #22

                                        @SGaist said in QFile::close() leads to SIGILL:

                                        Strictly speaking it's not undefined behaviour. You will print a random value from an uninitialized int variable.

                                        "No", that's what I was saying, but I think you are "incorrect" here! [Hesitant, you usually shoot me down, fools rush in where... :) ]

                                        The best "official" I can find is https://en.cppreference.com/w/cpp/language/ub. Note the difference between

                                        • unspecified behavior: Each unspecified behavior results in one of a set of valid results.

                                        • undefined behavior: there are no restrictions on the behavior of the program

                                        Then note that (confusingly) it uses the abbreviation UB, which if you read carefully is the undefined rather than the unspecified behaviour. I take this from:

                                        Because correct C++ programs are free of undefined behavior, compilers may produce unexpected results when a program that actually has UB

                                        Hence I understand UB == undefined behaviour. Then proceed to the examples.

                                            std::size_t a;
                                            if(x) // either x nonzero or UB
                                                a = 42;
                                        

                                        and

                                        bool p; // uninitialized local variable
                                        if(p) // UB access to uninitialized scalar
                                            std::puts("p is true");
                                        if(!p) // UB access to uninitialized scalar
                                            std::puts("p is false");
                                        

                                        So if UB == undefined behaviour, they are saying these could "crash". Otherwise you have to show that this UB == unspecified behaviour, which I do not see from the text I quoted. That's my reading, don't you think?

                                        1 Reply Last reply
                                        1
                                        • Christian EhrlicherC Offline
                                          Christian EhrlicherC Offline
                                          Christian Ehrlicher
                                          Lifetime Qt Champion
                                          wrote on last edited by
                                          #23

                                          @JonB said in QFile::close() leads to SIGILL:

                                          they are saying these could "crash".

                                          Correct, since x is not defined the compiler may decided to e.g. throw an exception, quit the program or simply use the value which it finds at the specified address.

                                          Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                                          Visit the Qt Academy at https://academy.qt.io/catalog

                                          JonBJ 1 Reply Last reply
                                          1

                                          • Login

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