blob: d015d7549daefc259ed4eed18cc76b25e7d45a5e [file] [log] [blame]
Darren Tuckera788de22010-01-15 11:45:33 +11001/* $OpenBSD: sftp-common.c,v 1.22 2010/01/14 23:41:49 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 Millere3476ed2006-07-24 14:13:33 +100036#include <string.h>
Damien Miller5598b4f2006-07-24 14:09:40 +100037#include <time.h>
Damien Millerd7834352006-08-05 12:39:39 +100038#include <stdarg.h>
Darren Tucker096630d2010-01-13 23:00:38 +110039#ifdef HAVE_UTIL_H
Darren Tucker2901e2d2010-01-13 22:44:06 +110040#include <util.h>
Darren Tucker096630d2010-01-13 23:00:38 +110041#endif
Damien Miller427a1d52006-07-10 20:20:33 +100042
Damien Miller33804262001-02-04 23:20:18 +110043#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100044#include "buffer.h"
45#include "log.h"
Damien Miller33804262001-02-04 23:20:18 +110046
47#include "sftp.h"
48#include "sftp-common.h"
49
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000050/* Clear contents of attributes structure */
Damien Miller33804262001-02-04 23:20:18 +110051void
52attrib_clear(Attrib *a)
53{
54 a->flags = 0;
55 a->size = 0;
56 a->uid = 0;
57 a->gid = 0;
58 a->perm = 0;
59 a->atime = 0;
60 a->mtime = 0;
61}
62
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000063/* Convert from struct stat to filexfer attribs */
Damien Miller33804262001-02-04 23:20:18 +110064void
Damien Millerf58b58c2003-11-17 21:18:23 +110065stat_to_attrib(const struct stat *st, Attrib *a)
Damien Miller33804262001-02-04 23:20:18 +110066{
67 attrib_clear(a);
68 a->flags = 0;
69 a->flags |= SSH2_FILEXFER_ATTR_SIZE;
70 a->size = st->st_size;
71 a->flags |= SSH2_FILEXFER_ATTR_UIDGID;
72 a->uid = st->st_uid;
73 a->gid = st->st_gid;
74 a->flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
75 a->perm = st->st_mode;
76 a->flags |= SSH2_FILEXFER_ATTR_ACMODTIME;
77 a->atime = st->st_atime;
78 a->mtime = st->st_mtime;
79}
80
Damien Millere1a49812002-09-12 09:54:25 +100081/* Convert from filexfer attribs to struct stat */
82void
Damien Millerf58b58c2003-11-17 21:18:23 +110083attrib_to_stat(const Attrib *a, struct stat *st)
Damien Millere1a49812002-09-12 09:54:25 +100084{
85 memset(st, 0, sizeof(*st));
86
87 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
88 st->st_size = a->size;
89 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
90 st->st_uid = a->uid;
91 st->st_gid = a->gid;
92 }
93 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
94 st->st_mode = a->perm;
95 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
96 st->st_atime = a->atime;
97 st->st_mtime = a->mtime;
98 }
99}
100
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000101/* Decode attributes in buffer */
Damien Miller33804262001-02-04 23:20:18 +1100102Attrib *
103decode_attrib(Buffer *b)
104{
105 static Attrib a;
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000106
Damien Miller33804262001-02-04 23:20:18 +1100107 attrib_clear(&a);
108 a.flags = buffer_get_int(b);
109 if (a.flags & SSH2_FILEXFER_ATTR_SIZE)
110 a.size = buffer_get_int64(b);
111 if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
112 a.uid = buffer_get_int(b);
113 a.gid = buffer_get_int(b);
114 }
115 if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
116 a.perm = buffer_get_int(b);
117 if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
118 a.atime = buffer_get_int(b);
119 a.mtime = buffer_get_int(b);
120 }
121 /* vendor-specific extensions */
122 if (a.flags & SSH2_FILEXFER_ATTR_EXTENDED) {
123 char *type, *data;
124 int i, count;
Ben Lindstromb1f483f2002-06-23 21:27:18 +0000125
Damien Miller33804262001-02-04 23:20:18 +1100126 count = buffer_get_int(b);
127 for (i = 0; i < count; i++) {
128 type = buffer_get_string(b, NULL);
129 data = buffer_get_string(b, NULL);
130 debug3("Got file attribute \"%s\"", type);
131 xfree(type);
132 xfree(data);
133 }
134 }
135 return &a;
136}
137
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000138/* Encode attributes to buffer */
Damien Miller33804262001-02-04 23:20:18 +1100139void
Damien Millerf58b58c2003-11-17 21:18:23 +1100140encode_attrib(Buffer *b, const Attrib *a)
Damien Miller33804262001-02-04 23:20:18 +1100141{
142 buffer_put_int(b, a->flags);
143 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
144 buffer_put_int64(b, a->size);
145 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
146 buffer_put_int(b, a->uid);
147 buffer_put_int(b, a->gid);
148 }
149 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
150 buffer_put_int(b, a->perm);
151 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
152 buffer_put_int(b, a->atime);
153 buffer_put_int(b, a->mtime);
154 }
155}
156
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000157/* Convert from SSH2_FX_ status to text error message */
Damien Miller33804262001-02-04 23:20:18 +1100158const char *
159fx2txt(int status)
160{
161 switch (status) {
162 case SSH2_FX_OK:
Damien Millerd7686fd2001-02-10 00:40:03 +1100163 return("No error");
Damien Miller33804262001-02-04 23:20:18 +1100164 case SSH2_FX_EOF:
Damien Millerd7686fd2001-02-10 00:40:03 +1100165 return("End of file");
Damien Miller33804262001-02-04 23:20:18 +1100166 case SSH2_FX_NO_SUCH_FILE:
Damien Millerd7686fd2001-02-10 00:40:03 +1100167 return("No such file or directory");
Damien Miller33804262001-02-04 23:20:18 +1100168 case SSH2_FX_PERMISSION_DENIED:
Damien Millerd7686fd2001-02-10 00:40:03 +1100169 return("Permission denied");
Damien Miller33804262001-02-04 23:20:18 +1100170 case SSH2_FX_FAILURE:
171 return("Failure");
172 case SSH2_FX_BAD_MESSAGE:
173 return("Bad message");
174 case SSH2_FX_NO_CONNECTION:
175 return("No connection");
176 case SSH2_FX_CONNECTION_LOST:
177 return("Connection lost");
178 case SSH2_FX_OP_UNSUPPORTED:
179 return("Operation unsupported");
180 default:
181 return("Unknown status");
Ben Lindstromd05487d2001-12-06 17:50:03 +0000182 }
Damien Miller33804262001-02-04 23:20:18 +1100183 /* NOTREACHED */
184}
Damien Millere1a49812002-09-12 09:54:25 +1000185
186/*
187 * drwxr-xr-x 5 markus markus 1024 Jan 13 18:39 .ssh
188 */
189char *
Darren Tucker2901e2d2010-01-13 22:44:06 +1100190ls_file(const char *name, const struct stat *st, int remote, int si_units)
Damien Millere1a49812002-09-12 09:54:25 +1000191{
192 int ulen, glen, sz = 0;
193 struct passwd *pw;
194 struct group *gr;
195 struct tm *ltime = localtime(&st->st_mtime);
196 char *user, *group;
197 char buf[1024], mode[11+1], tbuf[12+1], ubuf[11+1], gbuf[11+1];
Darren Tucker2901e2d2010-01-13 22:44:06 +1100198 char sbuf[FMT_SCALED_STRSIZE];
Damien Millere1a49812002-09-12 09:54:25 +1000199
200 strmode(st->st_mode, mode);
Darren Tuckera788de22010-01-15 11:45:33 +1100201 if (!remote) {
202 user = user_from_uid(st->st_uid, 0);
Damien Millere1a49812002-09-12 09:54:25 +1000203 } else {
204 snprintf(ubuf, sizeof ubuf, "%u", (u_int)st->st_uid);
205 user = ubuf;
206 }
Darren Tuckera788de22010-01-15 11:45:33 +1100207 if (!remote) {
208 group = group_from_gid(st->st_gid, 0);
Damien Millere1a49812002-09-12 09:54:25 +1000209 } else {
210 snprintf(gbuf, sizeof gbuf, "%u", (u_int)st->st_gid);
211 group = gbuf;
212 }
213 if (ltime != NULL) {
214 if (time(NULL) - st->st_mtime < (365*24*60*60)/2)
215 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
216 else
217 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
218 }
219 if (sz == 0)
220 tbuf[0] = '\0';
221 ulen = MAX(strlen(user), 8);
222 glen = MAX(strlen(group), 8);
Darren Tucker2901e2d2010-01-13 22:44:06 +1100223 if (si_units) {
224 fmt_scaled((long long)st->st_size, sbuf);
225 snprintf(buf, sizeof buf, "%s %3u %-*s %-*s %8s %s %s", mode,
226 (u_int)st->st_nlink, ulen, user, glen, group,
227 sbuf, tbuf, name);
228 } else {
229 snprintf(buf, sizeof buf, "%s %3u %-*s %-*s %8llu %s %s", mode,
230 (u_int)st->st_nlink, ulen, user, glen, group,
231 (unsigned long long)st->st_size, tbuf, name);
232 }
Damien Millere1a49812002-09-12 09:54:25 +1000233 return xstrdup(buf);
234}