Home | History | Annotate | Line # | Download | only in dist
hostfile.c revision 1.3
      1  1.3      adam /*	$NetBSD: hostfile.c,v 1.3 2010/11/21 18:29:48 adam Exp $	*/
      2  1.3      adam /* $OpenBSD: hostfile.c,v 1.48 2010/03/04 10:36:03 djm Exp $ */
      3  1.1  christos /*
      4  1.1  christos  * Author: Tatu Ylonen <ylo (at) cs.hut.fi>
      5  1.1  christos  * Copyright (c) 1995 Tatu Ylonen <ylo (at) cs.hut.fi>, Espoo, Finland
      6  1.1  christos  *                    All rights reserved
      7  1.1  christos  * Functions for manipulating the known hosts files.
      8  1.1  christos  *
      9  1.1  christos  * As far as I am concerned, the code I have written for this software
     10  1.1  christos  * can be used freely for any purpose.  Any derived versions of this
     11  1.1  christos  * software must be clearly marked as such, and if the derived work is
     12  1.1  christos  * incompatible with the protocol description in the RFC file, it must be
     13  1.1  christos  * called by a name other than "ssh" or "Secure Shell".
     14  1.1  christos  *
     15  1.1  christos  *
     16  1.1  christos  * Copyright (c) 1999, 2000 Markus Friedl.  All rights reserved.
     17  1.1  christos  * Copyright (c) 1999 Niels Provos.  All rights reserved.
     18  1.1  christos  *
     19  1.1  christos  * Redistribution and use in source and binary forms, with or without
     20  1.1  christos  * modification, are permitted provided that the following conditions
     21  1.1  christos  * are met:
     22  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     23  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     24  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     25  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     26  1.1  christos  *    documentation and/or other materials provided with the distribution.
     27  1.1  christos  *
     28  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     29  1.1  christos  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     30  1.1  christos  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     31  1.1  christos  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     32  1.1  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     33  1.1  christos  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     34  1.1  christos  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     35  1.1  christos  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     36  1.1  christos  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     37  1.1  christos  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     38  1.1  christos  */
     39  1.1  christos 
     40  1.2  christos #include "includes.h"
     41  1.3      adam __RCSID("$NetBSD: hostfile.c,v 1.3 2010/11/21 18:29:48 adam Exp $");
     42  1.1  christos #include <sys/types.h>
     43  1.1  christos 
     44  1.1  christos #include <netinet/in.h>
     45  1.1  christos 
     46  1.1  christos #include <openssl/hmac.h>
     47  1.1  christos #include <openssl/sha.h>
     48  1.1  christos 
     49  1.1  christos #include <resolv.h>
     50  1.1  christos #include <stdio.h>
     51  1.1  christos #include <stdlib.h>
     52  1.1  christos #include <string.h>
     53  1.1  christos 
     54  1.1  christos #include "xmalloc.h"
     55  1.1  christos #include "match.h"
     56  1.1  christos #include "key.h"
     57  1.1  christos #include "hostfile.h"
     58  1.1  christos #include "log.h"
     59  1.1  christos 
     60  1.1  christos static int
     61  1.1  christos extract_salt(const char *s, u_int l, char *salt, size_t salt_len)
     62  1.1  christos {
     63  1.1  christos 	char *p, *b64salt;
     64  1.1  christos 	u_int b64len;
     65  1.1  christos 	int ret;
     66  1.1  christos 
     67  1.1  christos 	if (l < sizeof(HASH_MAGIC) - 1) {
     68  1.1  christos 		debug2("extract_salt: string too short");
     69  1.1  christos 		return (-1);
     70  1.1  christos 	}
     71  1.1  christos 	if (strncmp(s, HASH_MAGIC, sizeof(HASH_MAGIC) - 1) != 0) {
     72  1.1  christos 		debug2("extract_salt: invalid magic identifier");
     73  1.1  christos 		return (-1);
     74  1.1  christos 	}
     75  1.1  christos 	s += sizeof(HASH_MAGIC) - 1;
     76  1.1  christos 	l -= sizeof(HASH_MAGIC) - 1;
     77  1.1  christos 	if ((p = memchr(s, HASH_DELIM, l)) == NULL) {
     78  1.1  christos 		debug2("extract_salt: missing salt termination character");
     79  1.1  christos 		return (-1);
     80  1.1  christos 	}
     81  1.1  christos 
     82  1.1  christos 	b64len = p - s;
     83  1.1  christos 	/* Sanity check */
     84  1.1  christos 	if (b64len == 0 || b64len > 1024) {
     85  1.1  christos 		debug2("extract_salt: bad encoded salt length %u", b64len);
     86  1.1  christos 		return (-1);
     87  1.1  christos 	}
     88  1.1  christos 	b64salt = xmalloc(1 + b64len);
     89  1.1  christos 	memcpy(b64salt, s, b64len);
     90  1.1  christos 	b64salt[b64len] = '\0';
     91  1.1  christos 
     92  1.1  christos 	ret = __b64_pton(b64salt, salt, salt_len);
     93  1.1  christos 	xfree(b64salt);
     94  1.1  christos 	if (ret == -1) {
     95  1.1  christos 		debug2("extract_salt: salt decode error");
     96  1.1  christos 		return (-1);
     97  1.1  christos 	}
     98  1.1  christos 	if (ret != SHA_DIGEST_LENGTH) {
     99  1.1  christos 		debug2("extract_salt: expected salt len %d, got %d",
    100  1.1  christos 		    SHA_DIGEST_LENGTH, ret);
    101  1.1  christos 		return (-1);
    102  1.1  christos 	}
    103  1.1  christos 
    104  1.1  christos 	return (0);
    105  1.1  christos }
    106  1.1  christos 
    107  1.1  christos char *
    108  1.1  christos host_hash(const char *host, const char *name_from_hostfile, u_int src_len)
    109  1.1  christos {
    110  1.1  christos 	const EVP_MD *md = EVP_sha1();
    111  1.1  christos 	HMAC_CTX mac_ctx;
    112  1.1  christos 	char salt[256], result[256], uu_salt[512], uu_result[512];
    113  1.1  christos 	static char encoded[1024];
    114  1.1  christos 	u_int i, len;
    115  1.1  christos 
    116  1.1  christos 	len = EVP_MD_size(md);
    117  1.1  christos 
    118  1.1  christos 	if (name_from_hostfile == NULL) {
    119  1.1  christos 		/* Create new salt */
    120  1.1  christos 		for (i = 0; i < len; i++)
    121  1.1  christos 			salt[i] = arc4random();
    122  1.1  christos 	} else {
    123  1.1  christos 		/* Extract salt from known host entry */
    124  1.1  christos 		if (extract_salt(name_from_hostfile, src_len, salt,
    125  1.1  christos 		    sizeof(salt)) == -1)
    126  1.1  christos 			return (NULL);
    127  1.1  christos 	}
    128  1.1  christos 
    129  1.1  christos 	HMAC_Init(&mac_ctx, salt, len, md);
    130  1.1  christos 	HMAC_Update(&mac_ctx, host, strlen(host));
    131  1.1  christos 	HMAC_Final(&mac_ctx, result, NULL);
    132  1.1  christos 	HMAC_cleanup(&mac_ctx);
    133  1.1  christos 
    134  1.1  christos 	if (__b64_ntop(salt, len, uu_salt, sizeof(uu_salt)) == -1 ||
    135  1.1  christos 	    __b64_ntop(result, len, uu_result, sizeof(uu_result)) == -1)
    136  1.1  christos 		fatal("host_hash: __b64_ntop failed");
    137  1.1  christos 
    138  1.1  christos 	snprintf(encoded, sizeof(encoded), "%s%s%c%s", HASH_MAGIC, uu_salt,
    139  1.1  christos 	    HASH_DELIM, uu_result);
    140  1.1  christos 
    141  1.1  christos 	return (encoded);
    142  1.1  christos }
    143  1.1  christos 
    144  1.1  christos /*
    145  1.1  christos  * Parses an RSA (number of bits, e, n) or DSA key from a string.  Moves the
    146  1.1  christos  * pointer over the key.  Skips any whitespace at the beginning and at end.
    147  1.1  christos  */
    148  1.1  christos 
    149  1.1  christos int
    150  1.1  christos hostfile_read_key(char **cpp, u_int *bitsp, Key *ret)
    151  1.1  christos {
    152  1.1  christos 	char *cp;
    153  1.1  christos 
    154  1.1  christos 	/* Skip leading whitespace. */
    155  1.1  christos 	for (cp = *cpp; *cp == ' ' || *cp == '\t'; cp++)
    156  1.1  christos 		;
    157  1.1  christos 
    158  1.1  christos 	if (key_read(ret, &cp) != 1)
    159  1.1  christos 		return 0;
    160  1.1  christos 
    161  1.1  christos 	/* Skip trailing whitespace. */
    162  1.1  christos 	for (; *cp == ' ' || *cp == '\t'; cp++)
    163  1.1  christos 		;
    164  1.1  christos 
    165  1.1  christos 	/* Return results. */
    166  1.1  christos 	*cpp = cp;
    167  1.1  christos 	*bitsp = key_size(ret);
    168  1.1  christos 	return 1;
    169  1.1  christos }
    170  1.1  christos 
    171  1.1  christos static int
    172  1.1  christos hostfile_check_key(int bits, const Key *key, const char *host, const char *filename, int linenum)
    173  1.1  christos {
    174  1.1  christos 	if (key == NULL || key->type != KEY_RSA1 || key->rsa == NULL)
    175  1.1  christos 		return 1;
    176  1.1  christos 	if (bits != BN_num_bits(key->rsa->n)) {
    177  1.1  christos 		logit("Warning: %s, line %d: keysize mismatch for host %s: "
    178  1.1  christos 		    "actual %d vs. announced %d.",
    179  1.1  christos 		    filename, linenum, host, BN_num_bits(key->rsa->n), bits);
    180  1.1  christos 		logit("Warning: replace %d with %d in %s, line %d.",
    181  1.1  christos 		    bits, BN_num_bits(key->rsa->n), filename, linenum);
    182  1.1  christos 	}
    183  1.1  christos 	return 1;
    184  1.1  christos }
    185  1.1  christos 
    186  1.3      adam static enum { MRK_ERROR, MRK_NONE, MRK_REVOKE, MRK_CA }
    187  1.3      adam check_markers(char **cpp)
    188  1.3      adam {
    189  1.3      adam 	char marker[32], *sp, *cp = *cpp;
    190  1.3      adam 	int ret = MRK_NONE;
    191  1.3      adam 
    192  1.3      adam 	while (*cp == '@') {
    193  1.3      adam 		/* Only one marker is allowed */
    194  1.3      adam 		if (ret != MRK_NONE)
    195  1.3      adam 			return MRK_ERROR;
    196  1.3      adam 		/* Markers are terminated by whitespace */
    197  1.3      adam 		if ((sp = strchr(cp, ' ')) == NULL &&
    198  1.3      adam 		    (sp = strchr(cp, '\t')) == NULL)
    199  1.3      adam 			return MRK_ERROR;
    200  1.3      adam 		/* Extract marker for comparison */
    201  1.3      adam 		if (sp <= cp + 1 || sp >= cp + sizeof(marker))
    202  1.3      adam 			return MRK_ERROR;
    203  1.3      adam 		memcpy(marker, cp, sp - cp);
    204  1.3      adam 		marker[sp - cp] = '\0';
    205  1.3      adam 		if (strcmp(marker, CA_MARKER) == 0)
    206  1.3      adam 			ret = MRK_CA;
    207  1.3      adam 		else if (strcmp(marker, REVOKE_MARKER) == 0)
    208  1.3      adam 			ret = MRK_REVOKE;
    209  1.3      adam 		else
    210  1.3      adam 			return MRK_ERROR;
    211  1.3      adam 
    212  1.3      adam 		/* Skip past marker and any whitespace that follows it */
    213  1.3      adam 		cp = sp;
    214  1.3      adam 		for (; *cp == ' ' || *cp == '\t'; cp++)
    215  1.3      adam 			;
    216  1.3      adam 	}
    217  1.3      adam 	*cpp = cp;
    218  1.3      adam 	return ret;
    219  1.3      adam }
    220  1.3      adam 
    221  1.1  christos /*
    222  1.1  christos  * Checks whether the given host (which must be in all lowercase) is already
    223  1.1  christos  * in the list of our known hosts. Returns HOST_OK if the host is known and
    224  1.1  christos  * has the specified key, HOST_NEW if the host is not known, and HOST_CHANGED
    225  1.1  christos  * if the host is known but used to have a different host key.
    226  1.1  christos  *
    227  1.1  christos  * If no 'key' has been specified and a key of type 'keytype' is known
    228  1.1  christos  * for the specified host, then HOST_FOUND is returned.
    229  1.1  christos  */
    230  1.1  christos 
    231  1.1  christos static HostStatus
    232  1.1  christos check_host_in_hostfile_by_key_or_type(const char *filename,
    233  1.3      adam     const char *host, const Key *key, int keytype, Key *found,
    234  1.3      adam     int want_revocation, int *numret)
    235  1.1  christos {
    236  1.1  christos 	FILE *f;
    237  1.1  christos 	char line[8192];
    238  1.3      adam 	int want, have, linenum = 0, want_cert = key_is_cert(key);
    239  1.1  christos 	u_int kbits;
    240  1.1  christos 	char *cp, *cp2, *hashed_host;
    241  1.1  christos 	HostStatus end_return;
    242  1.1  christos 
    243  1.3      adam 	debug3("check_host_in_hostfile: host %s filename %s", host, filename);
    244  1.3      adam 
    245  1.3      adam 	if (want_revocation && (key == NULL || keytype != 0 || found != NULL))
    246  1.3      adam 		fatal("%s: invalid arguments", __func__);
    247  1.1  christos 
    248  1.1  christos 	/* Open the file containing the list of known hosts. */
    249  1.1  christos 	f = fopen(filename, "r");
    250  1.1  christos 	if (!f)
    251  1.1  christos 		return HOST_NEW;
    252  1.1  christos 
    253  1.1  christos 	/*
    254  1.1  christos 	 * Return value when the loop terminates.  This is set to
    255  1.1  christos 	 * HOST_CHANGED if we have seen a different key for the host and have
    256  1.1  christos 	 * not found the proper one.
    257  1.1  christos 	 */
    258  1.1  christos 	end_return = HOST_NEW;
    259  1.1  christos 
    260  1.1  christos 	/* Go through the file. */
    261  1.1  christos 	while (fgets(line, sizeof(line), f)) {
    262  1.1  christos 		cp = line;
    263  1.1  christos 		linenum++;
    264  1.1  christos 
    265  1.1  christos 		/* Skip any leading whitespace, comments and empty lines. */
    266  1.1  christos 		for (; *cp == ' ' || *cp == '\t'; cp++)
    267  1.1  christos 			;
    268  1.1  christos 		if (!*cp || *cp == '#' || *cp == '\n')
    269  1.1  christos 			continue;
    270  1.1  christos 
    271  1.3      adam 		if (want_revocation)
    272  1.3      adam 			want = MRK_REVOKE;
    273  1.3      adam 		else if (want_cert)
    274  1.3      adam 			want = MRK_CA;
    275  1.3      adam 		else
    276  1.3      adam 			want = MRK_NONE;
    277  1.3      adam 
    278  1.3      adam 		if ((have = check_markers(&cp)) == MRK_ERROR) {
    279  1.3      adam 			verbose("%s: invalid marker at %s:%d",
    280  1.3      adam 			    __func__, filename, linenum);
    281  1.3      adam 			continue;
    282  1.3      adam 		} else if (want != have)
    283  1.3      adam 			continue;
    284  1.3      adam 
    285  1.1  christos 		/* Find the end of the host name portion. */
    286  1.1  christos 		for (cp2 = cp; *cp2 && *cp2 != ' ' && *cp2 != '\t'; cp2++)
    287  1.1  christos 			;
    288  1.1  christos 
    289  1.1  christos 		/* Check if the host name matches. */
    290  1.1  christos 		if (match_hostname(host, cp, (u_int) (cp2 - cp)) != 1) {
    291  1.1  christos 			if (*cp != HASH_DELIM)
    292  1.1  christos 				continue;
    293  1.1  christos 			hashed_host = host_hash(host, cp, (u_int) (cp2 - cp));
    294  1.1  christos 			if (hashed_host == NULL) {
    295  1.1  christos 				debug("Invalid hashed host line %d of %s",
    296  1.1  christos 				    linenum, filename);
    297  1.1  christos 				continue;
    298  1.1  christos 			}
    299  1.1  christos 			if (strncmp(hashed_host, cp, (u_int) (cp2 - cp)) != 0)
    300  1.1  christos 				continue;
    301  1.1  christos 		}
    302  1.1  christos 
    303  1.1  christos 		/* Got a match.  Skip host name. */
    304  1.1  christos 		cp = cp2;
    305  1.1  christos 
    306  1.3      adam 		if (want_revocation)
    307  1.3      adam 			found = key_new(KEY_UNSPEC);
    308  1.3      adam 
    309  1.1  christos 		/*
    310  1.1  christos 		 * Extract the key from the line.  This will skip any leading
    311  1.1  christos 		 * whitespace.  Ignore badly formatted lines.
    312  1.1  christos 		 */
    313  1.1  christos 		if (!hostfile_read_key(&cp, &kbits, found))
    314  1.1  christos 			continue;
    315  1.1  christos 
    316  1.1  christos 		if (numret != NULL)
    317  1.1  christos 			*numret = linenum;
    318  1.1  christos 
    319  1.1  christos 		if (key == NULL) {
    320  1.1  christos 			/* we found a key of the requested type */
    321  1.1  christos 			if (found->type == keytype) {
    322  1.1  christos 				fclose(f);
    323  1.1  christos 				return HOST_FOUND;
    324  1.1  christos 			}
    325  1.1  christos 			continue;
    326  1.1  christos 		}
    327  1.1  christos 
    328  1.1  christos 		if (!hostfile_check_key(kbits, found, host, filename, linenum))
    329  1.1  christos 			continue;
    330  1.1  christos 
    331  1.3      adam 		if (want_revocation) {
    332  1.3      adam 			if (key_is_cert(key) &&
    333  1.3      adam 			    key_equal_public(key->cert->signature_key, found)) {
    334  1.3      adam 				verbose("check_host_in_hostfile: revoked CA "
    335  1.3      adam 				    "line %d", linenum);
    336  1.3      adam 				key_free(found);
    337  1.3      adam 				return HOST_REVOKED;
    338  1.3      adam 			}
    339  1.3      adam 			if (key_equal_public(key, found)) {
    340  1.3      adam 				verbose("check_host_in_hostfile: revoked key "
    341  1.3      adam 				    "line %d", linenum);
    342  1.3      adam 				key_free(found);
    343  1.3      adam 				return HOST_REVOKED;
    344  1.3      adam 			}
    345  1.3      adam 			key_free(found);
    346  1.3      adam 			continue;
    347  1.3      adam 		}
    348  1.3      adam 
    349  1.1  christos 		/* Check if the current key is the same as the given key. */
    350  1.3      adam 		if (want_cert && key_equal(key->cert->signature_key, found)) {
    351  1.3      adam 			/* Found CA cert for key */
    352  1.3      adam 			debug3("check_host_in_hostfile: CA match line %d",
    353  1.3      adam 			    linenum);
    354  1.3      adam 			fclose(f);
    355  1.3      adam 			return HOST_OK;
    356  1.3      adam 		} else if (!want_cert && key_equal(key, found)) {
    357  1.3      adam 			/* Found identical key */
    358  1.1  christos 			debug3("check_host_in_hostfile: match line %d", linenum);
    359  1.1  christos 			fclose(f);
    360  1.1  christos 			return HOST_OK;
    361  1.1  christos 		}
    362  1.1  christos 		/*
    363  1.1  christos 		 * They do not match.  We will continue to go through the
    364  1.1  christos 		 * file; however, we note that we will not return that it is
    365  1.1  christos 		 * new.
    366  1.1  christos 		 */
    367  1.1  christos 		end_return = HOST_CHANGED;
    368  1.1  christos 	}
    369  1.1  christos 	/* Clear variables and close the file. */
    370  1.1  christos 	fclose(f);
    371  1.1  christos 
    372  1.1  christos 	/*
    373  1.1  christos 	 * Return either HOST_NEW or HOST_CHANGED, depending on whether we
    374  1.1  christos 	 * saw a different key for the host.
    375  1.1  christos 	 */
    376  1.1  christos 	return end_return;
    377  1.1  christos }
    378  1.1  christos 
    379  1.1  christos HostStatus
    380  1.1  christos check_host_in_hostfile(const char *filename, const char *host, const Key *key,
    381  1.1  christos     Key *found, int *numret)
    382  1.1  christos {
    383  1.1  christos 	if (key == NULL)
    384  1.1  christos 		fatal("no key to look up");
    385  1.3      adam 	if (check_host_in_hostfile_by_key_or_type(filename, host,
    386  1.3      adam 	    key, 0, NULL, 1, NULL) == HOST_REVOKED)
    387  1.3      adam 		return HOST_REVOKED;
    388  1.3      adam 	return check_host_in_hostfile_by_key_or_type(filename, host, key, 0,
    389  1.3      adam 	    found, 0, numret);
    390  1.1  christos }
    391  1.1  christos 
    392  1.1  christos int
    393  1.1  christos lookup_key_in_hostfile_by_type(const char *filename, const char *host,
    394  1.1  christos     int keytype, Key *found, int *numret)
    395  1.1  christos {
    396  1.1  christos 	return (check_host_in_hostfile_by_key_or_type(filename, host, NULL,
    397  1.3      adam 	    keytype, found, 0, numret) == HOST_FOUND);
    398  1.1  christos }
    399  1.1  christos 
    400  1.1  christos /*
    401  1.1  christos  * Appends an entry to the host file.  Returns false if the entry could not
    402  1.1  christos  * be appended.
    403  1.1  christos  */
    404  1.1  christos 
    405  1.1  christos int
    406  1.1  christos add_host_to_hostfile(const char *filename, const char *host, const Key *key,
    407  1.1  christos     int store_hash)
    408  1.1  christos {
    409  1.1  christos 	FILE *f;
    410  1.1  christos 	int success = 0;
    411  1.1  christos 	char *hashed_host = NULL;
    412  1.1  christos 
    413  1.1  christos 	if (key == NULL)
    414  1.1  christos 		return 1;	/* XXX ? */
    415  1.1  christos 	f = fopen(filename, "a");
    416  1.1  christos 	if (!f)
    417  1.1  christos 		return 0;
    418  1.1  christos 
    419  1.1  christos 	if (store_hash) {
    420  1.1  christos 		if ((hashed_host = host_hash(host, NULL, 0)) == NULL) {
    421  1.1  christos 			error("add_host_to_hostfile: host_hash failed");
    422  1.1  christos 			fclose(f);
    423  1.1  christos 			return 0;
    424  1.1  christos 		}
    425  1.1  christos 	}
    426  1.1  christos 	fprintf(f, "%s ", store_hash ? hashed_host : host);
    427  1.1  christos 
    428  1.1  christos 	if (key_write(key, f)) {
    429  1.1  christos 		success = 1;
    430  1.1  christos 	} else {
    431  1.1  christos 		error("add_host_to_hostfile: saving key in %s failed", filename);
    432  1.1  christos 	}
    433  1.1  christos 	fprintf(f, "\n");
    434  1.1  christos 	fclose(f);
    435  1.1  christos 	return success;
    436  1.1  christos }
    437