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. QSslSocket Behaviour Linux vs macOS (possibly LibreSSL incompatibilities?)
QtWS25 Last Chance

QSslSocket Behaviour Linux vs macOS (possibly LibreSSL incompatibilities?)

Scheduled Pinned Locked Moved Solved General and Desktop
47 Posts 2 Posters 12.0k Views
  • 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.
  • S SGaist
    7 Mar 2018, 21:26

    It looks incomplete. That looks like just the library id.

    I get:

    @rpath/QtNetwork.framework/Versions/5/QtNetwork (compatibility version 5.10.0, current version 5.10.1)
    @rpath/QtCore.framework/Versions/5/QtCore (compatibility version 5.10.0, current version 5.10.1)
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration (compatibility version 1.0.0, current version 1.0.0)
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
    /System/Library/Frameworks/Security.framework/Versions/A/Security (compatibility version 1.0.0, current version 58286.31.2)
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 1450.15.0)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices (compatibility version 1.0.0, current version 822.19.0)
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration (compatibility version 1.0.0, current version 963.30.1)
    /usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.11)
    /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 400.9.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1252.0.0)
    /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork (compatibility version 1.0.0, current version 893.13.1)
    
    M Offline
    M Offline
    Markus M.
    wrote on 7 Mar 2018, 21:30 last edited by Markus M. 3 Jul 2018, 21:40
    #14

    @SGaist Silly me; I only pasted the one line affecting QtNetwork. Sorry for that. Here we go:

    @rpath/QtWidgets.framework/Versions/5/QtWidgets (compatibility version 5.10.0, current version 5.10.0)
    @rpath/QtGui.framework/Versions/5/QtGui (compatibility version 5.10.0, current version 5.10.0)
    @rpath/QtCore.framework/Versions/5/QtCore (compatibility version 5.10.0, current version 5.10.0)
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration (compatibility version 1.0.0, current version 1.0.0)
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
    @rpath/QtNetwork.framework/Versions/5/QtNetwork (compatibility version 5.10.0, current version 5.10.0)
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL (compatibility version 1.0.0, current version 1.0.0)
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL (compatibility version 1.0.0, current version 1.0.0)
    /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 400.9.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1252.0.0)

    fyi: I reverted back to the standard Qt version, ie not using the self compiled one for now. Hence the output above might not be what you expected.

    For now, I try to figure out a couple of things (e.g why my peerValidName etc are not set on the socket) and how to load ssl at runtime

    1 Reply Last reply
    0
    • S Offline
      S Offline
      SGaist
      Lifetime Qt Champion
      wrote on 7 Mar 2018, 21:48 last edited by
      #15

      Indeed, it was the one from your self-compiled Qt that is of interest.

      As for loading at run time, you pass the -openssl-runtime option.

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

      M 1 Reply Last reply 7 Mar 2018, 22:03
      0
      • S SGaist
        7 Mar 2018, 21:48

        Indeed, it was the one from your self-compiled Qt that is of interest.

        As for loading at run time, you pass the -openssl-runtime option.

        M Offline
        M Offline
        Markus M.
        wrote on 7 Mar 2018, 22:03 last edited by
        #16

        @SGaist Thank you for now... appreciated.

        I am about to re-compile Qt which will take a couple of hours (about 4 to 5 hours yesterday) on a 2017 MBP 15...

        Will keep you advised on my efforts

        1 Reply Last reply
        0
        • S Offline
          S Offline
          SGaist
          Lifetime Qt Champion
          wrote on 7 Mar 2018, 22:05 last edited by
          #17

          Don't compile all of Qt. For your testing you likely only need qtbase. If more, then build only the modules you need after qtbase (or pass a list of -skip options for all modules you don't use in your application).

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

          M 1 Reply Last reply 7 Mar 2018, 22:13
          0
          • S SGaist
            7 Mar 2018, 22:05

            Don't compile all of Qt. For your testing you likely only need qtbase. If more, then build only the modules you need after qtbase (or pass a list of -skip options for all modules you don't use in your application).

            M Offline
            M Offline
            Markus M.
            wrote on 7 Mar 2018, 22:13 last edited by
            #18

            @SGaist I am aware, thank you. That is exactly what I am researching right now - what modules to compile. Don't want to be too restrictive though 'cause if successful I'll use this version for my client and other apps, too.

            1 Reply Last reply
            0
            • S Offline
              S Offline
              SGaist
              Lifetime Qt Champion
              wrote on 7 Mar 2018, 22:14 last edited by
              #19

              What modules are you using for it currently ?

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

              M 1 Reply Last reply 7 Mar 2018, 22:22
              0
              • S SGaist
                7 Mar 2018, 22:14

                What modules are you using for it currently ?

                M Offline
                M Offline
                Markus M.
                wrote on 7 Mar 2018, 22:22 last edited by
                #20

                @SGaist

                core, widgets and network. This is only for the server, the client also requires gui.

                Its just crazy, just "make clean" takes forever

                1 Reply Last reply
                0
                • S Offline
                  S Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on 7 Mar 2018, 22:34 last edited by
                  #21

                  So qtbase is enough.

                  Use out of source builds, so if you want to start from scratch you only have to nuke the build folder and the sources stay clean.

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

                  M 1 Reply Last reply 7 Mar 2018, 23:41
                  0
                  • S SGaist
                    7 Mar 2018, 22:34

                    So qtbase is enough.

                    Use out of source builds, so if you want to start from scratch you only have to nuke the build folder and the sources stay clean.

                    M Offline
                    M Offline
                    Markus M.
                    wrote on 7 Mar 2018, 23:41 last edited by Markus M. 3 Aug 2018, 03:54
                    #22

                    @SGaist edit: after hours of investigation I got it to configure/compile. I had to manually point/symlink the openssl files located in /usr/local/lib and /usr/local/include, respectively, to the directory where openssl actually sits.

                    As it seems configure bails out for openssl versions north of 1.1.0. For some reason (no idea how this came about) I had openssl 1.1.1-pre-something installed.

                    Follow up: the private Key is indeed set; however, something is wrong with it because Qt marks it "isNull". That is, I can qDebug it and at first glance it looks fine. Same on Linux.

                    Follow up 2: I used the code as posted in
                    https://forum.qt.io/topic/45728/generating-cert-key-during-run-time-for-qsslsocket/7

                    Again - as @Pradeep-P-N reported, the code crashes in the final step (setPrivateKey); that is, the privateKey is null. The said is true on macOS using openssl 1.0.2n

                    Follow up 3: Under Linux, a valid key is indeed created. However, the key does not seem to be relayed to the server. Keep digging...

                    Follow up 4: Have not managed to create a key via openssl that could be loaded from disk - neither on Linux nor on the Mac. Not sure what's going on, the private Key just is always null (have tried various formats...). For now solely the code as posted in the linked thread above works under Linux.

                    For now I suspect main the problem has to do with the linked openssl version on the Mac: Building gives lots of warnings: object file (libcrypto.a) ws built for newer OSX version (10.13) than being linked (10.10).

                    If I get that correctly this means the openssl lib used to generate the keys was built on 10.13 whereas Qt's version was build on 10.10?

                    1 Reply Last reply
                    0
                    • S Offline
                      S Offline
                      SGaist
                      Lifetime Qt Champion
                      wrote on 8 Mar 2018, 12:51 last edited by
                      #23

                      OpenSSL 1.1 broke API and ABI compatibility with the 1.0 series.

                      Up to Qt 5.10, only 1.0 was supported. Since 5.10, you can build the 1.1 backend but Qt is still delivered with 1.0 currently.

                      IIRC, Qt is built with the latest version of Xcode at the time and has a run target of "Current release" -3 (the same number of versions that Apple still supports) following Apple's policy of "build with the latest version of Xcode".

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

                      M 1 Reply Last reply 8 Mar 2018, 17:52
                      0
                      • S SGaist
                        8 Mar 2018, 12:51

                        OpenSSL 1.1 broke API and ABI compatibility with the 1.0 series.

                        Up to Qt 5.10, only 1.0 was supported. Since 5.10, you can build the 1.1 backend but Qt is still delivered with 1.0 currently.

                        IIRC, Qt is built with the latest version of Xcode at the time and has a run target of "Current release" -3 (the same number of versions that Apple still supports) following Apple's policy of "build with the latest version of Xcode".

                        M Offline
                        M Offline
                        Markus M.
                        wrote on 8 Mar 2018, 17:52 last edited by Markus M. 3 Aug 2018, 18:05
                        #24

                        @SGaist Hi. Happy to be able to report that part of the experienced issues are solved using Qt compiled from source (linked against OpenSSL 1.0.2n). More specifically, the server part now accepts connections, the socket errors (20, 21) are gone.
                        The code segment posted in mentioned thread above now works on the Mac as well, i.e. i can generate private keys in code now.

                        That said, the QSslKey loading problem still exists. In particular, its still fails to set a private key loaded from file. I wonder whats the root cause - to me it seems like its a bug in Qt. All the samples I found online do not seem to work...

                        1 Reply Last reply
                        0
                        • S Offline
                          S Offline
                          SGaist
                          Lifetime Qt Champion
                          wrote on 8 Mar 2018, 20:48 last edited by
                          #25

                          Would it possible for you to provide a small client/server project(s) that allows to test that behaviour ?

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

                          M 1 Reply Last reply 8 Mar 2018, 21:02
                          0
                          • S SGaist
                            8 Mar 2018, 20:48

                            Would it possible for you to provide a small client/server project(s) that allows to test that behaviour ?

                            M Offline
                            M Offline
                            Markus M.
                            wrote on 8 Mar 2018, 21:02 last edited by
                            #26

                            @SGaist I could provide the client code - which should be ok for testing this?

                            1 Reply Last reply
                            0
                            • S Offline
                              S Offline
                              SGaist
                              Lifetime Qt Champion
                              wrote on 8 Mar 2018, 21:31 last edited by
                              #27

                              In the absolute, having also a test server would be nice (doesn't need to be C++ for that part) as it would allow to be sure that a failing connection can properly be made.

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

                              M 1 Reply Last reply 8 Mar 2018, 21:37
                              0
                              • S SGaist
                                8 Mar 2018, 21:31

                                In the absolute, having also a test server would be nice (doesn't need to be C++ for that part) as it would allow to be sure that a failing connection can properly be made.

                                M Offline
                                M Offline
                                Markus M.
                                wrote on 8 Mar 2018, 21:37 last edited by Markus M. 3 Sept 2018, 02:59
                                #28

                                @SGaist I understand; still its kind of difficult to just give out the sources since some of the tech used there (unrelated to connecting) is under heavy confidentiality requirements.

                                That said, a server you could connect to is available via DynDNS (edit: tested - working)

                                1 Reply Last reply
                                0
                                • S Offline
                                  S Offline
                                  SGaist
                                  Lifetime Qt Champion
                                  wrote on 8 Mar 2018, 21:57 last edited by
                                  #29

                                  No worries, that's not what I was asking you to do at all !

                                  Just some dummy test server using the custom certificate so that the communication can be tested/established with the test client.

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

                                  M 1 Reply Last reply 8 Mar 2018, 22:40
                                  0
                                  • S SGaist
                                    8 Mar 2018, 21:57

                                    No worries, that's not what I was asking you to do at all !

                                    Just some dummy test server using the custom certificate so that the communication can be tested/established with the test client.

                                    M Offline
                                    M Offline
                                    Markus M.
                                    wrote on 8 Mar 2018, 22:40 last edited by Markus M. 3 Sept 2018, 01:04
                                    #30

                                    @SGaist Here we go: https://github.com/markusmeyerhofer/SimpleServer

                                    Just a heads-up: this is a quickly distilled ssl server; it should work but its certainly not tested exhaustively.

                                    The client: https://github.com/markusmeyerhofer/QtSSLClient

                                    I created a small project creating certs and keys (again, using the sample provided in the mentioned thread above) and writing those to disk.
                                    I imported a key generated this way (recall: this key is accepted as valid by QSslKey) into a resource file and load that file in my SSL client - where the exact same key is rejected ("isNull").

                                    Visual inspection (qDebugging out the loaded file) suggests an actually valid key file. As it stands it looks like something happens during loading the key file. Not sure what I'm doing wrong...
                                    (Hint: the respective code segment is in "citcpconnection.cpp" lines 27ff, see Github Repo QtSSLClient as given above)

                                    1 Reply Last reply
                                    0
                                    • S Offline
                                      S Offline
                                      SGaist
                                      Lifetime Qt Champion
                                      wrote on 11 Mar 2018, 20:36 last edited by
                                      #31

                                      After some testing, the certificate itself is good. What poses problem currently is the key. Poking at the sources and searching a bit, the key you are generating is a PKCS8 type of key which doesn't seem to be handled currently. PKCS1 keys on the other should be good.

                                      I didn't had time to go through OpenSSL to find how to generate such a key from the API however on the command line it seems to be as simple as: openssl rsa -in server.key -out server_new.key.

                                      Hope it helps.

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

                                      M 1 Reply Last reply 11 Mar 2018, 20:41
                                      0
                                      • S SGaist
                                        11 Mar 2018, 20:36

                                        After some testing, the certificate itself is good. What poses problem currently is the key. Poking at the sources and searching a bit, the key you are generating is a PKCS8 type of key which doesn't seem to be handled currently. PKCS1 keys on the other should be good.

                                        I didn't had time to go through OpenSSL to find how to generate such a key from the API however on the command line it seems to be as simple as: openssl rsa -in server.key -out server_new.key.

                                        Hope it helps.

                                        M Offline
                                        M Offline
                                        Markus M.
                                        wrote on 11 Mar 2018, 20:41 last edited by Markus M. 3 Nov 2018, 20:48
                                        #32

                                        @SGaist Thx for the heads - up. What still puzzles me is: how is it that the key generated in code (its in the client code posted) is accepted when fed into QSslKey directly; when storing the key as is and subsequently loading from file it isn't.

                                        Anyway, its kinda tedious - there are so many formats and how tos out there I kinda lost oversight. What I need is basically:

                                        1 - A certificate (self-signed) acting as CA certificate.
                                        2 - A server and a client key + certs, signed by the CA cert as created in 1. I did that, but, as you know, the key isn't accepted.

                                        There are other issues I don't quite understand: e.g. the key, even though set in the client, does not seem to appear on the server; meaning it isn't used. Similarly, setting the peer host name on the client, getting peerHostName on the server happens to be empty. Not sure why...

                                        The connection still is encrypted, but host identification is defunct as of now, opening a hole

                                        1 Reply Last reply
                                        0
                                        • S Offline
                                          S Offline
                                          SGaist
                                          Lifetime Qt Champion
                                          wrote on 11 Mar 2018, 21:10 last edited by
                                          #33

                                          Looking for something else, I stumble on this bug of Curl which I wonder if it relates to the problem at end.

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

                                          M 1 Reply Last reply 11 Mar 2018, 21:13
                                          0

                                          23/47

                                          8 Mar 2018, 12:51

                                          • Login

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