blob: 98e08ffa70d5189e6aebb9b2dd8618ae121ad271 [file] [log] [blame]
Damien Millere1a49812002-09-12 09:54:25 +10001/* $OpenBSD: sftp-client.h,v 1.11 2002/09/11 22:41:50 djm Exp $ */
Damien Miller33804262001-02-04 23:20:18 +11002
3/*
Damien Miller3db5f532002-02-13 14:10:32 +11004 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
Damien Miller33804262001-02-04 23:20:18 +11005 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27/* Client side of SSH2 filexfer protocol */
28
Damien Miller3db5f532002-02-13 14:10:32 +110029#ifndef _SFTP_CLIENT_H
30#define _SFTP_CLIENT_H
31
Damien Miller4870afd2001-03-14 10:27:09 +110032typedef struct SFTP_DIRENT SFTP_DIRENT;
33
34struct SFTP_DIRENT {
35 char *filename;
36 char *longname;
37 Attrib a;
38};
39
Ben Lindstroma3700052001-04-05 23:26:32 +000040/*
41 * Initialiase a SSH filexfer connection. Returns -1 on error or
Damien Miller058316f2001-03-08 10:08:49 +110042 * protocol version on success.
43 */
Ben Lindstromb1f483f2002-06-23 21:27:18 +000044struct sftp_conn *do_init(int, int, u_int, u_int);
Damien Miller3db5f532002-02-13 14:10:32 +110045
Ben Lindstromb1f483f2002-06-23 21:27:18 +000046u_int sftp_proto_version(struct sftp_conn *);
Damien Miller33804262001-02-04 23:20:18 +110047
48/* Close file referred to by 'handle' */
Damien Miller3db5f532002-02-13 14:10:32 +110049int do_close(struct sftp_conn *, char *, u_int);
Damien Miller33804262001-02-04 23:20:18 +110050
Damien Miller4870afd2001-03-14 10:27:09 +110051/* Read contents of 'path' to NULL-terminated array 'dir' */
Damien Miller3db5f532002-02-13 14:10:32 +110052int do_readdir(struct sftp_conn *, char *, SFTP_DIRENT ***);
Damien Miller4870afd2001-03-14 10:27:09 +110053
54/* Frees a NULL-terminated array of SFTP_DIRENTs (eg. from do_readdir) */
Ben Lindstromb4c774c2001-07-04 04:07:12 +000055void free_sftp_dirents(SFTP_DIRENT **);
Damien Miller4870afd2001-03-14 10:27:09 +110056
Damien Miller33804262001-02-04 23:20:18 +110057/* Delete file 'path' */
Damien Miller3db5f532002-02-13 14:10:32 +110058int do_rm(struct sftp_conn *, char *);
Damien Miller33804262001-02-04 23:20:18 +110059
60/* Create directory 'path' */
Damien Miller3db5f532002-02-13 14:10:32 +110061int do_mkdir(struct sftp_conn *, char *, Attrib *);
Damien Miller33804262001-02-04 23:20:18 +110062
63/* Remove directory 'path' */
Damien Miller3db5f532002-02-13 14:10:32 +110064int do_rmdir(struct sftp_conn *, char *);
Damien Miller33804262001-02-04 23:20:18 +110065
66/* Get file attributes of 'path' (follows symlinks) */
Damien Miller3db5f532002-02-13 14:10:32 +110067Attrib *do_stat(struct sftp_conn *, char *, int);
Damien Miller33804262001-02-04 23:20:18 +110068
69/* Get file attributes of 'path' (does not follow symlinks) */
Damien Miller3db5f532002-02-13 14:10:32 +110070Attrib *do_lstat(struct sftp_conn *, char *, int);
Damien Miller33804262001-02-04 23:20:18 +110071
72/* Get file attributes of open file 'handle' */
Damien Miller3db5f532002-02-13 14:10:32 +110073Attrib *do_fstat(struct sftp_conn *, char *, u_int, int);
Damien Miller33804262001-02-04 23:20:18 +110074
75/* Set file attributes of 'path' */
Damien Miller3db5f532002-02-13 14:10:32 +110076int do_setstat(struct sftp_conn *, char *, Attrib *);
Damien Miller33804262001-02-04 23:20:18 +110077
78/* Set file attributes of open file 'handle' */
Damien Miller3db5f532002-02-13 14:10:32 +110079int do_fsetstat(struct sftp_conn *, char *, u_int, Attrib *);
Damien Miller33804262001-02-04 23:20:18 +110080
81/* Canonicalise 'path' - caller must free result */
Damien Miller3db5f532002-02-13 14:10:32 +110082char *do_realpath(struct sftp_conn *, char *);
Damien Miller33804262001-02-04 23:20:18 +110083
84/* Rename 'oldpath' to 'newpath' */
Damien Miller3db5f532002-02-13 14:10:32 +110085int do_rename(struct sftp_conn *, char *, char *);
Damien Miller33804262001-02-04 23:20:18 +110086
Damien Miller058316f2001-03-08 10:08:49 +110087/* Rename 'oldpath' to 'newpath' */
Damien Miller3db5f532002-02-13 14:10:32 +110088int do_symlink(struct sftp_conn *, char *, char *);
Damien Miller058316f2001-03-08 10:08:49 +110089
90/* Return target of symlink 'path' - caller must free result */
Damien Miller3db5f532002-02-13 14:10:32 +110091char *do_readlink(struct sftp_conn *, char *);
Damien Miller058316f2001-03-08 10:08:49 +110092
Damien Miller33804262001-02-04 23:20:18 +110093/* XXX: add callbacks to do_download/do_upload so we can do progress meter */
94
95/*
96 * Download 'remote_path' to 'local_path'. Preserve permissions and times
97 * if 'pflag' is set
98 */
Damien Miller3db5f532002-02-13 14:10:32 +110099int do_download(struct sftp_conn *, char *, char *, int);
Damien Miller33804262001-02-04 23:20:18 +1100100
101/*
102 * Upload 'local_path' to 'remote_path'. Preserve permissions and times
103 * if 'pflag' is set
104 */
Damien Miller3db5f532002-02-13 14:10:32 +1100105int do_upload(struct sftp_conn *, char *, char *, int);
106
107#endif