-
Notifications
You must be signed in to change notification settings - Fork 18
/
v6.c
249 lines (236 loc) · 7.97 KB
/
v6.c
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
/*
* This file is part of the Green End SFTP Server.
* Copyright (C) 2007, 2016 Richard Kettlewell
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#include "sftpserver.h"
#include "types.h"
#include "sftp.h"
#include "alloc.h"
#include "stat.h"
#include "parse.h"
#include "send.h"
#include "debug.h"
#include "utils.h"
#include "globals.h"
#include "queue.h"
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
uint32_t sftp_v6_realpath(struct sftpjob *job) {
char *path, *compose, *resolvedpath;
uint8_t control_byte = SSH_FXP_REALPATH_NO_CHECK;
unsigned rpflags = 0;
struct stat sb;
struct sftpattr attrs;
pcheck(sftp_parse_path(job, &path));
if(job->left) {
pcheck(sftp_parse_uint8(job, &control_byte));
while(job->left) {
pcheck(sftp_parse_path(job, &compose));
if(compose[0] == '/')
path = compose;
else {
char *newpath = sftp_alloc(job->a, strlen(path) + strlen(compose) + 2);
strcpy(newpath, path);
strcat(newpath, "/");
strcat(newpath, compose);
path = newpath;
}
}
}
D(("sftp_v6_realpath %s %#x", path, control_byte));
switch(control_byte) {
case SSH_FXP_REALPATH_NO_CHECK:
/* Don't follow links and don't fail if the path doesn't exist */
rpflags = 0;
break;
case SSH_FXP_REALPATH_STAT_IF:
/* Follow links but don't fail if the path doesn't exist */
rpflags = RP_READLINK;
break;
case SSH_FXP_REALPATH_STAT_ALWAYS:
/* Follow links and fail if the path doesn't exist */
rpflags = RP_READLINK | RP_MUST_EXIST;
break;
default:
return SSH_FX_BAD_MESSAGE;
}
if(!(resolvedpath = sftp_find_realpath(job->a, path, rpflags)))
return HANDLER_ERRNO;
D(("...real path is %s", resolvedpath));
switch(control_byte) {
case SSH_FXP_REALPATH_NO_CHECK:
/* Don't stat, send dummy attributes */
sftp_memset(&attrs, 0, sizeof attrs);
attrs.name = resolvedpath;
break;
case SSH_FXP_REALPATH_STAT_IF:
/* stat as hard as we can but accept failure if it's just not there */
if(stat(resolvedpath, &sb) >= 0 || lstat(resolvedpath, &sb) >= 0)
sftp_stat_to_attrs(job->a, &sb, &attrs, 0xFFFFFFFF, resolvedpath);
else {
sftp_memset(&attrs, 0, sizeof attrs);
attrs.name = resolvedpath;
}
break;
case SSH_FXP_REALPATH_STAT_ALWAYS:
/* stat and error on failure */
if(stat(resolvedpath, &sb) >= 0 || lstat(resolvedpath, &sb) >= 0)
sftp_stat_to_attrs(job->a, &sb, &attrs, 0xFFFFFFFF, resolvedpath);
else
/* Can only happen if path is deleted between realpath call and stat */
return HANDLER_ERRNO;
break;
}
sftp_send_begin(job->worker);
sftp_send_uint8(job->worker, SSH_FXP_NAME);
sftp_send_uint32(job->worker, job->id);
protocol->sendnames(job, 1, &attrs);
sftp_send_end(job->worker);
return HANDLER_RESPONDED;
}
uint32_t sftp_v6_link(struct sftpjob *job) {
char *oldpath, *newlinkpath;
uint8_t symbolic;
struct stat sb;
/* See also comment in v3.c for SSH_FXP_SYMLINK */
if(readonly)
return SSH_FX_PERMISSION_DENIED;
pcheck(sftp_parse_path(job, &newlinkpath));
pcheck(
sftp_parse_string(job, &oldpath, 0)); /* aka existing-path/target-paths */
pcheck(sftp_parse_uint8(job, &symbolic));
D(("sftp_link %s %s [%s]", oldpath, newlinkpath,
symbolic ? "symbolic" : "hard"));
if(symbolic && strlen(oldpath) == 0) {
/* Empty paths are supposed to refer to the default directory. For a
* symbolic link target this could mean "." or it could mean the full path
* to it. Rather than make a decision we reject this case. */
D(("sftp_v6_link rejecting empty oldpath"));
sftp_send_status(job, SSH_FX_FAILURE, "link target too short");
return HANDLER_RESPONDED;
}
pcheck(protocol->decode(job, &oldpath));
if((symbolic ? symlink : link)(oldpath, newlinkpath) < 0) {
switch(errno) {
case EPERM:
if(!symbolic && stat(oldpath, &sb) >= 0 && S_ISDIR(sb.st_mode))
/* Can't hard-link directories */
return SSH_FX_FILE_IS_A_DIRECTORY;
else
/* e.g. Linux returns EPERM for symlink or link on a FAT32 fs */
return SSH_FX_OP_UNSUPPORTED;
break;
default:
return HANDLER_ERRNO;
}
} else
return SSH_FX_OK;
}
uint32_t sftp_v6_version_select(struct sftpjob *job) {
char *newversion;
/* If we've already created the work queue then this can't be the first
* message. */
if(!workqueue) {
pcheck(sftp_parse_path(job, &newversion));
/* Handle known versions */
if(!strcmp(newversion, "3")) {
protocol = &sftp_v3;
return SSH_FX_OK;
}
if(!strcmp(newversion, "4")) {
protocol = &sftp_v4;
return SSH_FX_OK;
}
if(!strcmp(newversion, "5")) {
protocol = &sftp_v5;
return SSH_FX_OK;
}
if(!strcmp(newversion, "6")) {
protocol = &sftp_v6;
return SSH_FX_OK;
}
sftp_send_status(job, SSH_FX_INVALID_PARAMETER, "unknown version");
} else
sftp_send_status(job, SSH_FX_INVALID_PARAMETER,
"badly timed version-select");
/* We MUST close the channel. (-13, s5.5). */
sftp_state_set(sftp_state_stop);
return HANDLER_RESPONDED; /* even though we sent nothing */
}
static const struct sftpcmd sftpv6tab[] = {
{SSH_FXP_INIT, sftp_vany_already_init},
{SSH_FXP_OPEN, sftp_v56_open},
{SSH_FXP_CLOSE, sftp_vany_close},
{SSH_FXP_READ, sftp_vany_read},
{SSH_FXP_WRITE, sftp_vany_write},
{SSH_FXP_LSTAT, sftp_v456_lstat},
{SSH_FXP_FSTAT, sftp_v456_fstat},
{SSH_FXP_SETSTAT, sftp_vany_setstat},
{SSH_FXP_FSETSTAT, sftp_vany_fsetstat},
{SSH_FXP_OPENDIR, sftp_vany_opendir},
{SSH_FXP_READDIR, sftp_vany_readdir},
{SSH_FXP_REMOVE, sftp_vany_remove},
{SSH_FXP_MKDIR, sftp_vany_mkdir},
{SSH_FXP_RMDIR, sftp_vany_rmdir},
{SSH_FXP_REALPATH, sftp_v6_realpath},
{SSH_FXP_STAT, sftp_v456_stat},
{SSH_FXP_RENAME, sftp_v56_rename},
{SSH_FXP_READLINK, sftp_vany_readlink},
{SSH_FXP_LINK, sftp_v6_link},
{SSH_FXP_EXTENDED, sftp_vany_extended}};
/* TODO: file locking */
static const struct sftpextension sftp_v6_extensions[] = {
{"[email protected]", "1", sftp_vany_fsync},
{"[email protected]", "1", sftp_vany_hardlink},
{"[email protected]", "1", sftp_vany_posix_rename},
{"[email protected]", "", sftp_vany_posix_rename},
{"space-available", "", sftp_vany_space_available},
{"[email protected]", "", sftp_vany_statfs},
{"text-seek", "", sftp_vany_text_seek},
{"version-select", "", sftp_v6_version_select},
{"[email protected]", "2", sftp_vany_statvfs},
{"[email protected]", "2", sftp_vany_fstatvfs},
};
const struct sftpprotocol sftp_v6 = {
sizeof sftpv6tab / sizeof(struct sftpcmd),
sftpv6tab,
6,
(SSH_FILEXFER_ATTR_SIZE | SSH_FILEXFER_ATTR_PERMISSIONS |
SSH_FILEXFER_ATTR_ACCESSTIME | SSH_FILEXFER_ATTR_CTIME |
SSH_FILEXFER_ATTR_MODIFYTIME | SSH_FILEXFER_ATTR_OWNERGROUP |
SSH_FILEXFER_ATTR_SUBSECOND_TIMES | SSH_FILEXFER_ATTR_BITS |
SSH_FILEXFER_ATTR_LINK_COUNT),
SSH_FX_NO_MATCHING_BYTE_RANGE_LOCK,
sftp_v456_sendnames,
sftp_v456_sendattrs,
sftp_v456_parseattrs,
sftp_v456_encode,
sftp_v456_decode,
sizeof sftp_v6_extensions / sizeof(struct sftpextension),
sftp_v6_extensions,
};
/*
Local Variables:
c-basic-offset:2
comment-column:40
fill-column:79
indent-tabs-mode:nil
End:
*/