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 250
|
/*
* gensiotools - General tools using gensio
* Copyright (C) 2019 Corey Minyard <minyard@acm.org>
*
* SPDX-License-Identifier: GPL-2.0-only
*
* In addition, as a special exception, the copyright holders of
* gensio give you permission to combine gensio with free software
* programs or libraries that are released under the GNU LGPL and
* with code included in the standard release of OpenSSL under the
* OpenSSL license (or modified versions of such code, with unchanged
* license). You may copy and distribute such a system following the
* terms of the GNU GPL for gensio and the licenses of the other code
* concerned, provided that you include the source code of that
* other code when and as the GNU GPL requires distribution of source
* code.
*
* Note that people who make modified versions of gensio are not
* obligated to grant this special exception for their modified
* versions; it is their choice whether to do so. The GNU General
* Public License gives permission to release a modified version
* without this exception; this exception also makes it possible to
* release a modified version which carries forward this exception.
*/
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include "gtlssh.h"
static int
write_s_nl_addc(struct gensio *io, char *obuf, char c,
gensiods *pos, gensiods len, gensio_time *timeout)
{
int err = 0;
obuf[(*pos)++] = c;
if (*pos >= len) {
err = gensio_write_s(io, NULL, obuf, len, timeout);
*pos = 0;
}
return err;
}
static int
write_s_nl(struct gensio *io, const char *buf, gensiods len,
gensio_time *timeout)
{
char buf2[100];
gensiods i, j;
int err;
for (i = 0, j = 0; i < len; i++) {
if (buf[i] == '\n') {
err = write_s_nl_addc(io, buf2, '\r', &j, sizeof(buf2), timeout);
if (err)
break;
}
err = write_s_nl_addc(io, buf2, buf[i], &j, sizeof(buf2), timeout);
if (err)
break;
}
if (!err && j)
err = gensio_write_s(io, NULL, buf2, j, timeout);
return err;
}
int
checkout_file(const char *filename, bool expect_dir, bool check_private)
{
struct stat sb;
int rv;
rv = stat(filename, &sb);
if (rv == -1) {
fprintf(stderr, "Unable to examine %s: %s\n",
filename, strerror(errno));
return errno;
}
if (sb.st_uid != getuid()) {
fprintf(stderr, "You do not own %s, giving up\n", filename);
return EPERM;
}
if (check_private && sb.st_mode & 077) {
fprintf(stderr, "%s is accessible by others, giving up\n", filename);
return EPERM;
}
if (expect_dir) {
if (!S_ISDIR(sb.st_mode)) {
fprintf(stderr, "%s is not a directory\n", filename);
return EINVAL;
}
} else {
if (!S_ISREG(sb.st_mode)) {
fprintf(stderr, "%s is not a regular file\n", filename);
return EINVAL;
}
}
return 0;
}
bool
file_is_readable(const char *filename)
{
struct stat sb;
int rv;
rv = stat(filename, &sb);
if (rv == -1)
return false;
if (!S_ISREG(sb.st_mode))
return false;
if (sb.st_uid == getuid()) {
if (sb.st_mode & 0400)
return true;
}
if (sb.st_gid == getgid()) {
if (sb.st_mode & 0040)
return true;
}
if (sb.st_mode & 0004)
return true;
return false;
}
int
write_file_to_gensio(const char *filename, struct gensio *io,
struct gensio_os_funcs *o, gensio_time *timeout,
bool xlatnl)
{
int err;
int fd;
char buf[100];
int count;
err = gensio_set_sync(io);
if (err)
return err;
fd = open(filename, O_RDONLY);
if (fd == -1) {
err = gensio_os_err_to_err(o, errno);
goto out_unsync;
}
while (true) {
count = read(fd, buf, sizeof(buf));
if (count == -1) {
err = gensio_os_err_to_err(o, errno);
break;
}
if (count == 0)
break;
if (xlatnl)
err = write_s_nl(io, buf, count, timeout);
else
err = gensio_write_s(io, NULL, buf, count, timeout);
if (err)
break;
}
close(fd);
out_unsync:
gensio_clear_sync(io);
return err;
}
int
write_buf_to_gensio(const char *buf, gensiods len, struct gensio *io,
gensio_time *timeout, bool xlatnl)
{
int err;
err = gensio_set_sync(io);
if (err)
return err;
if (xlatnl)
err = write_s_nl(io, buf, len, timeout);
else
err = gensio_write_s(io, NULL, buf, len, timeout);
gensio_clear_sync(io);
return err;
}
int
write_str_to_gensio(const char *str, struct gensio *io,
gensio_time *timeout, bool xlatnl)
{
return write_buf_to_gensio(str, strlen(str), io, timeout, xlatnl);
}
int
read_rsp_from_gensio(char *buf, gensiods *len, struct gensio *io,
gensio_time *timeout, bool echo)
{
int err;
gensiods pos = 0, count;
gensiods size = *len;
char c;
err = gensio_set_sync(io);
if (err)
return err;
while (true) {
err = gensio_read_s(io, &count, &c, 1, timeout);
if (err)
break;
if (count == 0) {
err = GE_TIMEDOUT;
break;
}
if (c == '\r' || c == '\n')
break;
if (c == '\b' || c == 0x7f) {
if (pos > 0)
pos--;
if (echo)
gensio_write_s(io, NULL, "\b \b", 3, timeout);
continue;
}
if (pos < size - 1) {
buf[pos++] = c;
if (echo)
gensio_write_s(io, NULL, &c, 1, timeout);
}
}
gensio_clear_sync(io);
buf[pos] = '\0';
*len = pos;
return err;
}
|