blob: 88bf51bc6cfa1dd0e93a7bb51aba9737b7944a34 [file] [log] [blame]
Damien Miller0600c702013-11-21 13:55:43 +11001/* $OpenBSD: sftp-common.c,v 1.25 2013/11/08 11:15:19 dtucker Exp $ */
Damien Miller33804262001-02-04 23:20:18 +11002/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 * Copyright (c) 2001 Damien Miller. All rights reserved.
5 *
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#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110028
29#include <sys/types.h>
30#include <sys/stat.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100031#include <sys/param.h>
Damien Miller33804262001-02-04 23:20:18 +110032
Damien Miller427a1d52006-07-10 20:20:33 +100033#include <grp.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100034#include <pwd.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100035#include <stdio.h>
Damien Miller0600c702013-11-21 13:55:43 +110036#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100037#include <string.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100038#include <time.h>
Damien Millerd7834352006-08-05 12:39:39 +100039#include <stdarg.h>
Darren Tucker096630d2010-01-13 23:00:38 +110040#ifdef HAVE_UTIL_H
Darren Tucker2901e2d2010-01-13 22:44:06 +110041#include <util.h>
Darren Tucker096630d2010-01-13 23:00:38 +110042#endif
Damien Miller427a1d52006-07-10 20:20:33 +100043
Damien Miller33804262001-02-04 23:20:18 +110044#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100045#include "buffer.h"
46#include "log.h"
Damien Miller33804262001-02-04 23:20:18 +110047
48#include "sftp.h"
49#include "sftp-common.h"
50
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000051/* Clear contents of attributes structure */
Damien Miller33804262001-02-04 23:20:18 +110052void
53attrib_clear(Attrib *a)
54{
55 a->flags = 0;
56 a->size = 0;
57 a->uid = 0;
58 a->gid = 0;
59 a->perm = 0;
60 a->atime = 0;
61 a->mtime = 0;
62}
63
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000064/* Convert from struct stat to filexfer attribs */
Damien Miller33804262001-02-04 23:20:18 +110065void
Damien Millerf58b58c2003-11-17 21:18:23 +110066stat_to_attrib(const struct stat *st, Attrib *a)
Damien Miller33804262001-02-04 23:20:18 +110067{
68 attrib_clear(a);
69 a->flags = 0;
70 a->flags |= SSH2_FILEXFER_ATTR_SIZE;
71 a->size = st->st_size;
72 a->flags |= SSH2_FILEXFER_ATTR_UIDGID;
73 a->uid = st->st_uid;
74 a->gid = st->st_gid;
75 a->flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
76 a->perm = st->st_mode;
77 a->flags |= SSH2_FILEXFER_ATTR_ACMODTIME;
78 a->atime = st->st_atime;
79 a->mtime = st->st_mtime;
80}
81
Damien Millere1a49812002-09-12 09:54:25 +100082/* Convert from filexfer attribs to struct stat */
83void
Damien Millerf58b58c2003-11-17 21:18:23 +110084attrib_to_stat(const Attrib *a, struct stat *st)
Damien Millere1a49812002-09-12 09:54:25 +100085{
86 memset(st, 0, sizeof(*st));
87
88 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
89 st->st_size = a->size;
90 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
91 st->st_uid = a->uid;
92 st->st_gid = a->gid;
93 }
94 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
95 st->st_mode = a->perm;
96 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
97 st->st_atime = a->atime;
98 st->st_mtime = a->mtime;
99 }
100}
101
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000102/* Decode attributes in buffer */
Damien Miller33804262001-02-04 23:20:18 +1100103Attrib *
104decode_attrib(Buffer *b)
105{
106 static Attrib a;
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000107
Damien Miller33804262001-02-04 23:20:18 +1100108 attrib_clear(&a);
109 a.flags = buffer_get_int(b);
110 if (a.flags & SSH2_FILEXFER_ATTR_SIZE)
111 a.size = buffer_get_int64(b);
112 if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
113 a.uid = buffer_get_int(b);
114 a.gid = buffer_get_int(b);
115 }
116 if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
117 a.perm = buffer_get_int(b);
118 if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
119 a.atime = buffer_get_int(b);
120 a.mtime = buffer_get_int(b);
121 }
122 /* vendor-specific extensions */
123 if (a.flags & SSH2_FILEXFER_ATTR_EXTENDED) {
124 char *type, *data;
125 int i, count;
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000126
Damien Miller33804262001-02-04 23:20:18 +1100127 count = buffer_get_int(b);
128 for (i = 0; i < count; i++) {
129 type = buffer_get_string(b, NULL);
130 data = buffer_get_string(b, NULL);
131 debug3("Got file attribute \"%s\"", type);
Darren Tuckera627d422013-06-02 07:31:17 +1000132 free(type);
133 free(data);
Damien Miller33804262001-02-04 23:20:18 +1100134 }
135 }
136 return &a;
137}
138
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000139/* Encode attributes to buffer */
Damien Miller33804262001-02-04 23:20:18 +1100140void
Damien Millerf58b58c2003-11-17 21:18:23 +1100141encode_attrib(Buffer *b, const Attrib *a)
Damien Miller33804262001-02-04 23:20:18 +1100142{
143 buffer_put_int(b, a->flags);
144 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
145 buffer_put_int64(b, a->size);
146 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
147 buffer_put_int(b, a->uid);
148 buffer_put_int(b, a->gid);
149 }
150 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
151 buffer_put_int(b, a->perm);
152 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
153 buffer_put_int(b, a->atime);
154 buffer_put_int(b, a->mtime);
155 }
156}
157
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000158/* Convert from SSH2_FX_ status to text error message */
Damien Miller33804262001-02-04 23:20:18 +1100159const char *
160fx2txt(int status)
161{
162 switch (status) {
163 case SSH2_FX_OK:
Damien Millerd7686fd2001-02-10 00:40:03 +1100164 return("No error");
Damien Miller33804262001-02-04 23:20:18 +1100165 case SSH2_FX_EOF:
Damien Millerd7686fd2001-02-10 00:40:03 +1100166 return("End of file");
Damien Miller33804262001-02-04 23:20:18 +1100167 case SSH2_FX_NO_SUCH_FILE:
Damien Millerd7686fd2001-02-10 00:40:03 +1100168 return("No such file or directory");
Damien Miller33804262001-02-04 23:20:18 +1100169 case SSH2_FX_PERMISSION_DENIED:
Damien Millerd7686fd2001-02-10 00:40:03 +1100170 return("Permission denied");
Damien Miller33804262001-02-04 23:20:18 +1100171 case SSH2_FX_FAILURE:
172 return("Failure");
173 case SSH2_FX_BAD_MESSAGE:
174 return("Bad message");
175 case SSH2_FX_NO_CONNECTION:
176 return("No connection");
177 case SSH2_FX_CONNECTION_LOST:
178 return("Connection lost");
179 case SSH2_FX_OP_UNSUPPORTED:
180 return("Operation unsupported");
181 default:
182 return("Unknown status");
Ben Lindstromd05487d2001-12-06 17:50:03 +0000183 }
Damien Miller33804262001-02-04 23:20:18 +1100184 /* NOTREACHED */
185}
Damien Millere1a49812002-09-12 09:54:25 +1000186
187/*
188 * drwxr-xr-x 5 markus markus 1024 Jan 13 18:39 .ssh
189 */
190char *
Darren Tucker2901e2d2010-01-13 22:44:06 +1100191ls_file(const char *name, const struct stat *st, int remote, int si_units)
Damien Millere1a49812002-09-12 09:54:25 +1000192{
193 int ulen, glen, sz = 0;
Damien Millere1a49812002-09-12 09:54:25 +1000194 struct tm *ltime = localtime(&st->st_mtime);
195 char *user, *group;
196 char buf[1024], mode[11+1], tbuf[12+1], ubuf[11+1], gbuf[11+1];
Darren Tucker2901e2d2010-01-13 22:44:06 +1100197 char sbuf[FMT_SCALED_STRSIZE];
Damien Millere1a49812002-09-12 09:54:25 +1000198
199 strmode(st->st_mode, mode);
Darren Tuckera788de22010-01-15 11:45:33 +1100200 if (!remote) {
201 user = user_from_uid(st->st_uid, 0);
Damien Millere1a49812002-09-12 09:54:25 +1000202 } else {
203 snprintf(ubuf, sizeof ubuf, "%u", (u_int)st->st_uid);
204 user = ubuf;
205 }
Darren Tuckera788de22010-01-15 11:45:33 +1100206 if (!remote) {
207 group = group_from_gid(st->st_gid, 0);
Damien Millere1a49812002-09-12 09:54:25 +1000208 } else {
209 snprintf(gbuf, sizeof gbuf, "%u", (u_int)st->st_gid);
210 group = gbuf;
211 }
212 if (ltime != NULL) {
213 if (time(NULL) - st->st_mtime < (365*24*60*60)/2)
214 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
215 else
216 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
217 }
218 if (sz == 0)
219 tbuf[0] = '\0';
220 ulen = MAX(strlen(user), 8);
221 glen = MAX(strlen(group), 8);
Darren Tucker2901e2d2010-01-13 22:44:06 +1100222 if (si_units) {
223 fmt_scaled((long long)st->st_size, sbuf);
224 snprintf(buf, sizeof buf, "%s %3u %-*s %-*s %8s %s %s", mode,
225 (u_int)st->st_nlink, ulen, user, glen, group,
226 sbuf, tbuf, name);
227 } else {
228 snprintf(buf, sizeof buf, "%s %3u %-*s %-*s %8llu %s %s", mode,
229 (u_int)st->st_nlink, ulen, user, glen, group,
230 (unsigned long long)st->st_size, tbuf, name);
231 }
Damien Millere1a49812002-09-12 09:54:25 +1000232 return xstrdup(buf);
233}