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
use std::io::prelude::*;
use std::io::{self, ErrorKind, SeekFrom};
use std::marker;
use std::mem;
use std::path::{Path, PathBuf};
use libc::{c_int, c_ulong, c_long, c_uint, size_t};
use {raw, Session, Error, Channel};
use util::{self, SessionBinding};
pub struct Sftp<'sess> {
raw: *mut raw::LIBSSH2_SFTP,
_marker: marker::PhantomData<Channel<'sess>>,
}
pub struct File<'sftp> {
raw: *mut raw::LIBSSH2_SFTP_HANDLE,
sftp: &'sftp Sftp<'sftp>,
}
#[derive(Debug, Clone, Eq, PartialEq)]
#[allow(missing_copy_implementations)]
pub struct FileStat {
pub size: Option<u64>,
pub uid: Option<u32>,
pub gid: Option<u32>,
pub perm: Option<u32>,
pub atime: Option<u64>,
pub mtime: Option<u64>,
}
pub struct FileType {
perm: c_ulong,
}
bitflags! {
#[doc = "Options that can be used to configure how a file is opened"]
pub flags OpenFlags: c_ulong {
#[doc = "Open the file for reading."]
const READ = raw::LIBSSH2_FXF_READ,
#[doc = "Open the file for writing. If both this and Read are \
specified, the file is opened for both reading and writing"]
const WRITE = raw::LIBSSH2_FXF_WRITE,
#[doc = "Force all writes to append data at the end of the file."]
const APPEND = raw::LIBSSH2_FXF_APPEND,
#[doc = "If this flag is specified, then a new file will be created if \
one does not already exist (if Truncate is specified, the new \
file will be truncated to zero length if it previously \
exists) "]
const CREATE = raw::LIBSSH2_FXF_CREAT,
#[doc = "Forces an existing file with the same name to be truncated to \
zero length when creating a file by specifying `Create`. \
Using this flag implies the `Create` flag."]
const TRUNCATE = raw::LIBSSH2_FXF_TRUNC | CREATE.bits,
#[doc = "Causes the request to fail if the named file already exists. \
Using this flag implies the `Create` flag."]
const EXCLUSIVE = raw::LIBSSH2_FXF_EXCL | CREATE.bits
}
}
bitflags! {
#[doc = "Options to `Sftp::rename`"]
pub flags RenameFlags: c_long {
#[doc = "In a rename operation, overwrite the destination if it \
already exists. If this flag is not present then it is an \
error if the destination already exists"]
const OVERWRITE = raw::LIBSSH2_SFTP_RENAME_OVERWRITE,
#[doc = "Inform the remote that an atomic rename operation is \
desired if available"]
const ATOMIC = raw::LIBSSH2_SFTP_RENAME_ATOMIC,
#[doc = "Inform the remote end that the native system calls for \
renaming should be used"]
const NATIVE = raw::LIBSSH2_SFTP_RENAME_NATIVE
}
}
#[derive(Copy, Clone)]
pub enum OpenType {
File = raw::LIBSSH2_SFTP_OPENFILE as isize,
Dir = raw::LIBSSH2_SFTP_OPENDIR as isize,
}
impl<'sess> Sftp<'sess> {
pub fn open_mode(&self, filename: &Path, flags: OpenFlags,
mode: i32, open_type: OpenType) -> Result<File, Error> {
let filename = try!(util::path2bytes(filename));
unsafe {
let ret = raw::libssh2_sftp_open_ex(self.raw,
filename.as_ptr() as *const _,
filename.len() as c_uint,
flags.bits() as c_ulong,
mode as c_long,
open_type as c_int);
if ret.is_null() {
Err(self.last_error())
} else {
Ok(File::from_raw(self, ret))
}
}
}
pub fn open(&self, filename: &Path) -> Result<File, Error> {
self.open_mode(filename, READ, 0o644, OpenType::File)
}
pub fn create(&self, filename: &Path) -> Result<File, Error> {
self.open_mode(filename, WRITE | TRUNCATE, 0o644, OpenType::File)
}
pub fn opendir(&self, dirname: &Path) -> Result<File, Error> {
self.open_mode(dirname, READ, 0, OpenType::Dir)
}
pub fn readdir(&self, dirname: &Path)
-> Result<Vec<(PathBuf, FileStat)>, Error> {
let mut dir = try!(self.opendir(dirname));
let mut ret = Vec::new();
loop {
match dir.readdir() {
Ok((filename, stat)) => {
if &*filename == Path::new(".") ||
&*filename == Path::new("..") { continue }
ret.push((dirname.join(&filename), stat))
}
Err(ref e) if e.code() == raw::LIBSSH2_ERROR_FILE => break,
Err(e) => return Err(e),
}
}
Ok(ret)
}
pub fn mkdir(&self, filename: &Path, mode: i32)
-> Result<(), Error> {
let filename = try!(util::path2bytes(filename));
self.rc(unsafe {
raw::libssh2_sftp_mkdir_ex(self.raw,
filename.as_ptr() as *const _,
filename.len() as c_uint,
mode as c_long)
})
}
pub fn rmdir(&self, filename: &Path) -> Result<(), Error> {
let filename = try!(util::path2bytes(filename));
self.rc(unsafe {
raw::libssh2_sftp_rmdir_ex(self.raw,
filename.as_ptr() as *const _,
filename.len() as c_uint)
})
}
pub fn stat(&self, filename: &Path) -> Result<FileStat, Error> {
let filename = try!(util::path2bytes(filename));
unsafe {
let mut ret = mem::zeroed();
let rc = raw::libssh2_sftp_stat_ex(self.raw,
filename.as_ptr() as *const _,
filename.len() as c_uint,
raw::LIBSSH2_SFTP_STAT,
&mut ret);
try!(self.rc(rc));
Ok(FileStat::from_raw(&ret))
}
}
pub fn lstat(&self, filename: &Path) -> Result<FileStat, Error> {
let filename = try!(util::path2bytes(filename));
unsafe {
let mut ret = mem::zeroed();
let rc = raw::libssh2_sftp_stat_ex(self.raw,
filename.as_ptr() as *const _,
filename.len() as c_uint,
raw::LIBSSH2_SFTP_LSTAT,
&mut ret);
try!(self.rc(rc));
Ok(FileStat::from_raw(&ret))
}
}
pub fn setstat(&self, filename: &Path, stat: FileStat) -> Result<(), Error> {
let filename = try!(util::path2bytes(filename));
self.rc(unsafe {
let mut raw = stat.raw();
raw::libssh2_sftp_stat_ex(self.raw,
filename.as_ptr() as *const _,
filename.len() as c_uint,
raw::LIBSSH2_SFTP_SETSTAT,
&mut raw)
})
}
pub fn symlink(&self, path: &Path, target: &Path) -> Result<(), Error> {
let path = try!(util::path2bytes(path));
let target = try!(util::path2bytes(target));
self.rc(unsafe {
raw::libssh2_sftp_symlink_ex(self.raw,
path.as_ptr() as *const _,
path.len() as c_uint,
target.as_ptr() as *mut _,
target.len() as c_uint,
raw::LIBSSH2_SFTP_SYMLINK)
})
}
pub fn readlink(&self, path: &Path) -> Result<PathBuf, Error> {
self.readlink_op(path, raw::LIBSSH2_SFTP_READLINK)
}
pub fn realpath(&self, path: &Path) -> Result<PathBuf, Error> {
self.readlink_op(path, raw::LIBSSH2_SFTP_REALPATH)
}
fn readlink_op(&self, path: &Path, op: c_int) -> Result<PathBuf, Error> {
let path = try!(util::path2bytes(path));
let mut ret = Vec::<u8>::with_capacity(128);
let mut rc;
loop {
rc = unsafe {
raw::libssh2_sftp_symlink_ex(self.raw,
path.as_ptr() as *const _,
path.len() as c_uint,
ret.as_ptr() as *mut _,
ret.capacity() as c_uint,
op)
};
if rc == raw::LIBSSH2_ERROR_BUFFER_TOO_SMALL {
let cap = ret.capacity();
ret.reserve(cap);
} else {
break
}
}
if rc < 0 {
Err(self.last_error())
} else {
unsafe { ret.set_len(rc as usize) }
Ok(mkpath(ret))
}
}
pub fn rename(&self, src: &Path, dst: &Path, flags: Option<RenameFlags>)
-> Result<(), Error> {
let flags = flags.unwrap_or(ATOMIC | OVERWRITE | NATIVE);
let src = try!(util::path2bytes(src));
let dst = try!(util::path2bytes(dst));
self.rc(unsafe {
raw::libssh2_sftp_rename_ex(self.raw,
src.as_ptr() as *const _,
src.len() as c_uint,
dst.as_ptr() as *const _,
dst.len() as c_uint,
flags.bits())
})
}
pub fn unlink(&self, file: &Path) -> Result<(), Error> {
let file = try!(util::path2bytes(file));
self.rc(unsafe {
raw::libssh2_sftp_unlink_ex(self.raw,
file.as_ptr() as *const _,
file.len() as c_uint)
})
}
pub fn last_error(&self) -> Error {
let code = unsafe { raw::libssh2_sftp_last_error(self.raw) };
Error::from_errno(code as c_int)
}
pub fn rc(&self, rc: c_int) -> Result<(), Error> {
if rc == 0 {Ok(())} else {Err(self.last_error())}
}
}
impl<'sess> SessionBinding<'sess> for Sftp<'sess> {
type Raw = raw::LIBSSH2_SFTP;
unsafe fn from_raw(_sess: &'sess Session,
raw: *mut raw::LIBSSH2_SFTP) -> Sftp<'sess> {
Sftp { raw: raw, _marker: marker::PhantomData }
}
fn raw(&self) -> *mut raw::LIBSSH2_SFTP { self.raw }
}
impl<'sess> Drop for Sftp<'sess> {
fn drop(&mut self) {
unsafe { assert_eq!(raw::libssh2_sftp_shutdown(self.raw), 0) }
}
}
impl<'sftp> File<'sftp> {
unsafe fn from_raw(sftp: &'sftp Sftp<'sftp>,
raw: *mut raw::LIBSSH2_SFTP_HANDLE) -> File<'sftp> {
File {
raw: raw,
sftp: sftp,
}
}
pub fn setstat(&mut self, stat: FileStat) -> Result<(), Error> {
self.sftp.rc(unsafe {
let mut raw = stat.raw();
raw::libssh2_sftp_fstat_ex(self.raw, &mut raw, 1)
})
}
pub fn stat(&mut self) -> Result<FileStat, Error> {
unsafe {
let mut ret = mem::zeroed();
try!(self.sftp.rc(raw::libssh2_sftp_fstat_ex(self.raw, &mut ret, 0)));
Ok(FileStat::from_raw(&ret))
}
}
#[allow(missing_docs)]
pub fn statvfs(&mut self) -> Result<raw::LIBSSH2_SFTP_STATVFS, Error> {
unsafe {
let mut ret = mem::zeroed();
try!(self.sftp.rc(raw::libssh2_sftp_fstatvfs(self.raw, &mut ret)));
Ok(ret)
}
}
pub fn readdir(&mut self) -> Result<(PathBuf, FileStat), Error> {
let mut buf = Vec::<u8>::with_capacity(128);
let mut stat = unsafe { mem::zeroed() };
let mut rc;
loop {
rc = unsafe {
raw::libssh2_sftp_readdir_ex(self.raw,
buf.as_mut_ptr() as *mut _,
buf.capacity() as size_t,
0 as *mut _, 0,
&mut stat)
};
if rc == raw::LIBSSH2_ERROR_BUFFER_TOO_SMALL {
let cap = buf.capacity();
buf.reserve(cap);
} else {
break
}
}
if rc < 0 {
return Err(self.sftp.last_error())
} else if rc == 0 {
return Err(Error::new(raw::LIBSSH2_ERROR_FILE, "no more files"))
} else {
unsafe { buf.set_len(rc as usize); }
}
Ok((mkpath(buf), FileStat::from_raw(&stat)))
}
pub fn fsync(&mut self) -> Result<(), Error> {
self.sftp.rc(unsafe { raw::libssh2_sftp_fsync(self.raw) })
}
}
impl<'sftp> Read for File<'sftp> {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
unsafe {
let rc = raw::libssh2_sftp_read(self.raw,
buf.as_mut_ptr() as *mut _,
buf.len() as size_t);
match rc {
n if n < 0 => Err(io::Error::new(ErrorKind::Other,
self.sftp.last_error())),
n => Ok(n as usize)
}
}
}
}
impl<'sftp> Write for File<'sftp> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
let rc = unsafe {
raw::libssh2_sftp_write(self.raw,
buf.as_ptr() as *const _,
buf.len() as size_t)
};
if rc < 0 {
Err(io::Error::new(ErrorKind::Other, self.sftp.last_error()))
} else {
Ok(rc as usize)
}
}
fn flush(&mut self) -> io::Result<()> { Ok(()) }
}
impl<'sftp> Seek for File<'sftp> {
fn seek(&mut self, how: SeekFrom) -> io::Result<u64> {
let next = match how {
SeekFrom::Start(pos) => pos,
SeekFrom::Current(offset) => {
let cur = unsafe { raw::libssh2_sftp_tell64(self.raw) };
(cur as i64 + offset) as u64
}
SeekFrom::End(offset) => match self.stat() {
Ok(s) => match s.size {
Some(size) => (size as i64 + offset) as u64,
None => {
return Err(io::Error::new(ErrorKind::Other,
"no file size available"))
}
},
Err(e) => {
return Err(io::Error::new(ErrorKind::Other, e))
}
}
};
unsafe { raw::libssh2_sftp_seek64(self.raw, next) }
Ok(next)
}
}
impl<'sftp> Drop for File<'sftp> {
fn drop(&mut self) {
unsafe { assert_eq!(raw::libssh2_sftp_close_handle(self.raw), 0) }
}
}
impl FileStat {
pub fn file_type(&self) -> FileType {
FileType { perm: self.perm.unwrap_or(0) as c_ulong }
}
pub fn is_dir(&self) -> bool { self.file_type().is_dir() }
pub fn is_file(&self) -> bool { self.file_type().is_file() }
pub fn from_raw(raw: &raw::LIBSSH2_SFTP_ATTRIBUTES) -> FileStat {
fn val<T: Copy>(raw: &raw::LIBSSH2_SFTP_ATTRIBUTES, t: &T,
flag: c_ulong) -> Option<T> {
if raw.flags & flag != 0 {Some(*t)} else {None}
}
FileStat {
size: val(raw, &raw.filesize, raw::LIBSSH2_SFTP_ATTR_SIZE),
uid: val(raw, &raw.uid, raw::LIBSSH2_SFTP_ATTR_UIDGID)
.map(|s| s as u32),
gid: val(raw, &raw.gid, raw::LIBSSH2_SFTP_ATTR_UIDGID)
.map(|s| s as u32),
perm: val(raw, &raw.permissions, raw::LIBSSH2_SFTP_ATTR_PERMISSIONS)
.map(|s| s as u32),
mtime: val(raw, &raw.mtime, raw::LIBSSH2_SFTP_ATTR_ACMODTIME)
.map(|s| s as u64),
atime: val(raw, &raw.atime, raw::LIBSSH2_SFTP_ATTR_ACMODTIME)
.map(|s| s as u64),
}
}
pub fn raw(&self) -> raw::LIBSSH2_SFTP_ATTRIBUTES {
fn flag<T>(o: &Option<T>, flag: c_ulong) -> c_ulong {
if o.is_some() {flag} else {0}
}
raw::LIBSSH2_SFTP_ATTRIBUTES {
flags: flag(&self.size, raw::LIBSSH2_SFTP_ATTR_SIZE) |
flag(&self.uid, raw::LIBSSH2_SFTP_ATTR_UIDGID) |
flag(&self.gid, raw::LIBSSH2_SFTP_ATTR_UIDGID) |
flag(&self.perm, raw::LIBSSH2_SFTP_ATTR_PERMISSIONS) |
flag(&self.atime, raw::LIBSSH2_SFTP_ATTR_ACMODTIME) |
flag(&self.mtime, raw::LIBSSH2_SFTP_ATTR_ACMODTIME),
filesize: self.size.unwrap_or(0),
uid: self.uid.unwrap_or(0) as c_ulong,
gid: self.gid.unwrap_or(0) as c_ulong,
permissions: self.perm.unwrap_or(0) as c_ulong,
atime: self.atime.unwrap_or(0) as c_ulong,
mtime: self.mtime.unwrap_or(0) as c_ulong,
}
}
}
impl FileType {
pub fn is_dir(&self) -> bool { self.is(raw::LIBSSH2_SFTP_S_IFDIR) }
pub fn is_file(&self) -> bool { self.is(raw::LIBSSH2_SFTP_S_IFREG) }
pub fn is_symlink(&self) -> bool { self.is(raw::LIBSSH2_SFTP_S_IFLNK) }
fn is(&self, perm: c_ulong) -> bool {
(self.perm & raw::LIBSSH2_SFTP_S_IFMT) == perm
}
}
#[cfg(unix)]
fn mkpath(v: Vec<u8>) -> PathBuf {
use std::os::unix::prelude::*;
use std::ffi::OsStr;
PathBuf::from(OsStr::from_bytes(&v))
}
#[cfg(windows)]
fn mkpath(v: Vec<u8>) -> PathBuf {
use std::str;
PathBuf::from(str::from_utf8(&v).unwrap())
}