Spaces:
Paused
Paused
File size: 9,016 Bytes
8122175 2faa101 8122175 bb16f10 2faa101 c8aad12 2faa101 c8aad12 2faa101 c8aad12 2faa101 1bff97b c8aad12 1bff97b 2faa101 c8aad12 2faa101 c8aad12 2faa101 c8aad12 2faa101 99dc157 2faa101 99dc157 c8aad12 2faa101 c8aad12 2faa101 99dc157 2faa101 99dc157 2faa101 99dc157 2faa101 99dc157 2faa101 |
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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
#include "tcp_client.h"
#include "bolt/datagram.h"
#include "tcp_client_map.h"
#include "utils.h"
#include "spdlog/spdlog.h"
#include <string>
#include <time.h>
void TcpClientBolt::onConnection(const hv::SocketChannelPtr &channel)
{
char buff[2];
buff[0] = BOLT_CHANNEL_CMD_TCP_HANDSHAKE_RESPONSE;
buff[1] = BOLT_TCP_HANDSHAKE_SUCESS;
int len = sizeof(buff);
PACK_TUNNEL_DATA(boltdata, boltdata_len, BOLT_VERSION, BOLT_RESERVE, BOLT_PAYLOAD_TYPE_CMD, t_addr.sin_addr.s_addr, t_addr.sin_port, u_addr.sin_addr.s_addr, u_addr.sin_port, session_id, 0, 0, buff, len);
hio_write(io, boltdata, boltdata_len);
spdlog::info("BOLT_CHANNEL_CMD_TCP_HANDSHAKE_REQUEST: t_addr={}:{}, u_addr={}:{} ==> connect succ", inet_ntoa(t_addr.sin_addr), htons(t_addr.sin_port), inet_ntoa(u_addr.sin_addr), htons(u_addr.sin_port));
}
void TcpClientBolt::onRecv(const hv::SocketChannelPtr &channel, hv::Buffer *buf)
{
auto config = TcpClientMap<uint32_t, tcpBoltConfig>::getInstance().get(session_id);
if (config)
{
if (config->encrypt)
{
switch (config->ept_type)
{
case CRYPT_TYPE::XOR:
xor_::crypt((char *)buf->data(), buf->size(), config->ept_key);
break;
default:
break;
}
}
hio_write(io, buf->data(), buf->size());
}
spdlog::info("t_addr={}:{}, u_addr={}:{} onRecv==> {}={}", inet_ntoa(t_addr.sin_addr), htons(t_addr.sin_port), inet_ntoa(u_addr.sin_addr), htons(u_addr.sin_port), buf->len, (const char*)buf->data());
}
void TcpClientBolt::onWrited(const hv::SocketChannelPtr &channel, hv::Buffer *buf)
{
if (channel.get()->isWriteComplete())
{
spdlog::info("t_addr={}:{}, u_addr={}:{} isWriteComplete==> {}={}", inet_ntoa(t_addr.sin_addr), htons(t_addr.sin_port), inet_ntoa(u_addr.sin_addr), htons(u_addr.sin_port), buf->len, (const char*)buf->data());
}
}
void TcpClientBolt::onDisConnection(const hv::SocketChannelPtr &channel)
{
if (is_bolt_server)
{
TcpClientMap<uint32_t, tcpBoltConfig>::getInstance().remove(session_id);
}
hio_close(io);
}
bool TcpClientBolt::handShake(void *buf, int readbytes)
{
if (readbytes > 0)
{
UNPACK_TUNNEL_DATA(dest, dest_len, ver, res, type, t_ip, t_port, u_ip, u_port, session_id, extend, extend_len, buf, readbytes)
if (ver == BOLT_VERSION && res == BOLT_RESERVE)
{
if (type == BOLT_PAYLOAD_TYPE_CMD)
{
if (dest_len == 1 && dest[0] == BOLT_CHANNEL_CMD_TCP_HANDSHAKE_REQUEST)
{
this->t_addr.sin_family = AF_INET;
this->t_addr.sin_addr.s_addr = t_ip;
this->t_addr.sin_port = t_port;
this->u_addr.sin_family = AF_INET;
this->u_addr.sin_addr.s_addr = u_ip;
this->u_addr.sin_port = u_port;
this->session_id = session_id;
this->config = TcpClientMap<uint32_t, tcpBoltConfig>::getInstance().get(session_id);
if (!this->config)
{
char buff[1] = {BOLT_CHANNEL_CMD_INVALID_RESPONSE};
int len = sizeof(buff);
PACK_TUNNEL_DATA(boltdata, boltdata_len, BOLT_VERSION, BOLT_RESERVE, BOLT_PAYLOAD_TYPE_CMD, t_addr.sin_addr.s_addr, t_addr.sin_port, u_addr.sin_addr.s_addr, u_addr.sin_port, session_id, 0, 0, buff, len);
hio_write(io, buff, len);
hio_close_async(io);
return false;
}
if (!this->connect((struct sockaddr *)&t_addr))
{
spdlog::info("[TCP]BOLT_CHANNEL_CMD_TCP_HANDSHAKE_REQUEST: t_addr={}:{}, u_addr={}:{} ==> connect fail", inet_ntoa(t_addr.sin_addr), htons(t_addr.sin_port), inet_ntoa(u_addr.sin_addr), htons(u_addr.sin_port));
char buff[2];
buff[0] = BOLT_CHANNEL_CMD_TCP_HANDSHAKE_RESPONSE;
buff[1] = BOLT_TCP_HANDSHAKE_FAIL_TIMEOUT;
int len = sizeof(buff);
PACK_TUNNEL_DATA(boltdata, boltdata_len, BOLT_VERSION, BOLT_RESERVE, BOLT_PAYLOAD_TYPE_CMD, t_addr.sin_addr.s_addr, t_addr.sin_port, u_addr.sin_addr.s_addr, u_addr.sin_port, session_id, 0, 0, buff, len);
hio_write(io, buff, len);
hio_close_async(io);
return false;
}
return true;
}
else if (dest_len == 73 && dest[0] == BOLT_CHANNEL_CMD_BIND_REQUEST)
{
UNPACK_BIND_DATA(command, request_id, signal_id, session_id, data_st, dest, dest_len)
this->session_id = session_id;
tcpBoltConfig config;
config.request_id = request_id;
config.session_id = session_id;
config.data_st = data_st;
config.signal_id = signal_id;
if (extend_len >= 5)
{
if (strcmp(extend, "ept=1") == 0)
{
config.encrypt = true;
}
}
config.ept_type = config.encrypt ? CRYPT_TYPE::XOR : CRYPT_TYPE::NONE;
config.ept_key = config.encrypt ? generateRandomKey() : 0;
spdlog::info("[TCP]BOLT_CHANNEL_CMD_BIND_REQUEST: requestId:{}, session_id:{}, encrypt:{}", request_id, session_id, config.encrypt);
GENERATE_DECRYPT_KEY(extend_response, extend_response_len, config.ept_type, config.ept_key)
uint32_t result = BOLT_BIND_RESPONSE_CODE_SUCESS;
PACK_BIND_RESPONSE_DATA(bind_response, bind_response_len, BOLT_CHANNEL_CMD_BIND_RESPONSE, request_id, session_id, result)
PACK_TUNNEL_DATA(response, response_len, BOLT_VERSION, BOLT_RESERVE, BOLT_PAYLOAD_TYPE_CMD, 0, 0, 0, 0, session_id, extend_response, extend_response_len, bind_response, bind_response_len)
hio_write(io, response, response_len);
TcpClientMap<uint32_t, tcpBoltConfig>::getInstance().add(session_id, config);
is_bolt_server = true;
}
else if (dest_len == 9 && dest[0] == BOLT_CHANNEL_CMD_UNBIND_REQUEST)
{
UNPACK_UNBIND_DATA(command, session_id, code, dest, dest_len)
TcpClientMap<uint32_t, tcpBoltConfig>::getInstance().remove(session_id);
this->close();
hio_close_async(io);
spdlog::info("[TCP]BOLT_CHANNEL_CMD_UNBIND_REQUEST: requestId:{}, session_id:{} t_addr={}:{}, u_addr={}:{}", config->request_id, config->session_id, inet_ntoa(t_addr.sin_addr), htons(t_addr.sin_port), inet_ntoa(u_addr.sin_addr), htons(u_addr.sin_port));
}
}
}
}
return false;
}
bool TcpClientBolt::connect(struct sockaddr *addr)
{
int connfd = cli.createsocket(addr);
if (connfd < 0)
{
return false;
}
cli.onConnection = [this](const hv::SocketChannelPtr &channel)
{
std::string peeraddr = channel->peeraddr();
if (channel->isConnected())
{
spdlog::info("connected to {}! connfd={}\n", peeraddr.c_str(), channel->fd());
onConnection(channel);
}
else
{
spdlog::info("disconnected to {}! connfd={}\n", peeraddr.c_str(), channel->fd());
onDisConnection(channel);
}
};
cli.onMessage = [this](const hv::SocketChannelPtr &channel, hv::Buffer *buf)
{
spdlog::info("<<< len:{} : {}", (int)buf->size(), (char *)buf->data());
onRecv(channel, buf);
};
cli.onWriteComplete = [this](const hv::SocketChannelPtr &channel, hv::Buffer *buf)
{
spdlog::info(">>> len:{} : {}", (int)buf->size(), (char *)buf->data());
onWrited(channel, buf);
};
cli.start();
return true;
}
int TcpClientBolt::send(char *data, int size)
{
if (cli.isConnected())
{
auto config = TcpClientMap<uint32_t, tcpBoltConfig>::getInstance().get(session_id);
if (config)
{
if (config->encrypt)
{
switch (config->ept_type)
{
case CRYPT_TYPE::XOR:
xor_::crypt(data, size, config->ept_key);
break;
default:
break;
}
}
}
return cli.send(data, size);
}
else
{
return -1;
}
}
void TcpClientBolt::close()
{
spdlog::info("TcpClientBolt::close()\n");
cli.stop();
} |