-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsshclient.cpp
346 lines (311 loc) · 8.92 KB
/
sshclient.cpp
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
#include "sshclient.h"
#ifdef Q_OS_UNIX
#include <netinet/tcp.h>
#endif
#include <QHostInfo>
#include <QTimer>
#define POLL_TIMEOUT 1000
static int waitsocket(int socket_fd, LIBSSH2_SESSION *session) {
struct timeval timeout;
int rc;
fd_set fd;
fd_set *writefd = NULL;
fd_set *readfd = NULL;
int dir;
timeout.tv_sec = 10;
timeout.tv_usec = 0;
FD_ZERO(&fd);
FD_SET(socket_fd, &fd);
/* now make sure we wait in the correct direction */
dir = libssh2_session_block_directions(session);
if (dir & LIBSSH2_SESSION_BLOCK_INBOUND) readfd = &fd;
if (dir & LIBSSH2_SESSION_BLOCK_OUTBOUND) writefd = &fd;
rc = select(socket_fd + 1, readfd, writefd, NULL, &timeout);
return rc;
}
static int waitsocket(int socket_fd, int timeout_sec) {
struct timeval timeout;
int rc;
fd_set fd;
timeout.tv_sec = timeout_sec;
timeout.tv_usec = 0;
FD_ZERO(&fd);
FD_SET(socket_fd, &fd);
rc = select(socket_fd + 1, NULL, &fd, NULL, &timeout);
return rc;
}
SSHClient::SSHClient(QString hostName, QString port, QString username,
const QString password)
: QThread() {
this->hostName = hostName;
QHostInfo info = QHostInfo::fromName(hostName);
hostName = info.addresses().first().toString();
this->hostaddr = inet_addr(hostName.toStdString().data());
this->port = htons(atoi(port.toStdString().data()));
this->username = username;
this->password = password;
if (libssh2_init(0) != 0) {
fprintf(stderr, "libssh2 initialization failed\n");
}
}
SSHClient::SSHClient(QString hostName, QString port, QString username,
QString publicKeyPath, QString privateKeyPath,
QString passPhrase)
: QThread() {
this->hostName = hostName;
QHostInfo info = QHostInfo::fromName(hostName);
hostName = info.addresses().first().toString();
this->hostaddr = inet_addr(hostName.toStdString().data());
this->port = htons(atoi(port.toStdString().data()));
this->username = username;
this->publicKeyPath = publicKeyPath;
this->privateKeyPath = privateKeyPath;
this->passPhrase = passPhrase;
this->authType = 2;
if (libssh2_init(0) != 0) {
fprintf(stderr, "libssh2 initialization failed\n");
}
}
bool SSHClient::connect() {
qDebug() << "开始连接";
sock = socket(AF_INET, SOCK_STREAM, 0);
unsigned long ul = 1;
#ifdef Q_OS_UNIX
int keepalive = 1;
// 如该连接在10秒内没有任何数据往来,则进行探测
int keepidle = 10;
// 探测尝试的次数.如果第1次探测包就收到响应了,则后2次的不再发.
int keepcount = 3;
// 每次间隔时间
int keepintvl = 10;
setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, &keepalive, sizeof(keepalive));
setsockopt(sock, IPPROTO_TCP, TCP_KEEPIDLE, &keepidle, sizeof(keepidle));
setsockopt(sock, IPPROTO_TCP, TCP_KEEPCNT, &keepcount, sizeof(keepcount));
setsockopt(sock, IPPROTO_TCP, TCP_KEEPINTVL, &keepintvl, sizeof(keepintvl));
ioctl(sock, FIONBIO, &ul); //设置为非阻塞模式
#else
ioctlsocket(sock, FIONBIO, &ul); //设置为非阻塞模式
#endif
sin.sin_family = AF_INET;
sin.sin_port = port;
sin.sin_addr.s_addr = hostaddr;
int ret =
::connect(sock, (struct sockaddr *)&sin, sizeof(struct sockaddr_in));
ret = waitsocket(sock, 30);
if (ret == 0) {
emit errorMsg("网络连接超时!");
return false;
}
if (ret < 0) {
emit errorMsg("网络连接失败!");
return false;
}
qDebug() << "网络连接成功";
return true;
}
bool SSHClient::openSession() {
qDebug() << "打开会话";
LIBSSH2_KNOWNHOSTS *nh;
/* Open a session */
session = libssh2_session_init();
libssh2_session_set_blocking(session, 0);
int rc = 0;
while ((rc = libssh2_session_handshake(session, sock)) ==
LIBSSH2_ERROR_EAGAIN) {
waitsocket(sock, session);
}
if (rc) {
emit errorMsg("Failed to establishing SSH session");
return false;
}
nh = libssh2_knownhost_init(session);
if (!nh) {
return false;
}
libssh2_knownhost_free(nh);
return true;
}
bool SSHClient::userauth() {
qDebug() << "开始认证";
std::string un = username.toStdString();
int rc = 0;
QString errMsg;
if (authType == 1) {
std::string p = password.toStdString();
while ((rc = libssh2_userauth_password(session, un.data(), p.data())) ==
LIBSSH2_ERROR_EAGAIN) {
waitsocket(sock, session);
}
errMsg = "Authentication by password failed";
}
if (authType == 2) {
std::string pkf = publicKeyPath.toStdString();
std::string pvkf = privateKeyPath.toStdString();
std::string pp = passPhrase.toStdString();
while ((rc = libssh2_userauth_publickey_fromfile(
session, un.data(), pkf.data(), pvkf.data(), pp.data())) ==
LIBSSH2_ERROR_EAGAIN) {
waitsocket(sock, session);
}
errMsg = "Authentication by public key failed";
}
if (rc) {
emit errorMsg(errMsg);
return false;
}
emit authSuccess();
qDebug() << "认证成功";
return true;
}
bool SSHClient::open_channel() {
int rc = 0;
/* Open a channel */
channel = libssh2_channel_open_session(session);
while ((channel = libssh2_channel_open_session(session)) == NULL &&
libssh2_session_last_error(session, NULL, NULL, 0) ==
LIBSSH2_ERROR_EAGAIN) {
waitsocket(sock, session);
}
if (channel == NULL) {
emit errorMsg("Failed to open a new channel");
stop();
return false;
}
while ((rc = libssh2_channel_request_pty(channel, "xterm")) ==
LIBSSH2_ERROR_EAGAIN) {
waitsocket(sock, session);
}
if (rc != 0) {
emit errorMsg("Failed to request a pty");
stop();
return false;
}
if (pty_rows != 0 && pty_cols != 0) {
while ((rc = libssh2_channel_request_pty_size(
channel, pty_cols, pty_rows)) == LIBSSH2_ERROR_EAGAIN) {
waitsocket(sock, session);
}
}
/* Request a shell */
while ((rc = libssh2_channel_shell(channel)) == LIBSSH2_ERROR_EAGAIN) {
waitsocket(sock, session);
}
if (rc != 0) {
emit errorMsg("Failed to open a shell");
stop();
return false;
}
emit openChannelSuccess();
return true;
}
void SSHClient::setChannelRequestPtySize(int row, int column) {
libssh2_channel_request_pty_size(channel, column, row);
}
void SSHClient::free_channel() {
if (channel != NULL) {
libssh2_channel_free(channel);
}
channel = NULL;
}
void SSHClient::close_session() {
if (session != NULL) {
libssh2_session_disconnect(session,
"Normal Shutdown, Thank you for playing");
libssh2_session_free(session);
}
session = NULL;
}
void SSHClient::close_connect() {
if (sock) {
#ifdef WIN32
closesocket(sock);
#else
close(sock);
#endif
}
}
void SSHClient::exec(QString shell) {
// qDebug() << "execCmd ThreadId is" << QThread::currentThreadId();
QByteArray data = shell.toUtf8();
int size = data.size();
// libssh2_channel_write(channel, shell.toLocal8Bit(), size);
libssh2_channel_write_ex(channel, 0, data, size);
}
void SSHClient::run() {
qDebug() << "SSHClient ThreadId is" << QThread::currentThreadId();
bool result = this->connect();
if (result) {
result = openSession();
}
if (result) {
result = userauth();
}
if (result) {
result = open_channel();
}
if (!result) {
return;
}
emit connectSuccess();
LIBSSH2_POLLFD *fds = NULL;
if ((fds = static_cast<LIBSSH2_POLLFD *>(
malloc(sizeof(LIBSSH2_POLLFD) * 2))) == NULL) {
return;
}
fds[0].type = LIBSSH2_POLLFD_CHANNEL;
fds[0].fd.channel = channel;
fds[0].events = LIBSSH2_POLLFD_POLLIN | LIBSSH2_POLLFD_CHANNEL_CLOSED;
fds[1].type = LIBSSH2_POLLFD_SOCKET;
fds[1].fd.socket = sock;
fds[1].events = LIBSSH2_POLLFD_POLLHUP;
char *buf = new char[READ_BUF_SIZE];
int ret = 0;
while (true) {
int act = 0;
int rc = libssh2_poll(fds, 2, POLL_TIMEOUT);
if (rc < 1) {
continue;
}
if ((ret = libssh2_channel_eof(channel)) == 1) {
emit readChannelData("\n目标主动断开连接");
emit disconnected();
break;
}
if (fds[0].revents & LIBSSH2_POLLFD_POLLIN) {
act++;
ssize_t length = libssh2_channel_read(channel, buf, READ_BUF_SIZE);
if (length > 0) {
QByteArray buffer(buf, length);
QString data = QString::fromUtf8(buffer);
emit readChannelData(data);
} else if (length == LIBSSH2_ERROR_EAGAIN) {
continue;
} else {
emit readChannelData("\nSSH会话连接异常");
emit disconnected();
break;
}
}
if (fds[0].revents & LIBSSH2_POLLFD_CHANNEL_CLOSED ||
fds[1].revents & LIBSSH2_POLLFD_POLLHUP) {
/* don't leave loop until we have read all data */
if (!act) {
emit readChannelData("\nSSH会话连接关闭");
emit disconnected();
break;
}
}
}
if (fds) {
free(fds);
fds = NULL;
}
delete[] buf;
this->stop();
}
void SSHClient::stop() {
// QTimer::singleShot(POLL_TIMEOUT, [=]() {});
free_channel();
close_session();
close_connect();
}