Commit Graph

42 Commits

Author SHA1 Message Date
Timur Pocheptsov bba15a7cf5 QHttpServer auto-tests: use a function provided by QTest
Instead of having code-duplicates.

Pick-to: 6.9 6.8
Task-number: QTBUG-132645
Change-Id: I6976ae44a0ab14857d71d1cd6eef3cc09e40db34
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2025-02-18 16:51:37 +01:00
Timur Pocheptsov ac66fc9a48 httpabstractserver: do not block when accessing a keychain
Similar to httpserver test.

Task-number: QTBUG-130500
Pick-to: 6.8 6.9
Change-Id: I3597d982c523980745fb6f08659c39a17a317780
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Reviewed-by: Jesus Fernandez <jsfdez@gmail.com>
2025-01-07 11:13:35 +01:00
Øystein Heskestad adf5c78896 QAbstractHttpServer: Fix two-way communication for WebSockets
WebSockets were successfully created but worked only from server to
client. Fix hand-over from QAbstractHttpServer to member object
QWebSocketServer. Add test to ensure that WebSockets work both
ways.

Fixes: QTBUG-129798
Pick-to: 6.8
Change-Id: If9bd2a42d398f157384added8787c009246f6c52
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2024-10-18 18:15:06 +02:00
Mårten Nordheim 8baaac9617 tst_qabstracthttpserver: Create stream before waiting for SETTINGS
Because of changes we are doing in QHttp2Connection it won't work otherwise.

Change-Id: Idf8b08a15c2b36742a6c865fc4d04054c6aaefa0
Reviewed-by: Matthias Rauter <matthias.rauter@qt.io>
Reviewed-by: Øystein Heskestad <oystein.heskestad@qt.io>
2024-10-18 11:47:01 +02:00
Yuri Knigavko e7c4bb0f4f Fix memory leaks in test code of tst_qabstracthttpserver
Create QTcpServer objects in stack rather than in the heap to simplify memory ownership.
Normally QTcpServer created in the heap is not leaking, because it becomes a child of QAbstractHttpServer in QAbstractHttpServer.bind(). However parenting does not happen if bind() fails. So QTcpServer objects were leaking in tests where bind() was supposed to fail.
As the simplest fix, it was decided to create those QTcpServer objects in the stack.

Change-Id: I19788dff4c55deacf242be03871512c9c86296de
Reviewed-by: Mate Barany <mate.barany@qt.io>
Reviewed-by: Øystein Heskestad <oystein.heskestad@qt.io>
2024-10-11 16:17:32 +02:00
Øystein Heskestad 01212c3cf0 Add context parameter to addWebSocketUpgradeVerifier
Rename registerWebSocketUpgradeVerifier to addWebSocketUpgradeVerifier
and add a context parameter.

Task-number: QTBUG-128113
Pick-to: 6.8
Change-Id: Ic3298844058809141ba06cf017c7e18acff4b076
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
2024-08-30 20:50:43 +02:00
Matthias Rauter 76e55a052f Set missinghandler callback with a context object and remove rvalue
Use QtPrivate::makeCallableObject() and a context object instead
of std::function() when calling setMissingHandler(). Also added
clearMissingHandler() to set the handler back to the default behavior.

The rvalue was exchanged with a reference in the callback signature
because QMetaObject::invokeMethod is not prepared to handle rvalues.

Pick-to: 6.8
Task-Id: QTBUG-128113
Change-Id: If02c67a0ee200b458d9f8051a23a9307fce6e59a
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
2024-08-30 17:57:37 +02:00
Øystein Heskestad bd5ac90224 QAbstractHttpServer: Remove QSslConfiguration and listen() methods
To keep the API lean, remove the SSL confguration and listen()
methods.

Instead using listen() on a QAbstractHttpServer, a user should
create an instance of a QTcpServer or QSslServer, then call
listen() on it before calling bind() on a QAbstractHttpServer
with it as an argument.

Task-number: QTBUG-125859
Pick-to: 6.8
Change-Id: I366c0a01d8b7ee3802e0bdd63b9d84813338f478
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
2024-07-31 16:52:41 +02:00
Volker Hilsheimer 6ecfc86efc Fix build of tests on Android without SSL enabled
Pick-to: 6.8
Change-Id: I996f020a66b18ad48ea2480f02741c0331e70186
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2024-06-19 12:46:31 +02:00
Lena Biliaieva c3ffb9cad4 QHttpServer: Delete HTTP2 Handler only if no requests are in process
Added counter to ensure there are no dependent QHttpServerResponder
instances, when we are trying to delete the handler.

Fixes: QTBUG-126032
Pick-to: 6.8
Change-Id: I32eef0e08951947d9939c2bdabbf677843868090
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2024-06-13 17:16:25 +02:00
Lena Biliaieva 80ef46fef8 Implement HTTP2 handler for QHttpServer
- Implemented QHttpServerHttp2ProtocolHandler class
- Added simple test for tst_QAbstractHttpServer

Fixes: QTBUG-124867
Change-Id: I9e328418790dcfce4051718738acf54de02b7fe7
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2024-05-31 15:28:00 +02:00
Øystein Heskestad 3bd2834b5c Add function to register functions that verifies WebSocket upgrades
The current implementation creates WebSocket connections if a user
sends a request with the upgrade header set to WebSocket and if
there is a handler.

Decouple the routes from the handlers by adding a function to
register callback functions that take a QHttpServerRequest as an
argument and return a QHttpServerWebSocketUpgradeResponse which
can have the types Allow, Deny, and PassToNext. The first Allow
or Deny returned by the callback functions decides the outcome,
while PassToNext is used to execute the next rule. If no callback
functions are registered or all return PassToNext the WebSocket
upgrade fails and missingHandler is executed. It is possible to
customize the status code and message returned when the upgrade
by the handler that has the type Deny.

[ChangeLog][QAbstractHttpServer] Add function to register
callback functions that verifies WebSocket upgrades

Fixes: QTBUG-121462
Change-Id: I5ea2a778f128b2e4212da551c4d96bf25d8576e8
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2024-05-29 17:45:23 +02:00
Øystein Heskestad 00646c309e Fix memory leak in tst_QAbstractHttpServer::websocket()
Raw pointers to QWebSocket objects are used in the websocket test,
and they are deleted manually at the end of the test, but if the
test fails the QWebSocket objects are not deleted.

Use std::unique_ptr instead to ensure the that the QWebSocket
objects are always deleted.

Change-Id: I71c65698c17bd2a86ffca23f5a6e48874519f0b4
Reviewed-by: Marc Mutz <marc.mutz@qt.io>
2024-05-29 10:15:07 +02:00
Lena Biliaieva 786e767400 QHttpServer: Add setHttp2Configuration() method to QAbstractHttpServer
Added methods to sets and get server's HTTP/2 configuration parameters.

Task-number: QTBUG-122312
Change-Id: I217fd466a6a40dd983514641d4d7e5fe563b52e1
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2024-05-28 18:48:56 +02:00
Lena Biliaieva f8c2343637 QHttpServer: Handle HTTP 2 handshake
Added separate protocol handlers for HTTP/1.1 and HTTP/2 with a common
base class, QHttpServerStream. To set up HTTP/2 protocol for
QAbstractHttpServer, QSslConfiguration with the allowed protocol
should be set.

Task-number: QTBUG-122312
Change-Id: I31b44c4615b8a8859504deb7cf5c5d8f6c3a4105
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2024-05-28 15:02:06 +02:00
Juha Vuolle 1308cb053b Remove few small compilation warnings
Pick-to: 6.5
Change-Id: I2693f05fe357f30767ecd7d901cdb9ff66fdeea3
Reviewed-by: Ievgenii Meshcheriakov <ievgenii.meshcheriakov@qt.io>
2023-01-25 08:32:21 +02:00
Ievgenii Meshcheriakov 55d10201dc Add connection tracking
Introduce private QHttpServerStream class that handles connection
state. This is the only class that contains a connected QTcpSocket.
Make other classes use QHttpServerResponder to communicate
with clients. Stop processing of further requests as long as a
QHttpServerResponder object for the current request is active.

Add a regression test to tst_qhttpserver.

[ChangeLog][Potentially Source-Incompatible Changes] Most public
methods that accepted a QTcpSocket are now accepting
QHttpServerResponder instead.

Task-number: QTBUG-105202
Change-Id: Ib8db7fdc65b59077411b09277f2b1948fde4848b
Reviewed-by: André Klitzing <aklitzing@gmail.com>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2022-11-14 11:15:59 +01:00
Marc Mutz 5ccbb879fa Port from container::count() and length() to size()
This is a semantic patch using ClangTidyTransformator as in
qtbase/df9d882d41b741fef7c5beeddb0abe9d904443d8:

  auto QtContainerClass = anyOf(
      expr(hasType(cxxRecordDecl(isSameOrDerivedFrom(hasAnyName(classes))))).bind(o),
      expr(hasType(namedDecl(hasAnyName(<classes>)))).bind(o));
  makeRule(cxxMemberCallExpr(on(QtContainerClass),
                             callee(cxxMethodDecl(hasAnyName({"count", "length"),
                                                  parameterCountIs(0))))),
           changeTo(cat(access(o, cat("size"), "()"))),
           cat("use 'size()' instead of 'count()/length()'"))

a.k.a qt-port-to-std-compatible-api with config Scope: 'Container',
with the extended set of container classes recognized.

Change-Id: Ibb3c96e7b98fc3c5586b947e91cdc19d26e56c80
Reviewed-by: Ievgenii Meshcheriakov <ievgenii.meshcheriakov@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
2022-10-06 10:19:37 +02:00
Ievgenii Meshcheriakov 820a4a79c9 tst_qabstracthttpserver: Remove fork test
The test sometimes causes the CI to fail even when it is blacklisted.
It is also hard to maintain this test once new levels of abstraction
get introduced.

Change-Id: Ia829ac1aaf6fadd826631f30165b3690cb5cd442
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2022-09-12 23:19:00 +02:00
Ievgenii Meshcheriakov 9da514a0fa QAbstractHttpServer: Convert missingHandler() to a pure virtual method
This ensures that there is exactly one handler. This also should make
it easier to rework the response handling.

Pick-to: 6.4
Change-Id: I5771d94a0b2436b2ff2b745335184a80f4b2cf31
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2022-08-25 14:16:00 +02:00
Ievgenii Meshcheriakov 2cd9c66a25 tests: Use _ba instead of QByteArrayLiteral
Pick-to: 6.4
Change-Id: I8d41e169cd3dd489d8de54aeed052ff6a9e3edc3
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2022-08-08 18:01:00 +02:00
Ievgenii Meshcheriakov 6d6bc92207 QAbstractHttpServer: Return unique_ptr from nextPendingWebSocketConnection()
This makes the ownership transfer visible from the API.

Task-number: QTBUG-100868
Pick-to: 6.4
Change-Id: Ie07dd3fd442837c87b6612da8a094bd880b6574f
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2022-07-29 13:08:51 +00:00
André Klitzing 04803095e5 Use handleRequest and missingHandler for WebSockets, too
This allows to deny a websocket upgrade with e.g.
a HTTP error ServiceUnavailable instead of hard
disconnection if the application has some special
logic.

Also fire missingHandler for WebSockets for
better application integration.

Pick-to: 6.4
Change-Id: I31f4b66f9a9a7873a46d0eaba6b6121b1a9ac953
Reviewed-by: Ievgenii Meshcheriakov <ievgenii.meshcheriakov@qt.io>
2022-07-08 13:47:01 +02:00
Lucie Gérard 57b0db0896 Use SPDX license identifiers
Replace the current license disclaimer in files by
a SPDX-License-Identifier.
License files are organized under LICENSES directory.

Pick-to: 6.4
Task-number: QTBUG-67283
Change-Id: I657c36f679b9448ec68d411a492171bc39df1411
Reviewed-by: Jesus Fernandez <jsfdez@gmail.com>
2022-06-22 17:35:22 +02:00
Marc Mutz 6fa185164a Fix QLatin1String usage
- replace with QLatin1StringView

- take by value, not by cref

- in one case, replace with a char16_t, because size() == 1

Pick-to: 6.4
Task-number: QTBUG-100868
Change-Id: Ib1d9c3058d3dc9aad560b27bda89b7dc1f897dbb
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Reviewed-by: Jesus Fernandez <jsfdez@gmail.com>
2022-06-22 10:15:24 +02:00
Maurice Kalinowski 51734cd595 Fix build against 6.0
Fixes: QTBUG-89381
Change-Id: I79d0329f06005434c691416f92fbdac0d7252385
Reviewed-by: Jesus Fernandez <jsfdez@gmail.com>
2020-12-16 19:10:36 +01:00
Mikhail Svetkin 4b2790aa6d Add cmake support for Qt6/dev branch
Change-Id: Icca0edab01d6028d786b76f99fba388565bd6e76
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
2020-05-05 19:43:56 +02:00
Mikhail Svetkin a65cc1fa6e Do not disconnect on HTTP CONNECT method
According HTTP/1.1 specifications (RFC 7231) CONNECT is intended only
for use in requests to a proxy. That it is why http-parser sets the upgrade flag.

This patch will allow users to decide how to handle this.

Change-Id: Ic2d10ca4ab113b4cac85e14f15af7890d5773e98
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2020-02-26 12:53:15 +01:00
Mikhail Svetkin 68a4458a7b Fix memory leak in test
QTcpSocket was created on heap without a parent and it never called
delete.

Change-Id: I492633f9797427e546065f9afadf19a672dc552c
Reviewed-by: Tasuku Suzuki <tasuku.suzuki@kdab.com>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2020-02-20 08:26:05 +01:00
Mårten Nordheim 93ff67a3fc Make QAbstractHttpServer::listen return 0 on fail
Which then makes it compatible with other listen() functions in Qt
in the sense that doing if (server.listen()) will behave
consistently.
Ports being listened to can then be gotten from the new serverPorts()
function, mirroring serverPort() from QTcpServer etc., except it's a
QVector.

This is a source incompatible change, but is allowed because this
module is still in tech preview.

Fixes: QTBUG-79411
Change-Id: I09764afbf8fd866af4f43ab90fcf9c2e9a373237
Reviewed-by: Mikhail Svetkin <mikhail.svetkin@gmail.com>
2020-02-18 12:17:22 +01:00
Tasuku Suzuki 4b87afbbe6 Fix crash when CONNECT method is used
When the parser received "CONNECT / HTTP/1.1\n\n", its upgrade variable
is set to 1 even though there is no "upgrade" header available.
In this case, QMap::find() returns its end.

Task-number: QTBUG-82053
Change-Id: I41cc23511459c6735a474bb7b903638dd4b1208f
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2020-02-13 20:37:43 +09:00
Mikhail Svetkin fb551f9845 QAbstractHttpServer: Simplify handleNewConection/handleReadyRead
Remove usage of QObjectUserData.
Remove usage of QHash of QHttpServerRequest.

Change-Id: I8a6c44bcfefc12c841ae67562e9bbec10f6ab9bf
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2019-07-09 20:33:56 +02:00
Jesus Fernandez d542f7e13d Add a fork() test
Change-Id: Ic7c797f9757ad14803154f6125298bfc8fe03baa
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
2019-04-29 13:00:23 +00:00
Jesus Fernandez 11fb154a84 Fix several build issues and fix the unit tests
It is required to have continuous integration enabled in the
repository.

Change-Id: I71728a6e89841640e77c50a05cf59f34d697f897
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
2019-02-28 09:47:48 +00:00
Jesus Fernandez db45e5a9fa Use QStringLiteral
To avoid using the deprecated QString implicit constructor

Change-Id: If6f29952b0dbec96437e0b940c3cb52a801c0d32
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Reviewed-by: Jesus Fernandez <Jesus.Fernandez@qt.io>
2019-02-12 08:42:09 +00:00
Jesus Fernandez fe96330ca0 Fix license headers
Change-Id: Ie15244adb917e2938fe7897c30d4616218d26ac0
Reviewed-by: Mikhail Svetkin <mikhail.svetkin@qt.io>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2019-01-31 11:31:21 +00:00
Mikhail Svetkin 9a41ddd648 Fix tst_QAbstractHttpServer::request
We have undefined behavior when we check server.method.
Because HttpServer::method was uninitialized.

Also start checking a return value from QTcpServer::listen.

Change-Id: Ib7c31f33be956582a6ef264743ca9e44d4de24b1
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2018-12-20 14:08:08 +00:00
Mikhail Svetkin 0763423618 Fix build the test without the websocket support
Change-Id: If32f6a7a42258f9a5a8bed15c776ffa18240da24
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2018-12-20 14:08:00 +00:00
Tasuku Suzuki 7df45b8ea6 Refactor QAbstractHttpServer::servers()
Change-Id: I11e7100dd5f25d6c02bef28f4c53ce3acc257390
Reviewed-by: Jesus Fernandez <Jesus.Fernandez@qt.io>
2018-10-22 01:26:44 +00:00
Mikhail Svetkin 232a3047f5 Remove unused QNetworkReply
Change-Id: I536226270db1534b0bda1a2205898c291285721a
Reviewed-by: Jesus Fernandez <Jesus.Fernandez@qt.io>
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
2018-07-20 08:46:07 +00:00
Mikhail Svetkin cccece0a61 Fix inccorect parsing url with spaces
Change-Id: I942bd80cf3cefaa9f0194ce3281640a3b5077ed2
Reviewed-by: Jesus Fernandez <Jesus.Fernandez@qt.io>
2018-07-18 11:03:33 +00:00
Jesus Fernandez b24745265d Introduce Qt HttpServer framework
Small, Qt integrated framework for creating specialized http server.

Goals of the project:
- Create a framework allowing creation of a specialized web server
  running in non public networks (home and company networks, stealth
  or hidden services)
- Create an easy tool for developers to embed http servers in their
  apps.
- Playground to narrow down problems in Qt, related to network
  stack, but also to explore general usability.
- Potentially reduce code duplication in Qt.

Not goals:
- Standalone server, in particular not Apache or nginx replacement

Change-Id: I0d8b83e50992b9a95c88f4735539329279cf5425
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
2018-07-16 14:36:08 +00:00