-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSFTP_Client.py
More file actions
734 lines (632 loc) · 20.8 KB
/
SFTP_Client.py
File metadata and controls
734 lines (632 loc) · 20.8 KB
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
# Handle imports
from SSH_Client import SSH
from Packet import packet
from Attributes import attributes
import socket
# Define classes
class SFTP_client(SSH):
"""
A SFTP v3 client as per the SFTP internet draft 02.
Use open_sftp_session() to open an sftp channel, and use init() afterwards to start an sftp session.
Use stop() to close the sftp channel, freeing it for future usage.
"""
conn_timeout = 0.2 # For connection timeouts
def open_sftp_channel(self, window_size=None, max_packet_size=None):
"""
Connect to the sftp channel.
"""
if not max_packet_size is None:
self.max_packet_size = max_packet_size
transport = self.ssh.get_transport()
chan = transport.open_session(window_size=window_size,
max_packet_size=max_packet_size, timeout=1)
if chan is None:
return None # Error, don't know why
chan.invoke_subsystem('sftp')
chan.settimeout(self.conn_timeout)
self.socket = chan
self.__initiate()
def __send(self, msg):
"""
Send bytes to server.
"""
self.open_sftp_channel(window_size=2048)
length = len(msg)
total_sent = 0
sent = 0
# Send message until everything is sent.
while sent < length:
sent += self.socket.__send(msg[total_sent:])
if sent == 0:
# This indicates an error or connection break
raise RuntimeError("socket connection broken")
total_sent += sent
def __recv(self, max_packet_size = None):
"""
Listen for bytes from server.
"""
msg = bytes()
recv = ""
if max_packet_size is None:
max_packet_size = self.max_packet_size
# Read from the connection until timeout.
while not (recv is None):
try:
recv = self.socket.__recv(max_packet_size)
except socket.timeout:
# Timeout occurred
recv = None
if recv == bytes():
# This indicates an error or connection break
raise RuntimeError("socket connection broken")
if not (recv is None):
msg += recv
print("got: " + str(msg))
return msg
def __initiate(self):
"""
Initiate the SFTP connection. This negotiates sftp versions between client and server.
This is required to be run before any SFTP requests are sent.
:return: None
"""
"""
uint32 version
<extension data>
"""
c_packet = packet("SSH_FXP_INIT")
c_packet.add(3, 4)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
# Check that servers agree on the SFTP protocol version.
if r_packet.get_items()[0] != 3:
raise Exception("SFTP cannot settle on the protocol version to use.")
def create_dir(self, dir, attr = None):
"""
Create a directory.
:param dir: Where to create the directory. Path is relative to user's ~.
:param attr: Attributes for the directory. Normally, this can be left alone.
:return: None
"""
# Create directory
"""
uint32 id
string path
ATTRS attrs
"""
c_packet = packet("SSH_FXP_MKDIR")
c_packet.assign_next_id()
c_packet.add(dir)
if attr is None:
attr = attributes()
c_packet.add(attr)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
def remove_dir(self, dir):
"""
Remove a directory.
:param dir: The directory to remove. Path is relative to user's ~.
:return: None
"""
# Make directory
"""
uint32 id
string path
"""
c_packet = packet("SSH_FXP_RMDIR")
c_packet.assign_next_id()
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
# waiting on response
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
def listdir(self, dir):
"""
Get the file names of files in a directory.
:param dir: Directory to crawl. Path is relative to user's ~.
:return: An array of strings
"""
filenames = []
# List directory
"""
uint32 id
string path
"""
c_packet = packet("SSH_FXP_OPENDIR")
c_packet.assign_next_id()
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
# waiting on response
response = self.__recv()
r_packet = packet(b=response)
handle = r_packet.get_items()[0]
# Read filenames from the directory until the directory is exhausted.
reading = True
while reading:
try:
# Read in filenames
"""
uint32 id
string handle
"""
c_packet = packet("SSH_FXP_READDIR")
c_packet.assign_next_id()
c_packet.add(handle)
bytes = c_packet.bytes()
self.__send(bytes)
# waiting on response
response = self.__recv()
r_packet = packet(b=response)
if r_packet.get_FXP_type() == "SSH_FXP_STATUS":
reading = False # Done reading files from folder
else:
items = r_packet.get_items()
# Parse out filenames
for i in range(1, len(items), 3):
filenames.append(items[i])
except Exception as e:
print(e)
reading = False
# Close the directory.
"""
uint32 id
string handle
"""
c_packet = packet("SSH_FXP_CLOSE")
c_packet.assign_next_id()
c_packet.add(handle)
bytes = c_packet.bytes()
self.__send(bytes)
# waiting on response
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
return filenames
def listdir_attr(self, dir):
"""
Get the attributes of files in a directory.
:param dir: Directory to crawl. Path is relative to user's ~.
:return: An array of attributes
"""
attrs = []
# Open a directory.
"""
uint32 id
string path
"""
c_packet = packet("SSH_FXP_OPENDIR")
c_packet.assign_next_id()
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
# waiting on response
response = self.__recv()
r_packet = packet(b=response)
handle = r_packet.get_items()[0]
# Read filenames from the directory until the directory is exhausted.
"""
uint32 id
string handle
"""
reading = True
while reading:
try:
c_packet = packet("SSH_FXP_READDIR")
c_packet.assign_next_id()
c_packet.add(handle)
bytes = c_packet.bytes()
self.__send(bytes)
# waiting on response
response = self.__recv()
r_packet = packet(b=response)
if r_packet.get_FXP_type() == "SSH_FXP_STATUS":
reading = False # Done reading files from folder
else:
items = r_packet.get_items()
# Parse out attributes
for i in range(3, len(items), 3):
attrs.append(items[i])
except Exception as e:
print(e)
reading = False
# Close the directory.
"""
uint32 id
string handle
"""
c_packet = packet("SSH_FXP_CLOSE")
c_packet.assign_next_id()
c_packet.add(handle)
bytes = c_packet.bytes()
self.__send(bytes)
# waiting on response
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
return attrs
def stat(self, dir):
"""
Get the attributes of a file, following symbolic links.
:param dir: File to read attributes of. Path is relative to user's ~.
:return: An attributes
"""
# Get file attributes via STAT, which follows symbolic links
"""
uint32 id
string path
"""
c_packet = packet("SSH_FXP_STAT")
c_packet.assign_next_id()
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
attr = r_packet.get_items()[0]
return attr
def lstat(self, dir):
"""
Get the attributes of a file, NOT following symbolic links.
:param dir: File to read attributes of. Path is relative to user's ~.
:return: AN attributes
"""
# Attempt LSTAT, aka get file attirbutes and do NOT follow smybolic links
"""
uint32 id
string path
"""
c_packet = packet("SSH_FXP_LSTAT")
c_packet.assign_next_id()
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
attr = r_packet.get_items()[0]
return attr
def setstat(self, dir, attr):
"""
Set the attributes of a file, as defined in the SFTP internet draft 02.
:param dir: File to set attributes of. Path is relative to user's ~.
:param attr: The attributes to use.
:return: None
"""
# SSH_FXP_SETSTAT
"""
uint32 id
string path
ATTRS attrs
"""
c_packet = packet("SSH_FXP_SETSTAT")
c_packet.assign_next_id()
c_packet.add(dir)
c_packet.add(attr)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
def create_file(self, dir, attr = None):
"""
Create a file.
:param dir: Where to create the file. Path is relative to user's ~.
:param attr: The attributes of a file. Default will create an empty file.
:return: None
"""
# Create
"""
string filename
uint32 pflags
ATTRS attrs
"""
c_packet = packet("SSH_FXP_OPEN")
c_packet.assign_next_id()
c_packet.add(dir)
c_packet.add(c_packet.PFLAG_type_byte("SSH_FXF_CREAT"), 4)
if attr is None:
attr = attributes()
c_packet.add(attr)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
handle = r_packet.get_items()[0]
# Close
"""
uint32 id
string handle
"""
c_packet = packet("SSH_FXP_CLOSE")
c_packet.assign_next_id()
c_packet.add(handle)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv() # Read any potential messages.
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
def write_file(self, dir, data):
"""
Write data to a file.
:param dir: File to write. Path is relative to user's ~.
:param data: Data to write
:return: None
"""
# Open
"""
string filename
uint32 pflags
ATTRS attrs
"""
c_packet = packet("SSH_FXP_OPEN")
c_packet.assign_next_id()
c_packet.add("file_t")
c_packet.add(c_packet.PFLAG_type_byte("SSH_FXF_WRITE"), 4)
attr = attributes()
c_packet.add(attr)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
handle = r_packet.get_items()[0]
# Write
"""
uint32 id
string handle
uint64 offset
string data
"""
try:
c_packet = packet("SSH_FXP_WRITE")
c_packet.assign_next_id()
c_packet.add(handle)
c_packet.add(0, 8)
c_packet.add(data)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
packet(b=response)
except Exception as e:
print(e)
# Close
"""
uint32 id
string handle
"""
c_packet = packet("SSH_FXP_CLOSE")
c_packet.assign_next_id()
c_packet.add(handle)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
def read_file(self, dir, amount, offset=0):
"""
Read a file.
:param dir: File to read. Path is relative to user's ~.
:param amount: The amount to read.
:param offset: The offset to read from.
:return: The data read.
"""
data = ""
# Open
"""
string filename
uint32 pflags
ATTRS attrs
"""
c_packet = packet("SSH_FXP_OPEN")
c_packet.assign_next_id()
c_packet.add(dir)
c_packet.add(c_packet.PFLAG_type_byte("SSH_FXF_READ"), 4)
attr = attributes()
c_packet.add(attr)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
handle = r_packet.get_items()[0]
# Read
"""
uint32 id
string handle
uint64 offset
uint32 len
"""
try:
c_packet = packet("SSH_FXP_READ")
c_packet.assign_next_id()
c_packet.add(handle)
c_packet.add(offset, 8)
c_packet.add(amount, 4)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
data = r_packet.get_items()[0]
except Exception as e:
print(e)
# Close
"""
uint32 id
string handle
"""
c_packet = packet("SSH_FXP_CLOSE")
c_packet.assign_next_id()
c_packet.add(handle)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
return data
def rename(self, dir, new_dir):
"""
Rename a file or directory.
:param dir: Move file from here. Path is relative to user's ~.
:param new_dir: Move file to here. Path is relative to user's ~.
:return: None
"""
# Rename
"""
uint32 id
string oldpath
string newpath
"""
c_packet = packet("SSH_FXP_RENAME")
c_packet.assign_next_id()
c_packet.add(dir)
c_packet.add(new_dir)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
def remove_file(self, dir):
"""
Remove a file.
:param dir: File to remove. Path is relative to user's ~.
:return: None
"""
# Remove
"""
uint32 id
string filename
"""
c_packet = packet("SSH_FXP_REMOVE")
c_packet.assign_next_id()
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
def symlink(self, dir, link_to):
"""
Create a symbolic link.
:param dir: Where to create the symbolic link. Path is relative to user's ~.
:param link_to: Where to symbolic link to. Path is relative to user's ~.
:return:
"""
# SSH_FXP_SYMLINK
"""
uint32 id
string linkpath
string targetpath
"""
c_packet = packet("SSH_FXP_SYMLINK")
c_packet.assign_next_id()
c_packet.add(link_to)
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
# Check for errors
status_type = r_packet.get_items()[0]
status_message = r_packet.get_items()[1].lower()
if status_type != r_packet.FX_type_byte("SSH_FX_OK") and status_message != "success":
raise Exception(status_message)
def readlink(self, dir):
"""
Read a symbolic link.
:param dir: Symbolic link to read. Path is relative to user's ~.
:return:
"""
# SSH_FXP_READLINK
"""
uint32 id
string path
"""
c_packet = packet("SSH_FXP_READLINK")
c_packet.assign_next_id()
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
return r_packet.get_items()[1]
def canonicalize(self, dir):
"""
Canonicalize a path.
:param dir: Some path.
:return: The canonicalzed path.
"""
# SSH_FXP_REALPATH
"""
uint32 id
string path
"""
c_packet = packet("SSH_FXP_REALPATH")
c_packet.assign_next_id()
c_packet.add(dir)
bytes = c_packet.bytes()
self.__send(bytes)
print("waiting on response")
response = self.__recv()
r_packet = packet(b=response)
return r_packet.get_items()[1]