sftp_proto.h revision 1.2 1 1.2 pooka /* $NetBSD: sftp_proto.h,v 1.2 2007/06/06 01:55:03 pooka Exp $ */
2 1.1 pooka
3 1.1 pooka /*
4 1.1 pooka * Copyright (c) 2006 Antti Kantee. All Rights Reserved.
5 1.1 pooka *
6 1.1 pooka * Redistribution and use in source and binary forms, with or without
7 1.1 pooka * modification, are permitted provided that the following conditions
8 1.1 pooka * are met:
9 1.1 pooka * 1. Redistributions of source code must retain the above copyright
10 1.1 pooka * notice, this list of conditions and the following disclaimer.
11 1.1 pooka * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 pooka * notice, this list of conditions and the following disclaimer in the
13 1.1 pooka * documentation and/or other materials provided with the distribution.
14 1.1 pooka *
15 1.1 pooka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
16 1.1 pooka * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 1.1 pooka * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 1.1 pooka * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 1.1 pooka * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 1.1 pooka * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21 1.1 pooka * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 1.1 pooka * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 1.1 pooka * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 1.1 pooka * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 1.1 pooka * SUCH DAMAGE.
26 1.1 pooka */
27 1.1 pooka
28 1.1 pooka /*
29 1.1 pooka * copypaste from draft-ietf-secsh-filexfer-03.txt
30 1.1 pooka *
31 1.1 pooka * XXX: we only implement protocol version 03. We should *definitely*
32 1.1 pooka * support a later version, since it maps to the vnode interface much
33 1.1 pooka * better. the problem is that most sftp servers only implement v3
34 1.1 pooka * and I don't currently have the energy to deal with compat-fuddling
35 1.1 pooka * in the code.
36 1.1 pooka */
37 1.1 pooka
38 1.1 pooka #ifndef PSSHFS_SFTPPROTO_H_
39 1.1 pooka #define PSSHFS_SFTPPROTO_H_
40 1.1 pooka
41 1.1 pooka /* 3 General Packet Format */
42 1.1 pooka
43 1.1 pooka #define SSH_FXP_INIT 1
44 1.1 pooka #define SSH_FXP_VERSION 2
45 1.1 pooka #define SSH_FXP_OPEN 3
46 1.1 pooka #define SSH_FXP_CLOSE 4
47 1.1 pooka #define SSH_FXP_READ 5
48 1.1 pooka #define SSH_FXP_WRITE 6
49 1.1 pooka #define SSH_FXP_LSTAT 7
50 1.1 pooka #define SSH_FXP_FSTAT 8
51 1.1 pooka #define SSH_FXP_SETSTAT 9
52 1.1 pooka #define SSH_FXP_FSETSTAT 10
53 1.1 pooka #define SSH_FXP_OPENDIR 11
54 1.1 pooka #define SSH_FXP_READDIR 12
55 1.1 pooka #define SSH_FXP_REMOVE 13
56 1.1 pooka #define SSH_FXP_MKDIR 14
57 1.1 pooka #define SSH_FXP_RMDIR 15
58 1.1 pooka #define SSH_FXP_REALPATH 16
59 1.1 pooka #define SSH_FXP_STAT 17
60 1.1 pooka #define SSH_FXP_RENAME 18
61 1.1 pooka #define SSH_FXP_READLINK 19
62 1.1 pooka #define SSH_FXP_SYMLINK 20
63 1.1 pooka
64 1.1 pooka #define SSH_FXP_STATUS 101
65 1.1 pooka #define SSH_FXP_HANDLE 102
66 1.1 pooka #define SSH_FXP_DATA 103
67 1.1 pooka #define SSH_FXP_NAME 104
68 1.1 pooka #define SSH_FXP_ATTRS 105
69 1.1 pooka
70 1.1 pooka #define SSH_FXP_EXTENDED 200
71 1.1 pooka #define SSH_FXP_EXTENDED_REPLY 201
72 1.1 pooka
73 1.1 pooka /* 5.1 Flags */
74 1.1 pooka
75 1.1 pooka /* XXX: UIDGID is obsoleted *AND NOT VALID* for version 3 of the protocol */
76 1.1 pooka #define SSH_FILEXFER_ATTR_SIZE 0x00000001
77 1.1 pooka #define SSH_FILEXFER_ATTR_UIDGID 0x00000002
78 1.1 pooka #define SSH_FILEXFER_ATTR_PERMISSIONS 0x00000004
79 1.1 pooka #define SSH_FILEXFER_ATTR_ACCESSTIME 0x00000008
80 1.1 pooka #define SSH_FILEXFER_ATTR_CREATETIME 0x00000010
81 1.1 pooka #define SSH_FILEXFER_ATTR_MODIFYTIME 0x00000020
82 1.1 pooka #define SSH_FILEXFER_ATTR_ACL 0x00000040
83 1.1 pooka #define SSH_FILEXFER_ATTR_OWNERGROUP 0x00000080
84 1.1 pooka #define SSH_FILEXFER_ATTR_EXTENDED 0x80000000
85 1.1 pooka
86 1.1 pooka /* 5.2 Type */
87 1.1 pooka
88 1.1 pooka #define SSH_FILEXFER_TYPE_REGULAR 1
89 1.1 pooka #define SSH_FILEXFER_TYPE_DIRECTORY 2
90 1.1 pooka #define SSH_FILEXFER_TYPE_SYMLINK 3
91 1.1 pooka #define SSH_FILEXFER_TYPE_SPECIAL 4
92 1.1 pooka #define SSH_FILEXFER_TYPE_UNKNOWN 5
93 1.1 pooka
94 1.1 pooka
95 1.1 pooka /* 6.3 Opening, Creating, and Closing Files */
96 1.1 pooka
97 1.1 pooka #define SSH_FXF_READ 0x00000001
98 1.1 pooka #define SSH_FXF_WRITE 0x00000002
99 1.1 pooka #define SSH_FXF_APPEND 0x00000004
100 1.1 pooka #define SSH_FXF_CREAT 0x00000008
101 1.1 pooka #define SSH_FXF_TRUNC 0x00000010
102 1.1 pooka #define SSH_FXF_EXCL 0x00000020
103 1.1 pooka #define SSH_FXF_TEXT 0x00000040
104 1.1 pooka
105 1.1 pooka
106 1.1 pooka /* 7. Responses from the Server to the Client */
107 1.1 pooka
108 1.1 pooka #define SSH_FX_OK 0
109 1.1 pooka #define SSH_FX_EOF 1
110 1.1 pooka #define SSH_FX_NO_SUCH_FILE 2
111 1.1 pooka #define SSH_FX_PERMISSION_DENIED 3
112 1.1 pooka #define SSH_FX_FAILURE 4
113 1.1 pooka #define SSH_FX_BAD_MESSAGE 5
114 1.1 pooka #define SSH_FX_NO_CONNECTION 6
115 1.1 pooka #define SSH_FX_CONNECTION_LOST 7
116 1.1 pooka #define SSH_FX_OP_UNSUPPORTED 8
117 1.1 pooka #define SSH_FX_INVALID_HANDLE 9
118 1.1 pooka #define SSH_FX_NO_SUCH_PATH 10
119 1.1 pooka #define SSH_FX_FILE_ALREADY_EXISTS 11
120 1.1 pooka #define SSH_FX_WRITE_PROTECT 12
121 1.1 pooka
122 1.1 pooka #endif /* PSSHFS_SFTPPROTO_H_ */
123