blob: aed95f2f0086755078af62dcbcf4fb4ca389ba5b [file] [log] [blame]
Damien Miller33804262001-02-04 23:20:18 +11001/*
2 * Copyright (c) 2001 Markus Friedl. All rights reserved.
3 * Copyright (c) 2001 Damien Miller. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000027RCSID("$OpenBSD: sftp-common.c,v 1.3 2001/06/26 17:27:24 markus Exp $");
Damien Miller33804262001-02-04 23:20:18 +110028
29#include "buffer.h"
30#include "bufaux.h"
31#include "getput.h"
32#include "log.h"
33#include "xmalloc.h"
34
35#include "sftp.h"
36#include "sftp-common.h"
37
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000038/* Clear contents of attributes structure */
Damien Miller33804262001-02-04 23:20:18 +110039void
40attrib_clear(Attrib *a)
41{
42 a->flags = 0;
43 a->size = 0;
44 a->uid = 0;
45 a->gid = 0;
46 a->perm = 0;
47 a->atime = 0;
48 a->mtime = 0;
49}
50
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000051/* Convert from struct stat to filexfer attribs */
Damien Miller33804262001-02-04 23:20:18 +110052void
53stat_to_attrib(struct stat *st, Attrib *a)
54{
55 attrib_clear(a);
56 a->flags = 0;
57 a->flags |= SSH2_FILEXFER_ATTR_SIZE;
58 a->size = st->st_size;
59 a->flags |= SSH2_FILEXFER_ATTR_UIDGID;
60 a->uid = st->st_uid;
61 a->gid = st->st_gid;
62 a->flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
63 a->perm = st->st_mode;
64 a->flags |= SSH2_FILEXFER_ATTR_ACMODTIME;
65 a->atime = st->st_atime;
66 a->mtime = st->st_mtime;
67}
68
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000069/* Decode attributes in buffer */
Damien Miller33804262001-02-04 23:20:18 +110070Attrib *
71decode_attrib(Buffer *b)
72{
73 static Attrib a;
74 attrib_clear(&a);
75 a.flags = buffer_get_int(b);
76 if (a.flags & SSH2_FILEXFER_ATTR_SIZE)
77 a.size = buffer_get_int64(b);
78 if (a.flags & SSH2_FILEXFER_ATTR_UIDGID) {
79 a.uid = buffer_get_int(b);
80 a.gid = buffer_get_int(b);
81 }
82 if (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
83 a.perm = buffer_get_int(b);
84 if (a.flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
85 a.atime = buffer_get_int(b);
86 a.mtime = buffer_get_int(b);
87 }
88 /* vendor-specific extensions */
89 if (a.flags & SSH2_FILEXFER_ATTR_EXTENDED) {
90 char *type, *data;
91 int i, count;
92 count = buffer_get_int(b);
93 for (i = 0; i < count; i++) {
94 type = buffer_get_string(b, NULL);
95 data = buffer_get_string(b, NULL);
96 debug3("Got file attribute \"%s\"", type);
97 xfree(type);
98 xfree(data);
99 }
100 }
101 return &a;
102}
103
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000104/* Encode attributes to buffer */
Damien Miller33804262001-02-04 23:20:18 +1100105void
106encode_attrib(Buffer *b, Attrib *a)
107{
108 buffer_put_int(b, a->flags);
109 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
110 buffer_put_int64(b, a->size);
111 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
112 buffer_put_int(b, a->uid);
113 buffer_put_int(b, a->gid);
114 }
115 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
116 buffer_put_int(b, a->perm);
117 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
118 buffer_put_int(b, a->atime);
119 buffer_put_int(b, a->mtime);
120 }
121}
122
Ben Lindstrom4cc240d2001-07-04 04:46:56 +0000123/* Convert from SSH2_FX_ status to text error message */
Damien Miller33804262001-02-04 23:20:18 +1100124const char *
125fx2txt(int status)
126{
127 switch (status) {
128 case SSH2_FX_OK:
Damien Millerd7686fd2001-02-10 00:40:03 +1100129 return("No error");
Damien Miller33804262001-02-04 23:20:18 +1100130 case SSH2_FX_EOF:
Damien Millerd7686fd2001-02-10 00:40:03 +1100131 return("End of file");
Damien Miller33804262001-02-04 23:20:18 +1100132 case SSH2_FX_NO_SUCH_FILE:
Damien Millerd7686fd2001-02-10 00:40:03 +1100133 return("No such file or directory");
Damien Miller33804262001-02-04 23:20:18 +1100134 case SSH2_FX_PERMISSION_DENIED:
Damien Millerd7686fd2001-02-10 00:40:03 +1100135 return("Permission denied");
Damien Miller33804262001-02-04 23:20:18 +1100136 case SSH2_FX_FAILURE:
137 return("Failure");
138 case SSH2_FX_BAD_MESSAGE:
139 return("Bad message");
140 case SSH2_FX_NO_CONNECTION:
141 return("No connection");
142 case SSH2_FX_CONNECTION_LOST:
143 return("Connection lost");
144 case SSH2_FX_OP_UNSUPPORTED:
145 return("Operation unsupported");
146 default:
147 return("Unknown status");
148 };
149 /* NOTREACHED */
150}