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 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
/*
* Copyright (c) 2008 Canonical Ltd. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "includes.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <openssl/evp.h>
#include "xmalloc.h"
#include "ssh.h"
#include "log.h"
#include "key.h"
#include "authfile.h"
#include "pathnames.h"
#include "misc.h"
extern char *__progname;
/* Default files to check */
static char *default_host_files[] = {
_PATH_HOST_RSA_KEY_FILE,
_PATH_HOST_DSA_KEY_FILE,
_PATH_HOST_KEY_FILE,
NULL
};
static char *default_files[] = {
_PATH_SSH_CLIENT_ID_RSA,
_PATH_SSH_CLIENT_ID_DSA,
_PATH_SSH_CLIENT_IDENTITY,
_PATH_SSH_USER_PERMITTED_KEYS,
_PATH_SSH_USER_PERMITTED_KEYS2,
NULL
};
static int quiet = 0;
static void
usage(void)
{
fprintf(stderr, "usage: %s [-aq] [file ...]\n", __progname);
fprintf(stderr, "Options:\n");
fprintf(stderr, " -a Check keys of all users.\n");
fprintf(stderr, " -q Quiet mode.\n");
exit(1);
}
void
describe_key(const char *msg, const Key *key, const char *comment)
{
char *fp;
fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
if (!quiet)
printf("%s: %u %s %s\n", msg, key_size(key), fp, comment);
xfree(fp);
}
int
do_key(const Key *key, const char *comment)
{
char *blacklist_file;
struct stat st;
int ret = 1;
blacklist_file = blacklist_filename(key);
if (stat(blacklist_file, &st) < 0)
describe_key("Unknown (no blacklist information)",
key, comment);
else if (blacklisted_key(key)) {
describe_key("COMPROMISED", key, comment);
ret = 0;
} else
describe_key("Not blacklisted", key, comment);
xfree(blacklist_file);
return ret;
}
int
do_filename(const char *filename, int quiet_open)
{
FILE *f;
char line[SSH_MAX_PUBKEY_BYTES];
char *cp;
u_long linenum = 0;
Key *key;
char *comment = NULL;
int found = 0, ret = 1;
/* Copy much of key_load_public's logic here so that we can read
* several keys from a single file (e.g. authorized_keys).
*/
if (strcmp(filename, "-") != 0) {
f = fopen(filename, "r");
if (!f) {
char pubfile[MAXPATHLEN];
if (strlcpy(pubfile, filename, sizeof pubfile) <
sizeof(pubfile) &&
strlcat(pubfile, ".pub", sizeof pubfile) <
sizeof(pubfile))
f = fopen(pubfile, "r");
}
if (!f) {
if (!quiet_open)
perror(filename);
return -1;
}
} else
f = stdin;
while (read_keyfile_line(f, filename, line, sizeof(line),
&linenum) != -1) {
int i;
char *space;
int type;
/* Chop trailing newline. */
i = strlen(line) - 1;
if (line[i] == '\n')
line[i] = '\0';
/* Skip leading whitespace, empty and comment lines. */
for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
;
if (!*cp || *cp == '\n' || *cp == '#')
continue;
/* Cope with ssh-keyscan output and options in
* authorized_keys files.
*/
space = strchr(cp, ' ');
if (!space)
continue;
*space = '\0';
type = key_type_from_name(cp);
*space = ' ';
/* Leading number (RSA1) or valid type (RSA/DSA) indicates
* that we have no host name or options to skip.
*/
if (atoi(cp) == 0 && type == KEY_UNSPEC) {
int quoted = 0;
for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
if (*cp == '\\' && cp[1] == '"')
cp++; /* Skip both */
else if (*cp == '"')
quoted = !quoted;
}
/* Skip remaining whitespace. */
for (; *cp == ' ' || *cp == '\t'; cp++)
;
if (!*cp)
continue;
}
/* Read and process the key itself. */
key = key_new(KEY_RSA1);
if (key_read(key, &cp) == 1) {
while (*cp == ' ' || *cp == '\t')
cp++;
if (!do_key(key, *cp ? cp : filename))
ret = 0;
found = 1;
} else {
key_free(key);
key = key_new(KEY_UNSPEC);
if (key_read(key, &cp) == 1) {
while (*cp == ' ' || *cp == '\t')
cp++;
if (!do_key(key, *cp ? cp : filename))
ret = 0;
found = 1;
}
}
key_free(key);
}
if (f != stdin)
fclose(f);
if (!found && filename) {
key = key_load_public(filename, &comment);
if (key) {
if (!do_key(key, comment))
ret = 0;
found = 1;
}
if (comment)
xfree(comment);
}
return ret;
}
int
do_host(void)
{
int i;
struct stat st;
int ret = 1;
for (i = 0; default_host_files[i]; i++) {
if (stat(default_host_files[i], &st) < 0)
continue;
if (!do_filename(default_host_files[i], 1))
ret = 0;
}
return ret;
}
int
do_user(const char *dir)
{
int i;
char buf[MAXPATHLEN];
struct stat st;
int ret = 1;
for (i = 0; default_files[i]; i++) {
snprintf(buf, sizeof(buf), "%s/%s", dir, default_files[i]);
if (stat(buf, &st) < 0)
continue;
if (!do_filename(buf, 0))
ret = 0;
}
return ret;
}
int
main(int argc, char **argv)
{
int opt, all_users = 0;
int ret = 1;
extern int optind;
/* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
sanitise_stdfd();
__progname = ssh_get_progname(argv[0]);
SSLeay_add_all_algorithms();
log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
/* We don't need the RNG ourselves, but symbol references here allow
* ld to link us properly.
*/
init_rng();
seed_rng();
while ((opt = getopt(argc, argv, "ahq")) != -1) {
switch (opt) {
case 'a':
all_users = 1;
break;
case 'q':
quiet = 1;
break;
case 'h':
default:
usage();
}
}
if (all_users) {
struct passwd *pw;
if (!do_host())
ret = 0;
while ((pw = getpwent()) != NULL) {
if (pw->pw_dir) {
if (!do_user(pw->pw_dir))
ret = 0;
}
}
} else if (optind == argc) {
struct passwd *pw;
if (!do_host())
ret = 0;
if ((pw = getpwuid(getuid())) == NULL)
fprintf(stderr, "No user found with uid %u\n",
(u_int)getuid());
else {
if (!do_user(pw->pw_dir))
ret = 0;
}
} else {
while (optind < argc)
if (!do_filename(argv[optind++], 0))
ret = 0;
}
return ret;
}
|