2013-07-18 08:12:44 +02:00
|
|
|
/* $OpenBSD: hostfile.h,v 1.20 2013/07/12 00:19:58 djm Exp $ */
|
2001-01-29 08:39:26 +01:00
|
|
|
|
2000-09-16 04:29:08 +02: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 05:04:51 +02:00
|
|
|
#ifndef HOSTFILE_H
|
|
|
|
#define HOSTFILE_H
|
|
|
|
|
|
|
|
typedef enum {
|
2010-03-04 11:53:35 +01:00
|
|
|
HOST_OK, HOST_NEW, HOST_CHANGED, HOST_REVOKED, HOST_FOUND
|
2000-03-26 05:04:51 +02:00
|
|
|
} HostStatus;
|
2000-12-22 02:43:59 +01:00
|
|
|
|
2010-12-01 02:21:51 +01:00
|
|
|
typedef enum {
|
|
|
|
MRK_ERROR, MRK_NONE, MRK_REVOKE, MRK_CA
|
|
|
|
} HostkeyMarker;
|
|
|
|
|
|
|
|
struct hostkey_entry {
|
|
|
|
char *host;
|
|
|
|
char *file;
|
|
|
|
u_long line;
|
|
|
|
Key *key;
|
|
|
|
HostkeyMarker marker;
|
|
|
|
};
|
|
|
|
struct hostkeys;
|
|
|
|
|
|
|
|
struct hostkeys *init_hostkeys(void);
|
|
|
|
void load_hostkeys(struct hostkeys *, const char *, const char *);
|
|
|
|
void free_hostkeys(struct hostkeys *);
|
|
|
|
|
|
|
|
HostStatus check_key_in_hostkeys(struct hostkeys *, Key *,
|
|
|
|
const struct hostkey_entry **);
|
|
|
|
int lookup_key_in_hostkeys_by_type(struct hostkeys *, int,
|
|
|
|
const struct hostkey_entry **);
|
|
|
|
|
2013-07-18 08:12:44 +02:00
|
|
|
int hostfile_read_key(char **, int *, Key *);
|
2010-12-01 02:21:51 +01:00
|
|
|
int add_host_to_hostfile(const char *, const char *, const Key *, int);
|
2000-03-26 05:04:51 +02:00
|
|
|
|
2005-03-01 11:47:37 +01:00
|
|
|
#define HASH_MAGIC "|1|"
|
|
|
|
#define HASH_DELIM '|'
|
|
|
|
|
2010-02-26 21:55:05 +01:00
|
|
|
#define CA_MARKER "@cert-authority"
|
2010-03-04 11:53:35 +01:00
|
|
|
#define REVOKE_MARKER "@revoked"
|
2010-02-26 21:55:05 +01:00
|
|
|
|
2005-03-01 11:47:37 +01:00
|
|
|
char *host_hash(const char *, const char *, u_int);
|
|
|
|
|
2000-03-26 05:04:51 +02:00
|
|
|
#endif
|