2015-01-15 09:40:00 +00:00
|
|
|
/* $OpenBSD: hostfile.h,v 1.21 2015/01/15 09:40:00 djm Exp $ */
|
2001-01-29 07:39:26 +00:00
|
|
|
|
2000-09-16 02:29:08 +00:00
|
|
|
/*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*/
|
2000-03-26 03:04:51 +00:00
|
|
|
#ifndef HOSTFILE_H
|
|
|
|
#define HOSTFILE_H
|
|
|
|
|
|
|
|
typedef enum {
|
2010-03-04 10:53:35 +00:00
|
|
|
HOST_OK, HOST_NEW, HOST_CHANGED, HOST_REVOKED, HOST_FOUND
|
2000-03-26 03:04:51 +00:00
|
|
|
} HostStatus;
|
2000-12-22 01:43:59 +00:00
|
|
|
|
2010-12-01 01:21:51 +00:00
|
|
|
typedef enum {
|
|
|
|
MRK_ERROR, MRK_NONE, MRK_REVOKE, MRK_CA
|
|
|
|
} HostkeyMarker;
|
|
|
|
|
|
|
|
struct hostkey_entry {
|
|
|
|
char *host;
|
|
|
|
char *file;
|
|
|
|
u_long line;
|
2015-01-15 09:40:00 +00:00
|
|
|
struct sshkey *key;
|
2010-12-01 01:21:51 +00:00
|
|
|
HostkeyMarker marker;
|
|
|
|
};
|
|
|
|
struct hostkeys;
|
|
|
|
|
|
|
|
struct hostkeys *init_hostkeys(void);
|
|
|
|
void load_hostkeys(struct hostkeys *, const char *, const char *);
|
|
|
|
void free_hostkeys(struct hostkeys *);
|
|
|
|
|
2015-01-15 09:40:00 +00:00
|
|
|
HostStatus check_key_in_hostkeys(struct hostkeys *, struct sshkey *,
|
2010-12-01 01:21:51 +00:00
|
|
|
const struct hostkey_entry **);
|
|
|
|
int lookup_key_in_hostkeys_by_type(struct hostkeys *, int,
|
|
|
|
const struct hostkey_entry **);
|
|
|
|
|
2015-01-15 09:40:00 +00:00
|
|
|
int hostfile_read_key(char **, u_int *, struct sshkey *);
|
|
|
|
int add_host_to_hostfile(const char *, const char *,
|
|
|
|
const struct sshkey *, int);
|
2000-03-26 03:04:51 +00:00
|
|
|
|
2005-03-01 10:47:37 +00:00
|
|
|
#define HASH_MAGIC "|1|"
|
|
|
|
#define HASH_DELIM '|'
|
|
|
|
|
2010-02-26 20:55:05 +00:00
|
|
|
#define CA_MARKER "@cert-authority"
|
2010-03-04 10:53:35 +00:00
|
|
|
#define REVOKE_MARKER "@revoked"
|
2010-02-26 20:55:05 +00:00
|
|
|
|
2005-03-01 10:47:37 +00:00
|
|
|
char *host_hash(const char *, const char *, u_int);
|
|
|
|
|
2000-03-26 03:04:51 +00:00
|
|
|
#endif
|