-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsshthread.cpp
251 lines (203 loc) · 6.79 KB
/
sshthread.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
#include "sshthread.h"
#include <QDebug>
#include "fsOperations.h"
#include "dokanyThread.h"
#include <QtConcurrent>
#define GET_FILE_NODES (m_dokany->getFilenodes())
SshThread::SshThread(DokanyThread *dokany, QObject *parent) :
m_dokany(dokany),
QObject(parent)
{
}
SshThread::~SshThread()
{
if (sftp_session) libssh2_sftp_shutdown(sftp_session);
#ifdef WIN32
closesocket(sock);
#else
close(sock);
#endif
}
void SshThread::start()
{
QtConcurrent::run(this, &SshThread::initSSH);
}
void SshThread::setSshPara(QString hostaddr, int port, QString username, QString password, QString rootPath)
{
this->hostaddr = inet_addr(hostaddr.toLocal8Bit().data());
this->port = port;
this->username = username;
this->password = password;
this->rootPath = rootPath;
this->rootPath.replace("\\", "/");
if (this->rootPath.endsWith("/")) this->rootPath.chop(1);
}
QVector<FileNodePtr> SshThread::openDir(QString path)
{
LIBSSH2_SFTP_HANDLE *sftp_handle;
QVector<FileNodePtr> fileVec;
int rc;
if (sftp_session == NULL)
{
qDebug() << "sftp handle or session is invalid!!";
return fileVec;
}
if (!path.endsWith("/")) path.append("/");
qDebug() << "SSH open dir" << path;
sftp_handle = libssh2_sftp_opendir(sftp_session, path.toLocal8Bit().data());
if(!sftp_handle) {
qDebug() << "Unable to open dir with SFTP" << sftp_handle;
return fileVec;
}
//qDebug() << "libssh2_sftp_opendir() is done, now receive listing!\n";
do {
char mem[512];
char longentry[512];
LIBSSH2_SFTP_ATTRIBUTES attrs;
FileNodePtr node = std::make_shared<FileNode>();
/* loop until we fail */
rc = libssh2_sftp_readdir_ex(sftp_handle, mem, sizeof(mem),
longentry, sizeof(longentry), &attrs);
if(rc > 0)
{
/* rc is the length of the file name in the mem
buffer */
//qDebug() << QString::fromLocal8Bit(mem) << attrs.permissions << attrs.filesize << attrs.atime << attrs.mtime;
node->fileName = mem;
node->size = attrs.filesize;
if ((attrs.permissions >> 12) == 0x4)
{
//GET_FILE_NODES->createFile(QString("%1%2").arg(path).arg(mem), true, FILE_ATTRIBUTE_DIRECTORY, attrs.filesize);
node->isDirectory = true;
node->file_attr = FILE_ATTRIBUTE_DIRECTORY;
}
if (node->fileName.startsWith("."))
{
node->file_attr |= FILE_ATTRIBUTE_HIDDEN;
}
fileVec.append(node);
}
else
{
break;
}
} while(1);
libssh2_sftp_closedir(sftp_handle);
return fileVec;
}
int SshThread::readFile(QString path, QByteArray &buffer, int offset)
{
LIBSSH2_SFTP_HANDLE *sftp_handle = libssh2_sftp_open(sftp_session, path.toUtf8().data(), LIBSSH2_FXF_READ, 0);
if(!sftp_handle)
{
qDebug("ssh open file failed! %s", path.toUtf8().data());
return -1;
}
libssh2_sftp_seek64(sftp_handle, offset);
char mem[1024];
int rc = 0;
Q_FOREVER
{
rc = libssh2_sftp_read(sftp_handle, mem, sizeof(mem));
if (rc > 0)
{
buffer.append(mem, rc);
}
else
{
break;
}
}
return 0;
}
void SshThread::initSSH()
{
qDebug() << "ssh start init";
int rc, i, auth_pw = 0;
const char *fingerprint;
char *userauthlist;
int err;
err = WSAStartup(MAKEWORD(2, 0), &wsadata);
if(err != 0) {
fprintf(stderr, "WSAStartup failed with error: %d\n", err);
return;
}
rc = libssh2_init(0);
if(rc != 0) {
fprintf(stderr, "libssh2 initialization failed (%d)\n", rc);
return;
}
sock = socket(AF_INET, SOCK_STREAM, 0);
sin.sin_family = AF_INET;
sin.sin_port = htons(port);
sin.sin_addr.s_addr = hostaddr;
if(::connect(sock, (struct sockaddr*)(&sin),
sizeof(struct sockaddr_in)) != 0) {
fprintf(stderr, "failed to connect!\n");
return;
}
session = libssh2_session_init();
if(!session)
return;
/* ... start it up. This will trade welcome banners, exchange keys,
* and setup crypto, compression, and MAC layers
*/
rc = libssh2_session_handshake(session, sock);
if(rc) {
fprintf(stderr, "Failure establishing SSH session: %d\n", rc);
return;
}
/* At this point we havn't yet authenticated. The first thing to do
* is check the hostkey's fingerprint against our known hosts Your app
* may have it hard coded, may go to a file, may present it to the
* user, that's your call
*/
fingerprint = libssh2_hostkey_hash(session, LIBSSH2_HOSTKEY_HASH_SHA1);
fprintf(stderr, "Fingerprint: ");
for(i = 0; i < 20; i++) {
fprintf(stderr, "%02X ", (unsigned char)fingerprint[i]);
}
fprintf(stderr, "\n");
/* check what authentication methods are available */
userauthlist = libssh2_userauth_list(session, username.toLocal8Bit().data(), username.length());
fprintf(stderr, "Authentication methods: %s\n", userauthlist);
if(strstr(userauthlist, "password") != NULL) {
auth_pw |= 1;
}
if(strstr(userauthlist, "keyboard-interactive") != NULL) {
auth_pw |= 2;
}
if(strstr(userauthlist, "publickey") != NULL) {
auth_pw |= 4;
}
if(auth_pw & 1)
{
/* We could authenticate via password */
if(libssh2_userauth_password(session, username.toLocal8Bit().data(), password.toLocal8Bit().data()))
{
fprintf(stderr, "\tAuthentication by password failed!\n");
goto shutdown;
}
else {
fprintf(stderr, "\tAuthentication by password succeeded.\n");
}
}
fprintf(stderr, "libssh2_sftp_init()!\n");
sftp_session = libssh2_sftp_init(session);
if(!sftp_session) {
fprintf(stderr, "Unable to init SFTP session\n");
goto shutdown;
}
qDebug() << "ssh start init success";
/* Since we have not set non-blocking, tell libssh2 we are blocking */
libssh2_session_set_blocking(session, 1);
// openDir(rootPath);
fprintf(stderr, "libssh2_sftp_opendir()!\n");
/* Request a dir listing via SFTP */
// libssh2_sftp_shutdown(sftp_session);
shutdown:
//libssh2_session_disconnect(session, "Normal Shutdown");
//libssh2_session_free(session);
fprintf(stderr, "all done\n");
// libssh2_exit();
}