summaryrefslogtreecommitdiffstats
path: root/src/network/access/qdecompresshelper_p.h
blob: a3487ba117b548c94bc5d2dab188e696db971d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default

#ifndef DECOMPRESS_HELPER_P_H
#define DECOMPRESS_HELPER_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of the Network Access API. This header file may change from
// version to version without notice, or even be removed.
//
// We mean it.
//

#include <QtNetwork/qtnetworkexports.h>
#include <QtNetwork/private/qbytedatabuffer_p.h>

#include <memory>

QT_BEGIN_NAMESPACE

class QIODevice;
class QDecompressHelper
{
public:
    enum ContentEncoding {
        None,
        Deflate,
        GZip,
        Brotli,
        Zstandard,
    };

    QDecompressHelper() = default;
    Q_NETWORK_EXPORT ~QDecompressHelper();

    Q_NETWORK_EXPORT bool setEncoding(QByteArrayView contentEncoding);

    Q_NETWORK_EXPORT bool isCountingBytes() const;
    Q_NETWORK_EXPORT void setCountingBytesEnabled(bool shouldCount);

    Q_NETWORK_EXPORT qint64 uncompressedSize() const;

    Q_NETWORK_EXPORT bool hasData() const;
    Q_NETWORK_EXPORT void feed(const QByteArray &data);
    Q_NETWORK_EXPORT void feed(QByteArray &&data);
    Q_NETWORK_EXPORT void feed(const QByteDataBuffer &buffer);
    Q_NETWORK_EXPORT void feed(QByteDataBuffer &&buffer);
    Q_NETWORK_EXPORT qsizetype read(char *data, qsizetype maxSize);

    Q_NETWORK_EXPORT bool isValid() const;

    Q_NETWORK_EXPORT void clear();

    Q_NETWORK_EXPORT void setDecompressedSafetyCheckThreshold(qint64 threshold);

    Q_NETWORK_EXPORT static bool isSupportedEncoding(QByteArrayView encoding);
    Q_NETWORK_EXPORT static QByteArrayList acceptedEncoding();

    Q_NETWORK_EXPORT QString errorString() const;

private:
    bool isPotentialArchiveBomb() const;
    bool hasDataInternal() const;
    qsizetype readInternal(char *data, qsizetype maxSize);

    bool countInternal();
    bool countInternal(const QByteArray &data);
    bool countInternal(const QByteDataBuffer &buffer);

    bool setEncoding(ContentEncoding ce);
    qint64 encodedBytesAvailable() const;

    qsizetype readZLib(char *data, qsizetype maxSize);
    qsizetype readBrotli(char *data, qsizetype maxSize);
    qsizetype readZstandard(char *data, qsizetype maxSize);

    QByteDataBuffer compressedDataBuffer;
    QByteDataBuffer decompressedDataBuffer;
    const qsizetype MaxDecompressedDataBufferSize = 10 * 1024 * 1024;
    bool decoderHasData = false;

    bool countDecompressed = false;
    std::unique_ptr<QDecompressHelper> countHelper;

    QString errorStr;

    // Used for calculating the ratio
    qint64 archiveBombCheckThreshold = 10 * 1024 * 1024;
    qint64 totalUncompressedBytes = 0;
    qint64 totalCompressedBytes = 0;
    qint64 totalBytesRead = 0;

    ContentEncoding contentEncoding = None;

    void *decoderPointer = nullptr;
#if QT_CONFIG(brotli)
    const uint8_t *brotliUnconsumedDataPtr = nullptr;
    size_t brotliUnconsumedAmount = 0;
#endif
};

QT_END_NAMESPACE

#endif // DECOMPRESS_HELPER_P_H