aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Server/ProxyV1Handler.cpp
blob: 56621940a234c3288d5bcf32221091906eccb74b (plain) (blame)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#include <Server/ProxyV1Handler.h>
#include <Poco/Net/NetException.h>
#include <Common/NetException.h>
#include <Common/logger_useful.h>
#include <Interpreters/Context.h>


namespace DB
{

namespace ErrorCodes
{
    extern const int NETWORK_ERROR;
    extern const int SOCKET_TIMEOUT;
    extern const int CANNOT_READ_FROM_SOCKET;
    extern const int CANNOT_PARSE_INPUT_ASSERTION_FAILED;
}

void ProxyV1Handler::run()
{
    const auto & settings = server.context()->getSettingsRef();
    socket().setReceiveTimeout(settings.receive_timeout);

    std::string word;
    bool eol;

    // Read PROXYv1 protocol header
    // http://www.haproxy.org/download/1.8/doc/proxy-protocol.txt

    // read "PROXY"
    if (!readWord(5, word, eol) || word != "PROXY" || eol)
        throw ParsingException(ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED, "PROXY protocol violation");

    // read "TCP4" or "TCP6" or "UNKNOWN"
    if (!readWord(7, word, eol))
        throw ParsingException(ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED, "PROXY protocol violation");

    if (word != "TCP4" && word != "TCP6" && word != "UNKNOWN")
        throw ParsingException(ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED, "PROXY protocol violation");

    if (word == "UNKNOWN" && eol)
        return;

    if (eol)
        throw ParsingException(ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED, "PROXY protocol violation");

    // read address
    if (!readWord(39, word, eol) || eol)
        throw ParsingException(ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED, "PROXY protocol violation");

    stack_data.forwarded_for = std::move(word);

    // read address
    if (!readWord(39, word, eol) || eol)
        throw ParsingException(ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED, "PROXY protocol violation");

    // read port
    if (!readWord(5, word, eol) || eol)
        throw ParsingException(ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED, "PROXY protocol violation");

    // read port and "\r\n"
    if (!readWord(5, word, eol) || !eol)
        throw ParsingException(ErrorCodes::CANNOT_PARSE_INPUT_ASSERTION_FAILED, "PROXY protocol violation");

    if (!stack_data.forwarded_for.empty())
        LOG_TRACE(log, "Forwarded client address from PROXY header: {}", stack_data.forwarded_for);
}

bool ProxyV1Handler::readWord(int max_len, std::string & word, bool & eol)
{
    word.clear();
    eol = false;

    char ch = 0;
    int n = 0;
    bool is_cr = false;
    try
    {
        for (++max_len; max_len > 0 || is_cr; --max_len)
        {
            n = socket().receiveBytes(&ch, 1);
            if (n == 0)
            {
                socket().shutdown();
                return false;
            }
            if (n < 0)
                break;

            if (is_cr)
                return ch == 0x0A;

            if (ch == 0x0D)
            {
                is_cr = true;
                eol = true;
                continue;
            }

            if (ch == ' ')
                return true;

            word.push_back(ch);
        }
    }
    catch (const Poco::Net::NetException & e)
    {
        throw NetException(ErrorCodes::NETWORK_ERROR, "{}, while reading from socket ({})", e.displayText(), socket().peerAddress().toString());
    }
    catch (const Poco::TimeoutException &)
    {
        throw NetException(ErrorCodes::SOCKET_TIMEOUT, "Timeout exceeded while reading from socket ({}, {} ms)",
            socket().peerAddress().toString(),
            socket().getReceiveTimeout().totalMilliseconds());
    }
    catch (const Poco::IOException & e)
    {
        throw NetException(ErrorCodes::NETWORK_ERROR, "{}, while reading from socket ({})", e.displayText(), socket().peerAddress().toString());
    }

    if (n < 0)
        throw NetException(ErrorCodes::CANNOT_READ_FROM_SOCKET, "Cannot read from socket ({})", socket().peerAddress().toString());

    return false;
}

}