2006-02-09 06:46:49 +01:00
|
|
|
/* Copyright (c) 2001 Matej Pfajfar.
|
|
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. */
|
2004-05-10 19:30:51 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
2005-12-14 21:40:40 +01:00
|
|
|
const char routerparse_c_id[] =
|
|
|
|
"$Id$";
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \file routerparse.c
|
|
|
|
* \brief Code to parse and validate router descriptors and directories.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "or.h"
|
|
|
|
|
|
|
|
/****************************************************************************/
|
|
|
|
|
|
|
|
/** Enumeration of possible token types. The ones starting with K_
|
|
|
|
* correspond to directory 'keywords'. _UNRECOGNIZED is for an
|
|
|
|
* unrecognized keyword; _ERR is an error in the tokenizing process,
|
|
|
|
* _EOF is an end-of-file marker, and _NIL is used to encode
|
|
|
|
* not-a-token.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
K_ACCEPT,
|
|
|
|
K_DIRECTORY_SIGNATURE,
|
|
|
|
K_RECOMMENDED_SOFTWARE,
|
|
|
|
K_REJECT,
|
|
|
|
K_ROUTER,
|
|
|
|
K_SIGNED_DIRECTORY,
|
|
|
|
K_SIGNING_KEY,
|
|
|
|
K_ONION_KEY,
|
|
|
|
K_ROUTER_SIGNATURE,
|
|
|
|
K_PUBLISHED,
|
|
|
|
K_RUNNING_ROUTERS,
|
2004-10-27 02:48:51 +02:00
|
|
|
K_ROUTER_STATUS,
|
2004-05-10 19:30:51 +02:00
|
|
|
K_PLATFORM,
|
|
|
|
K_OPT,
|
|
|
|
K_BANDWIDTH,
|
|
|
|
K_PORTS,
|
2004-06-21 06:37:27 +02:00
|
|
|
K_CONTACT,
|
2004-06-25 02:29:31 +02:00
|
|
|
K_NETWORK_STATUS,
|
2004-08-17 07:29:41 +02:00
|
|
|
K_UPTIME,
|
2004-10-07 23:10:40 +02:00
|
|
|
K_DIR_SIGNING_KEY,
|
2004-10-15 03:58:11 +02:00
|
|
|
K_FAMILY,
|
2005-05-02 23:22:31 +02:00
|
|
|
K_FINGERPRINT,
|
|
|
|
K_HIBERNATING,
|
|
|
|
K_READ_HISTORY,
|
|
|
|
K_WRITE_HISTORY,
|
2005-09-02 22:37:31 +02:00
|
|
|
K_NETWORK_STATUS_VERSION,
|
|
|
|
K_DIR_SOURCE,
|
|
|
|
K_DIR_OPTIONS,
|
|
|
|
K_CLIENT_VERSIONS,
|
|
|
|
K_SERVER_VERSIONS,
|
|
|
|
K_R,
|
|
|
|
K_S,
|
2004-05-10 19:30:51 +02:00
|
|
|
_UNRECOGNIZED,
|
|
|
|
_ERR,
|
|
|
|
_EOF,
|
|
|
|
_NIL
|
|
|
|
} directory_keyword;
|
|
|
|
|
|
|
|
/** Structure to hold a single directory token.
|
|
|
|
*
|
|
|
|
* We parse a directory by breaking it into "tokens", each consisting
|
|
|
|
* of a keyword, a line full of arguments, and a binary object. The
|
|
|
|
* arguments and object are both optional, depending on the keyword
|
|
|
|
* type.
|
|
|
|
*/
|
|
|
|
typedef struct directory_token_t {
|
|
|
|
directory_keyword tp; /**< Type of the token. */
|
|
|
|
int n_args; /**< Number of elements in args */
|
|
|
|
char **args; /**< Array of arguments from keyword line. */
|
|
|
|
char *object_type; /**< -----BEGIN [object_type]-----*/
|
2004-10-14 04:47:09 +02:00
|
|
|
size_t object_size; /**< Bytes in object_body */
|
2004-05-10 19:30:51 +02:00
|
|
|
char *object_body; /**< Contents of object, base64-decoded. */
|
|
|
|
crypto_pk_env_t *key; /**< For public keys only. */
|
2004-10-27 23:14:11 +02:00
|
|
|
const char *error; /**< For _ERR tokens only. */
|
2004-05-10 19:30:51 +02:00
|
|
|
} directory_token_t;
|
|
|
|
|
|
|
|
/* ********************************************************************** */
|
|
|
|
|
|
|
|
/** We use a table of rules to decide how to parse each token type. */
|
|
|
|
|
|
|
|
/** Rules for how many arguments a keyword can take. */
|
|
|
|
typedef enum {
|
2005-09-29 04:54:09 +02:00
|
|
|
NO_ARGS, /**< No arguments, ever. */
|
|
|
|
ARGS, /**< A list of arguments separated by spaces. */
|
2005-09-13 23:14:55 +02:00
|
|
|
CONCAT_ARGS, /**< The rest of the line, treated as a single argument. */
|
2004-05-10 19:30:51 +02:00
|
|
|
} arg_syntax;
|
|
|
|
|
|
|
|
/** Rules for whether the keyword needs an object. */
|
|
|
|
typedef enum {
|
2005-09-29 04:54:09 +02:00
|
|
|
NO_OBJ, /**< No object, ever. */
|
|
|
|
NEED_OBJ, /**< Object is required. */
|
2005-09-13 23:14:55 +02:00
|
|
|
NEED_KEY, /**< Object is required, and must be a public key. */
|
|
|
|
OBJ_OK, /**< Object is optional. */
|
2004-05-10 19:30:51 +02:00
|
|
|
} obj_syntax;
|
|
|
|
|
|
|
|
/** Rules for where a keyword can appear. */
|
|
|
|
typedef enum {
|
2005-09-13 23:14:55 +02:00
|
|
|
DIR = 1, /**< Appears only in directory. */
|
2005-09-29 04:54:09 +02:00
|
|
|
RTR = 2, /**< Appears only in router descriptor or runningrouters. */
|
2005-09-02 22:37:31 +02:00
|
|
|
NETSTATUS = 4, /**< v2 or later ("versioned") network status. */
|
2005-09-13 23:14:55 +02:00
|
|
|
ANYSIGNED = 7, /**< Any "full" document (that is, not a router status.) */
|
|
|
|
RTRSTATUS = 8, /**< Router-status portion of a versioned network status. */
|
2005-09-29 04:54:09 +02:00
|
|
|
ANY = 15, /**< Appears in any document type. */
|
2004-05-10 19:30:51 +02:00
|
|
|
} where_syntax;
|
|
|
|
|
|
|
|
/** Table mapping keywords to token value and to argument rules. */
|
|
|
|
static struct {
|
2005-09-02 22:37:31 +02:00
|
|
|
const char *t; int v; arg_syntax s; obj_syntax os; int ws;
|
2004-05-10 19:30:51 +02:00
|
|
|
} token_table[] = {
|
2005-09-02 22:37:31 +02:00
|
|
|
{ "accept", K_ACCEPT, ARGS, NO_OBJ, RTR },
|
2005-09-08 21:10:36 +02:00
|
|
|
{ "directory-signature", K_DIRECTORY_SIGNATURE, ARGS, NEED_OBJ,
|
2005-09-13 23:14:55 +02:00
|
|
|
DIR|NETSTATUS},
|
|
|
|
{ "r", K_R, ARGS, NO_OBJ, RTRSTATUS },
|
|
|
|
{ "s", K_S, ARGS, NO_OBJ, RTRSTATUS },
|
2005-09-02 22:37:31 +02:00
|
|
|
{ "reject", K_REJECT, ARGS, NO_OBJ, RTR },
|
|
|
|
{ "router", K_ROUTER, ARGS, NO_OBJ, RTR },
|
|
|
|
{ "recommended-software",K_RECOMMENDED_SOFTWARE,ARGS, NO_OBJ, DIR },
|
|
|
|
{ "signed-directory", K_SIGNED_DIRECTORY, NO_ARGS, NO_OBJ, DIR },
|
|
|
|
{ "signing-key", K_SIGNING_KEY, NO_ARGS, NEED_KEY,RTR },
|
|
|
|
{ "onion-key", K_ONION_KEY, NO_ARGS, NEED_KEY,RTR },
|
|
|
|
{ "router-signature", K_ROUTER_SIGNATURE, NO_ARGS, NEED_OBJ,RTR },
|
|
|
|
{ "running-routers", K_RUNNING_ROUTERS, ARGS, NO_OBJ, DIR },
|
|
|
|
{ "router-status", K_ROUTER_STATUS, ARGS, NO_OBJ, DIR },
|
|
|
|
{ "bandwidth", K_BANDWIDTH, ARGS, NO_OBJ, RTR },
|
|
|
|
{ "platform", K_PLATFORM, CONCAT_ARGS, NO_OBJ, RTR },
|
2005-09-13 23:14:55 +02:00
|
|
|
{ "published", K_PUBLISHED, CONCAT_ARGS, NO_OBJ, ANYSIGNED },
|
|
|
|
{ "opt", K_OPT, CONCAT_ARGS, OBJ_OK, ANY },
|
|
|
|
{ "contact", K_CONTACT, CONCAT_ARGS, NO_OBJ, ANYSIGNED },
|
2005-09-02 22:37:31 +02:00
|
|
|
{ "network-status", K_NETWORK_STATUS, NO_ARGS, NO_OBJ, DIR },
|
|
|
|
{ "uptime", K_UPTIME, ARGS, NO_OBJ, RTR },
|
2005-09-13 23:14:55 +02:00
|
|
|
{ "dir-signing-key", K_DIR_SIGNING_KEY, ARGS, OBJ_OK,
|
|
|
|
DIR|NETSTATUS},
|
2005-09-02 22:37:31 +02:00
|
|
|
{ "family", K_FAMILY, ARGS, NO_OBJ, RTR },
|
2005-11-15 22:24:32 +01:00
|
|
|
{ "fingerprint", K_FINGERPRINT, CONCAT_ARGS, NO_OBJ, ANYSIGNED },
|
2005-09-02 22:37:31 +02:00
|
|
|
{ "hibernating", K_HIBERNATING, ARGS, NO_OBJ, RTR },
|
|
|
|
{ "read-history", K_READ_HISTORY, ARGS, NO_OBJ, RTR },
|
|
|
|
{ "write-history", K_WRITE_HISTORY, ARGS, NO_OBJ, RTR },
|
|
|
|
{ "network-status-version", K_NETWORK_STATUS_VERSION,
|
|
|
|
ARGS, NO_OBJ, NETSTATUS },
|
|
|
|
{ "dir-source", K_DIR_SOURCE, ARGS, NO_OBJ, NETSTATUS },
|
|
|
|
{ "dir-options", K_DIR_OPTIONS, ARGS, NO_OBJ, NETSTATUS },
|
|
|
|
{ "client-versions", K_CLIENT_VERSIONS, ARGS, NO_OBJ, NETSTATUS },
|
|
|
|
{ "server-versions", K_SERVER_VERSIONS, ARGS, NO_OBJ, NETSTATUS },
|
2004-10-12 22:17:45 +02:00
|
|
|
{ NULL, -1, NO_ARGS, NO_OBJ, ANY }
|
2004-05-10 19:30:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* static function prototypes */
|
|
|
|
static int router_add_exit_policy(routerinfo_t *router,directory_token_t *tok);
|
2004-12-04 02:14:36 +01:00
|
|
|
static addr_policy_t *router_parse_addr_policy(directory_token_t *tok);
|
2004-05-10 19:30:51 +02:00
|
|
|
static int router_get_hash_impl(const char *s, char *digest,
|
|
|
|
const char *start_str, const char *end_str);
|
|
|
|
static void token_free(directory_token_t *tok);
|
|
|
|
static smartlist_t *find_all_exitpolicy(smartlist_t *s);
|
|
|
|
static directory_token_t *find_first_by_keyword(smartlist_t *s,
|
|
|
|
directory_keyword keyword);
|
|
|
|
static int tokenize_string(const char *start, const char *end,
|
2005-09-02 22:37:31 +02:00
|
|
|
smartlist_t *out, where_syntax where);
|
2004-05-10 19:30:51 +02:00
|
|
|
static directory_token_t *get_next_token(const char **s, where_syntax where);
|
2004-06-25 02:29:31 +02:00
|
|
|
static int check_directory_signature(const char *digest,
|
|
|
|
directory_token_t *tok,
|
2004-10-07 23:10:40 +02:00
|
|
|
crypto_pk_env_t *pkey,
|
2005-09-02 22:37:31 +02:00
|
|
|
crypto_pk_env_t *declared_key,
|
|
|
|
int check_authority);
|
2004-10-07 23:10:40 +02:00
|
|
|
static crypto_pk_env_t *find_dir_signing_key(const char *str);
|
2005-03-01 02:44:57 +01:00
|
|
|
static int tor_version_same_series(tor_version_t *a, tor_version_t *b);
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
/** Set <b>digest</b> to the SHA-1 digest of the hash of the directory in
|
2005-09-13 23:14:55 +02:00
|
|
|
* <b>s</b>. Return 0 on success, -1 on failure.
|
2004-05-10 19:30:51 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
router_get_dir_hash(const char *s, char *digest)
|
2004-05-10 19:30:51 +02:00
|
|
|
{
|
|
|
|
return router_get_hash_impl(s,digest,
|
2004-08-06 21:54:20 +02:00
|
|
|
"signed-directory","\ndirectory-signature");
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Set <b>digest</b> to the SHA-1 digest of the hash of the first router in
|
2005-09-13 23:14:55 +02:00
|
|
|
* <b>s</b>. Return 0 on success, -1 on failure.
|
2004-05-10 19:30:51 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
router_get_router_hash(const char *s, char *digest)
|
2004-05-10 19:30:51 +02:00
|
|
|
{
|
|
|
|
return router_get_hash_impl(s,digest,
|
2004-08-06 21:54:20 +02:00
|
|
|
"router ","\nrouter-signature");
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
2004-07-17 00:23:18 +02:00
|
|
|
/** Set <b>digest</b> to the SHA-1 digest of the hash of the running-routers
|
2005-09-13 23:14:55 +02:00
|
|
|
* string in <b>s</b>. Return 0 on success, -1 on failure.
|
2004-07-17 00:23:18 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
router_get_runningrouters_hash(const char *s, char *digest)
|
2004-06-25 02:29:31 +02:00
|
|
|
{
|
|
|
|
return router_get_hash_impl(s,digest,
|
2004-08-06 21:54:20 +02:00
|
|
|
"network-status","\ndirectory-signature");
|
2004-06-25 02:29:31 +02:00
|
|
|
}
|
|
|
|
|
2005-09-13 23:14:55 +02:00
|
|
|
/** Set <b>digest</b> to the SHA-1 digest of the hash of the network-status
|
|
|
|
* string in <b>s</b>. Return 0 on success, -1 on failure. */
|
2005-08-25 22:33:17 +02:00
|
|
|
int
|
|
|
|
router_get_networkstatus_v2_hash(const char *s, char *digest)
|
|
|
|
{
|
|
|
|
return router_get_hash_impl(s,digest,
|
2005-09-13 23:14:55 +02:00
|
|
|
"network-status-version","\ndirectory-signature");
|
2005-08-25 22:33:17 +02:00
|
|
|
}
|
|
|
|
|
2005-08-26 17:34:53 +02:00
|
|
|
/** Helper: used to generate signatures for routers, directories and
|
|
|
|
* network-status objects. Given a digest in <b>digest</b> and a secret
|
|
|
|
* <b>private_key</b>, generate an PKCS1-padded signature, BASE64-encode it,
|
|
|
|
* surround it with -----BEGIN/END----- pairs, and write it to the
|
|
|
|
* <b>buf_len</b>-byte buffer at <b>buf</b>. Return 0 on success, -1 on
|
|
|
|
* failure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
router_append_dirobj_signature(char *buf, size_t buf_len, const char *digest,
|
|
|
|
crypto_pk_env_t *private_key)
|
|
|
|
{
|
|
|
|
char signature[PK_BYTES];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (crypto_pk_private_sign(private_key, signature, digest, DIGEST_LEN) < 0) {
|
|
|
|
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_BUG,"Couldn't sign digest.");
|
2005-08-26 17:34:53 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "-----BEGIN SIGNATURE-----\n", buf_len) >= buf_len)
|
|
|
|
goto truncated;
|
|
|
|
|
|
|
|
i = strlen(buf);
|
|
|
|
if (base64_encode(buf+i, buf_len-i, signature, 128) < 0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_BUG,"couldn't base64-encode signature");
|
2005-08-26 17:34:53 +02:00
|
|
|
tor_free(buf);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strlcat(buf, "-----END SIGNATURE-----\n", buf_len) >= buf_len)
|
|
|
|
goto truncated;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
truncated:
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_BUG,"tried to exceed string length.");
|
2005-08-26 17:34:53 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-09-30 22:04:55 +02:00
|
|
|
/** Return VS_RECOMMENDED if <b>myversion</b> is contained in
|
|
|
|
* <b>versionlist</b>. Else, return VS_OLD if every member of
|
|
|
|
* <b>versionlist</b> is newer than <b>myversion</b>. Else, return
|
|
|
|
* VS_NEW_IN_SERIES if there is at least one member of <b>versionlist</b> in
|
|
|
|
* the same series (major.minor.micro) as <b>myversion</b>, but no such member
|
|
|
|
* is newer than <b>myversion.</b>. Else, return VS_NEW if every memeber of
|
|
|
|
* <b>versionlist</b> is older than <b>myversion</b>. Else, return
|
|
|
|
* VS_UNRECOMMENDED.
|
2005-03-01 02:44:57 +01:00
|
|
|
*
|
2004-07-17 01:33:42 +02:00
|
|
|
* (versionlist is a comma-separated list of version strings,
|
|
|
|
* optionally prefixed with "Tor". Versions that can't be parsed are
|
2005-09-21 02:41:06 +02:00
|
|
|
* ignored.)
|
2005-09-30 22:04:55 +02:00
|
|
|
*/
|
2005-09-21 02:41:06 +02:00
|
|
|
version_status_t
|
|
|
|
tor_version_is_obsolete(const char *myversion, const char *versionlist)
|
|
|
|
{
|
2004-08-04 04:35:06 +02:00
|
|
|
const char *vl;
|
2004-07-17 01:33:42 +02:00
|
|
|
tor_version_t mine, other;
|
2005-09-21 02:41:06 +02:00
|
|
|
int found_newer = 0, found_older = 0, found_newer_in_series = 0,
|
|
|
|
found_any_in_series = 0, r, same;
|
|
|
|
version_status_t ret = VS_UNRECOMMENDED;
|
2004-09-02 20:39:59 +02:00
|
|
|
smartlist_t *version_sl;
|
2004-06-01 20:19:01 +02:00
|
|
|
|
2004-08-04 04:35:06 +02:00
|
|
|
vl = versionlist;
|
|
|
|
|
2006-02-13 11:33:00 +01:00
|
|
|
log_debug(LD_CONFIG,"Checking whether version '%s' is in '%s'",
|
|
|
|
myversion, versionlist);
|
2004-06-01 20:19:01 +02:00
|
|
|
|
2004-07-17 01:33:42 +02:00
|
|
|
if (tor_version_parse(myversion, &mine)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_err(LD_BUG,"I couldn't parse my own version (%s)", myversion);
|
2004-07-17 01:33:42 +02:00
|
|
|
tor_assert(0);
|
|
|
|
}
|
2004-09-02 20:39:59 +02:00
|
|
|
version_sl = smartlist_create();
|
|
|
|
smartlist_split_string(version_sl, versionlist, ",", SPLIT_SKIP_SPACE, 0);
|
2004-07-17 01:33:42 +02:00
|
|
|
|
2004-09-02 20:39:59 +02:00
|
|
|
SMARTLIST_FOREACH(version_sl, const char *, cp, {
|
|
|
|
if (!strcmpstart(cp, "Tor "))
|
2004-07-17 01:33:42 +02:00
|
|
|
cp += 4;
|
|
|
|
|
|
|
|
if (tor_version_parse(cp, &other)) {
|
|
|
|
/* Couldn't parse other; it can't be a match. */
|
|
|
|
} else {
|
2005-03-01 02:44:57 +01:00
|
|
|
same = tor_version_same_series(&mine, &other);
|
|
|
|
if (same)
|
|
|
|
found_any_in_series = 1;
|
2004-07-17 01:33:42 +02:00
|
|
|
r = tor_version_compare(&mine, &other);
|
|
|
|
if (r==0) {
|
2005-09-21 02:41:06 +02:00
|
|
|
ret = VS_RECOMMENDED;
|
2004-09-02 20:39:59 +02:00
|
|
|
goto done;
|
2004-07-17 01:33:42 +02:00
|
|
|
} else if (r<0) {
|
|
|
|
found_newer = 1;
|
2005-03-01 02:44:57 +01:00
|
|
|
if (same)
|
|
|
|
found_newer_in_series = 1;
|
2005-09-21 02:41:06 +02:00
|
|
|
} else if (r>0) {
|
|
|
|
found_older = 1;
|
2004-07-17 01:33:42 +02:00
|
|
|
}
|
|
|
|
}
|
2004-09-02 20:39:59 +02:00
|
|
|
});
|
|
|
|
|
2005-03-01 02:44:57 +01:00
|
|
|
/* We didn't find the listed version. Is it new or old? */
|
2005-09-21 02:41:06 +02:00
|
|
|
if (found_any_in_series && !found_newer_in_series) {
|
|
|
|
ret = VS_NEW_IN_SERIES;
|
|
|
|
} else if (found_newer && !found_older) {
|
|
|
|
ret = VS_OLD;
|
|
|
|
} else if (found_older && !found_newer) {
|
|
|
|
ret = VS_NEW;
|
2004-07-17 01:33:42 +02:00
|
|
|
} else {
|
2005-09-21 02:41:06 +02:00
|
|
|
ret = VS_UNRECOMMENDED;
|
2004-06-01 20:19:01 +02:00
|
|
|
}
|
2004-09-02 20:39:59 +02:00
|
|
|
|
|
|
|
done:
|
|
|
|
SMARTLIST_FOREACH(version_sl, char *, version, tor_free(version));
|
|
|
|
smartlist_free(version_sl);
|
|
|
|
return ret;
|
2004-06-01 20:19:01 +02:00
|
|
|
}
|
|
|
|
|
2005-09-30 22:04:55 +02:00
|
|
|
/** Return the combined status of the current version, given that we know of
|
|
|
|
* one set of networkstatuses that give us status <b>a</b>, and another that
|
|
|
|
* gives us status <b>b</b>.
|
|
|
|
*
|
|
|
|
* For example, if one authority thinks that we're NEW, and another thinks
|
|
|
|
* we're OLD, we're simply UNRECOMMENDED.
|
|
|
|
*
|
|
|
|
* This function does not handle calculating whether we're RECOMMENDED; that
|
|
|
|
* follows a simple majority rule. This function simply calculates *why*
|
|
|
|
* we're not recommended (if we're not).
|
|
|
|
*/
|
2005-09-21 02:41:06 +02:00
|
|
|
version_status_t
|
|
|
|
version_status_join(version_status_t a, version_status_t b)
|
2004-06-01 20:19:01 +02:00
|
|
|
{
|
2005-09-21 02:41:06 +02:00
|
|
|
if (a == b)
|
|
|
|
return a;
|
|
|
|
else if (a == VS_UNRECOMMENDED || b == VS_UNRECOMMENDED)
|
|
|
|
return VS_UNRECOMMENDED;
|
|
|
|
else if (a == VS_RECOMMENDED)
|
|
|
|
return b;
|
|
|
|
else if (b == VS_RECOMMENDED)
|
|
|
|
return a;
|
|
|
|
/* Okay. Neither is 'recommended' or 'unrecommended', and they differ. */
|
|
|
|
else if (a == VS_OLD || b == VS_OLD)
|
|
|
|
return VS_UNRECOMMENDED;
|
|
|
|
/* One is VS_NEW, the other is VS_NEW_IN_SERIES */
|
|
|
|
else
|
|
|
|
return VS_NEW_IN_SERIES;
|
2004-06-01 20:19:01 +02:00
|
|
|
}
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2005-09-15 07:19:38 +02:00
|
|
|
/** Read a signed directory from <b>str</b>. If it's well-formed, return 0.
|
|
|
|
* Otherwise, return -1. If we're a directory cache, cache it.
|
2004-05-10 19:30:51 +02:00
|
|
|
*/
|
2005-09-15 07:19:38 +02:00
|
|
|
int
|
|
|
|
router_parse_directory(const char *str)
|
2004-05-10 19:30:51 +02:00
|
|
|
{
|
|
|
|
directory_token_t *tok;
|
2004-06-25 02:29:31 +02:00
|
|
|
char digest[DIGEST_LEN];
|
|
|
|
time_t published_on;
|
2005-09-14 23:09:25 +02:00
|
|
|
int r;
|
2004-08-04 04:35:06 +02:00
|
|
|
const char *end, *cp;
|
2004-05-10 19:30:51 +02:00
|
|
|
smartlist_t *tokens = NULL;
|
2004-10-07 23:10:40 +02:00
|
|
|
crypto_pk_env_t *declared_key = NULL;
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2005-09-16 18:41:45 +02:00
|
|
|
/* XXXX This could be simplified a lot, but it will all go away
|
|
|
|
* once pre-0.1.1.8 is obsolete, and for now it's better not to
|
2006-01-20 21:54:42 +01:00
|
|
|
* touch it. */
|
2005-09-15 07:19:38 +02:00
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
if (router_get_dir_hash(str, digest)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unable to compute digest of directory");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
2006-02-13 11:33:00 +01:00
|
|
|
log_debug(LD_DIR,"Received directory hashes to %s",hex_str(digest,4));
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2004-08-04 04:35:06 +02:00
|
|
|
/* Check signature first, before we try to tokenize. */
|
|
|
|
cp = str;
|
|
|
|
while (cp && (end = strstr(cp+1, "\ndirectory-signature")))
|
|
|
|
cp = end;
|
|
|
|
if (cp == str || !cp) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "No signature found on directory."); goto err;
|
2004-08-04 04:35:06 +02:00
|
|
|
}
|
|
|
|
++cp;
|
|
|
|
tokens = smartlist_create();
|
2005-09-02 22:37:31 +02:00
|
|
|
if (tokenize_string(cp,strchr(cp,'\0'),tokens,DIR)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error tokenizing directory signature"); goto err;
|
2004-08-04 04:35:06 +02:00
|
|
|
}
|
|
|
|
if (smartlist_len(tokens) != 1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unexpected number of tokens in signature"); goto err;
|
2004-08-04 04:35:06 +02:00
|
|
|
}
|
2004-08-07 03:17:38 +02:00
|
|
|
tok=smartlist_get(tokens,0);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (tok->tp != K_DIRECTORY_SIGNATURE) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"Expected a single directory signature"); goto err;
|
2004-08-04 04:35:06 +02:00
|
|
|
}
|
2004-10-07 23:10:40 +02:00
|
|
|
declared_key = find_dir_signing_key(str);
|
2005-09-15 07:19:38 +02:00
|
|
|
if (check_directory_signature(digest, tok, NULL, declared_key, 1)<0)
|
2004-08-04 04:35:06 +02:00
|
|
|
goto err;
|
2004-08-07 03:17:38 +02:00
|
|
|
|
2004-08-04 04:35:06 +02:00
|
|
|
SMARTLIST_FOREACH(tokens, directory_token_t *, tok, token_free(tok));
|
|
|
|
smartlist_free(tokens);
|
|
|
|
tokens = NULL;
|
|
|
|
|
|
|
|
/* Now try to parse the first part of the directory. */
|
2004-05-10 19:30:51 +02:00
|
|
|
if ((end = strstr(str,"\nrouter "))) {
|
|
|
|
++end;
|
|
|
|
} else if ((end = strstr(str, "\ndirectory-signature"))) {
|
|
|
|
++end;
|
|
|
|
} else {
|
|
|
|
end = str + strlen(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
tokens = smartlist_create();
|
2005-09-02 22:37:31 +02:00
|
|
|
if (tokenize_string(str,end,tokens,DIR)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error tokenizing directory"); goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_PUBLISHED))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing published time on directory.");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
tor_assert(tok->n_args == 1);
|
|
|
|
|
2004-08-07 04:46:16 +02:00
|
|
|
if (parse_iso_time(tok->args[0], &published_on) < 0) {
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2004-11-15 10:38:17 +01:00
|
|
|
/* Now that we know the signature is okay, and we have a
|
|
|
|
* publication time, cache the directory. */
|
2005-09-15 07:19:38 +02:00
|
|
|
if (get_options()->DirPort && !get_options()->V1AuthoritativeDir)
|
2004-11-15 17:17:59 +01:00
|
|
|
dirserv_set_cached_directory(str, published_on, 0);
|
2004-11-09 19:22:17 +01:00
|
|
|
|
2004-06-25 02:29:31 +02:00
|
|
|
r = 0;
|
|
|
|
goto done;
|
|
|
|
err:
|
|
|
|
r = -1;
|
|
|
|
done:
|
2004-10-07 23:10:40 +02:00
|
|
|
if (declared_key) crypto_free_pk_env(declared_key);
|
2004-06-25 02:29:31 +02:00
|
|
|
if (tokens) {
|
|
|
|
SMARTLIST_FOREACH(tokens, directory_token_t *, tok, token_free(tok));
|
|
|
|
smartlist_free(tokens);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2005-09-15 07:19:38 +02:00
|
|
|
/** Read a signed router status statement from <b>str</b>. If it's
|
|
|
|
* well-formed, return 0. Otherwise, return -1. If we're a directory cache,
|
|
|
|
* cache it.*/
|
2005-09-14 23:09:25 +02:00
|
|
|
int
|
|
|
|
router_parse_runningrouters(const char *str)
|
2004-06-25 02:29:31 +02:00
|
|
|
{
|
|
|
|
char digest[DIGEST_LEN];
|
|
|
|
directory_token_t *tok;
|
|
|
|
time_t published_on;
|
2005-09-14 23:09:25 +02:00
|
|
|
int r = -1;
|
2004-10-07 23:10:40 +02:00
|
|
|
crypto_pk_env_t *declared_key = NULL;
|
2004-06-25 02:29:31 +02:00
|
|
|
smartlist_t *tokens = NULL;
|
|
|
|
|
|
|
|
if (router_get_runningrouters_hash(str, digest)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unable to compute digest of directory");
|
2004-06-25 02:29:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
tokens = smartlist_create();
|
2005-09-02 22:37:31 +02:00
|
|
|
if (tokenize_string(str,str+strlen(str),tokens,DIR)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error tokenizing directory"); goto err;
|
2004-06-25 02:29:31 +02:00
|
|
|
}
|
|
|
|
if ((tok = find_first_by_keyword(tokens, _UNRECOGNIZED))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unrecognized keyword '%s'; can't parse running-routers",
|
|
|
|
tok->args[0]);
|
2004-06-25 02:29:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
tok = smartlist_get(tokens,0);
|
|
|
|
if (tok->tp != K_NETWORK_STATUS) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Network-status starts with wrong token");
|
2004-06-25 02:29:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_PUBLISHED))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing published time on directory.");
|
2004-06-25 02:29:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
tor_assert(tok->n_args == 1);
|
2004-08-07 04:46:16 +02:00
|
|
|
if (parse_iso_time(tok->args[0], &published_on) < 0) {
|
2004-06-25 02:29:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_DIRECTORY_SIGNATURE))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing signature on running-routers");
|
2004-06-25 02:29:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
2004-10-07 23:10:40 +02:00
|
|
|
declared_key = find_dir_signing_key(str);
|
2005-09-02 22:37:31 +02:00
|
|
|
if (check_directory_signature(digest, tok, NULL, declared_key, 1) < 0)
|
2004-06-25 02:29:31 +02:00
|
|
|
goto err;
|
|
|
|
|
2005-09-14 23:09:25 +02:00
|
|
|
/* Now that we know the signature is okay, and we have a
|
|
|
|
* publication time, cache the list. */
|
|
|
|
if (get_options()->DirPort && !get_options()->V1AuthoritativeDir)
|
|
|
|
dirserv_set_cached_directory(str, published_on, 1);
|
|
|
|
|
|
|
|
r = 0;
|
2004-06-25 02:29:31 +02:00
|
|
|
err:
|
2004-10-07 23:10:40 +02:00
|
|
|
if (declared_key) crypto_free_pk_env(declared_key);
|
2004-06-25 02:29:31 +02:00
|
|
|
if (tokens) {
|
|
|
|
SMARTLIST_FOREACH(tokens, directory_token_t *, tok, token_free(tok));
|
|
|
|
smartlist_free(tokens);
|
|
|
|
}
|
2005-09-14 23:09:25 +02:00
|
|
|
return r;
|
2004-06-25 02:29:31 +02:00
|
|
|
}
|
|
|
|
|
2004-10-07 23:10:40 +02:00
|
|
|
/** Given a directory or running-routers string in <b>str</b>, try to
|
|
|
|
* find the its dir-signing-key token (if any). If this token is
|
|
|
|
* present, extract and return the key. Return NULL on failure. */
|
2005-06-11 20:52:12 +02:00
|
|
|
static crypto_pk_env_t *
|
|
|
|
find_dir_signing_key(const char *str)
|
2004-10-07 23:10:40 +02:00
|
|
|
{
|
|
|
|
const char *cp;
|
|
|
|
directory_token_t *tok;
|
|
|
|
crypto_pk_env_t *key = NULL;
|
|
|
|
|
|
|
|
/* Is there a dir-signing-key in the directory? */
|
|
|
|
cp = strstr(str, "\nopt dir-signing-key");
|
|
|
|
if (!cp)
|
|
|
|
cp = strstr(str, "\ndir-signing-key");
|
|
|
|
if (!cp)
|
|
|
|
return NULL;
|
|
|
|
++cp; /* Now cp points to the start of the token. */
|
|
|
|
|
2005-09-02 22:37:31 +02:00
|
|
|
tok = get_next_token(&cp, DIR);
|
2004-10-07 23:10:40 +02:00
|
|
|
if (!tok) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unparseable dir-signing-key token");
|
2004-10-07 23:10:40 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (tok->tp != K_DIR_SIGNING_KEY) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Dir-signing-key token did not parse as expected");
|
2004-10-07 23:10:40 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tok->key) {
|
|
|
|
key = tok->key;
|
|
|
|
tok->key = NULL; /* steal reference. */
|
|
|
|
} else if (tok->n_args >= 1) {
|
2005-05-02 23:22:31 +02:00
|
|
|
/** XXXX Once all the directories are running 0.1.0.6-rc or later, we
|
|
|
|
* can remove this logic. */
|
2004-10-07 23:10:40 +02:00
|
|
|
key = crypto_pk_DER64_decode_public_key(tok->args[0]);
|
|
|
|
if (!key) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unparseable dir-signing-key argument");
|
2004-10-07 23:10:40 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} else {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Dir-signing-key token contained no key");
|
2004-10-07 23:10:40 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
token_free(tok);
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Return true iff <b>key</b> is allowed to sign directories.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
dir_signing_key_is_trusted(crypto_pk_env_t *key)
|
2004-10-07 23:10:40 +02:00
|
|
|
{
|
|
|
|
char digest[DIGEST_LEN];
|
|
|
|
if (!key) return 0;
|
|
|
|
if (crypto_pk_get_digest(key, digest) < 0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error computing dir-signing-key digest");
|
2004-10-07 23:10:40 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!router_digest_is_trusted_dir(digest)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Listed dir-signing-key is not trusted");
|
2004-10-07 23:10:40 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Check whether the K_DIRECTORY_SIGNATURE token in <b>tok</b> has a
|
|
|
|
* good signature for <b>digest</b>.
|
|
|
|
*
|
|
|
|
* If <b>declared_key</b> is set, the directory has declared what key
|
|
|
|
* was used to sign it, so we will use that key only if it is an
|
2005-09-02 22:37:31 +02:00
|
|
|
* authoritative directory signing key or if check_authority is 0.
|
2004-10-07 23:10:40 +02:00
|
|
|
*
|
2004-10-19 20:19:59 +02:00
|
|
|
* Otherwise, if pkey is provided, try to use it.
|
2004-10-07 23:10:40 +02:00
|
|
|
*
|
|
|
|
* (New callers should always use <b>declared_key</b> when possible;
|
2005-05-17 19:01:36 +02:00
|
|
|
* <b>pkey</b> is only for debugging.)
|
2004-10-07 23:10:40 +02:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
check_directory_signature(const char *digest,
|
|
|
|
directory_token_t *tok,
|
|
|
|
crypto_pk_env_t *pkey,
|
2005-09-02 22:37:31 +02:00
|
|
|
crypto_pk_env_t *declared_key,
|
|
|
|
int check_authority)
|
2004-06-25 02:29:31 +02:00
|
|
|
{
|
|
|
|
char signed_digest[PK_BYTES];
|
2004-10-13 20:28:39 +02:00
|
|
|
crypto_pk_env_t *_pkey = NULL;
|
2004-08-07 03:48:50 +02:00
|
|
|
|
|
|
|
if (tok->n_args != 1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Too many or too few arguments to directory-signature");
|
2004-06-25 02:29:31 +02:00
|
|
|
return -1;
|
2004-06-02 22:00:57 +02:00
|
|
|
}
|
2004-08-07 03:48:50 +02:00
|
|
|
|
2004-10-07 23:10:40 +02:00
|
|
|
if (declared_key) {
|
2005-09-02 22:37:31 +02:00
|
|
|
if (!check_authority || dir_signing_key_is_trusted(declared_key))
|
2004-10-13 20:28:39 +02:00
|
|
|
_pkey = declared_key;
|
2004-10-14 04:47:09 +02:00
|
|
|
}
|
2004-10-19 20:19:59 +02:00
|
|
|
if (!_pkey && pkey) {
|
|
|
|
/* pkey provided for debugging purposes */
|
|
|
|
_pkey = pkey;
|
|
|
|
}
|
2004-10-13 20:28:39 +02:00
|
|
|
if (!_pkey) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
|
|
|
"Obsolete directory format (dir signing key not present) or "
|
|
|
|
"signing key not trusted--rejecting.");
|
2004-10-19 20:19:59 +02:00
|
|
|
return -1;
|
2004-08-07 03:48:50 +02:00
|
|
|
}
|
2004-10-07 23:10:40 +02:00
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
if (strcmp(tok->object_type, "SIGNATURE") || tok->object_size != 128) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Bad object type or length on directory signature");
|
2004-06-25 02:29:31 +02:00
|
|
|
return -1;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
2004-08-07 03:48:50 +02:00
|
|
|
|
2004-10-13 20:28:39 +02:00
|
|
|
tor_assert(_pkey);
|
2004-08-07 03:48:50 +02:00
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
if (crypto_pk_public_checksig(_pkey, signed_digest, tok->object_body, 128)
|
2004-08-07 03:48:50 +02:00
|
|
|
!= 20) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error reading directory: invalid signature.");
|
2004-08-07 03:48:50 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2006-02-13 11:33:00 +01:00
|
|
|
log_debug(LD_DIR,"Signed directory hash starts %s",
|
|
|
|
hex_str(signed_digest,4));
|
2005-08-24 04:31:02 +02:00
|
|
|
if (memcmp(digest, signed_digest, DIGEST_LEN)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error reading directory: signature does not match.");
|
2004-08-07 03:48:50 +02:00
|
|
|
return -1;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
2004-06-25 02:29:31 +02:00
|
|
|
return 0;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
2004-07-17 01:05:40 +02:00
|
|
|
/** Given a string *<b>s</b> containing a concatenated sequence of router
|
2005-09-15 01:42:06 +02:00
|
|
|
* descriptors, parses them and stores the result in <b>dest</b>. All routers
|
|
|
|
* are marked running and verified. Advances *s to a point immediately
|
2005-10-14 04:26:13 +02:00
|
|
|
* following the last router entry. Ignore any trailing router entries that
|
|
|
|
* are not complete. Returns 0 on success and -1 on failure.
|
2004-05-10 19:30:51 +02:00
|
|
|
*/
|
|
|
|
int
|
2005-09-15 07:19:38 +02:00
|
|
|
router_parse_list_from_string(const char **s, smartlist_t *dest)
|
2004-05-10 19:30:51 +02:00
|
|
|
{
|
|
|
|
routerinfo_t *router;
|
2005-10-14 04:26:13 +02:00
|
|
|
const char *end, *cp;
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2004-10-17 00:14:52 +02:00
|
|
|
tor_assert(s);
|
|
|
|
tor_assert(*s);
|
2005-09-30 23:22:25 +02:00
|
|
|
tor_assert(dest);
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
*s = eat_whitespace(*s);
|
|
|
|
/* Don't start parsing the rest of *s unless it contains a router. */
|
2004-09-24 00:18:50 +02:00
|
|
|
if (strcmpstart(*s, "router ")!=0)
|
2004-05-10 19:30:51 +02:00
|
|
|
break;
|
|
|
|
if ((end = strstr(*s+1, "\nrouter "))) {
|
2005-10-14 04:26:13 +02:00
|
|
|
cp = end;
|
2004-05-10 19:30:51 +02:00
|
|
|
end++;
|
|
|
|
} else if ((end = strstr(*s+1, "\ndirectory-signature"))) {
|
2005-10-14 04:26:13 +02:00
|
|
|
cp = end;
|
2004-05-10 19:30:51 +02:00
|
|
|
end++;
|
|
|
|
} else {
|
2005-10-14 04:26:13 +02:00
|
|
|
cp = end = *s+strlen(*s);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (cp > *s && (!*cp || TOR_ISSPACE(*cp)))
|
|
|
|
--cp;
|
|
|
|
/* cp now points to the last non-space character in this descriptor. */
|
|
|
|
|
|
|
|
while (cp > *s && *cp != '\n')
|
|
|
|
--cp;
|
2005-10-18 23:39:00 +02:00
|
|
|
/* cp now points to the first \n before the last non-blank line in this
|
2005-10-14 04:26:13 +02:00
|
|
|
* descriptor */
|
|
|
|
|
|
|
|
if (strcmpstart(cp, "\n-----END SIGNATURE-----\n")) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_info(LD_DIR, "Ignoring truncated router descriptor.");
|
2005-10-28 17:56:19 +02:00
|
|
|
*s = end;
|
2005-10-14 04:26:13 +02:00
|
|
|
continue;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
router = router_parse_entry_from_string(*s, end);
|
2005-10-14 04:26:13 +02:00
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
*s = end;
|
|
|
|
if (!router) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error reading router; skipping");
|
2004-05-10 19:30:51 +02:00
|
|
|
continue;
|
|
|
|
}
|
2005-09-30 23:22:25 +02:00
|
|
|
smartlist_add(dest, router);
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Helper function: reads a single router entry from *<b>s</b> ...
|
|
|
|
* *<b>end</b>. Mallocs a new router and returns it if all goes well, else
|
|
|
|
* returns NULL.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
routerinfo_t *
|
|
|
|
router_parse_entry_from_string(const char *s, const char *end)
|
|
|
|
{
|
2004-05-10 19:30:51 +02:00
|
|
|
routerinfo_t *router = NULL;
|
|
|
|
char signed_digest[128];
|
|
|
|
char digest[128];
|
|
|
|
smartlist_t *tokens = NULL, *exit_policy_tokens = NULL;
|
|
|
|
directory_token_t *tok;
|
|
|
|
int t;
|
2005-08-16 04:52:27 +02:00
|
|
|
struct in_addr in;
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
if (!end) {
|
|
|
|
end = s + strlen(s);
|
|
|
|
}
|
|
|
|
|
2005-10-07 20:33:30 +02:00
|
|
|
/* point 'end' to a point immediately after the final newline. */
|
|
|
|
while (end > s+2 && *(end-1) == '\n' && *(end-2) == '\n')
|
|
|
|
--end;
|
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
if (router_get_router_hash(s, digest) < 0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Couldn't compute router hash.");
|
2004-05-10 19:30:51 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
tokens = smartlist_create();
|
2005-09-02 22:37:31 +02:00
|
|
|
if (tokenize_string(s,end,tokens,RTR)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error tokeninzing router descriptor.");
|
2005-05-02 23:48:25 +02:00
|
|
|
goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (smartlist_len(tokens) < 2) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Impossibly short router descriptor.");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if ((tok = find_first_by_keyword(tokens, _UNRECOGNIZED))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
|
|
|
"Unrecognized critical keyword '%s'; skipping descriptor. "
|
|
|
|
"(It may be from another version of Tor.)",
|
|
|
|
tok->args[0]);
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
tok = smartlist_get(tokens,0);
|
|
|
|
if (tok->tp != K_ROUTER) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"Entry does not start with \"router\"");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
router = tor_malloc_zero(sizeof(routerinfo_t));
|
2006-01-12 19:04:17 +01:00
|
|
|
router->cache_info.signed_descriptor_body = tor_strndup(s, end-s);
|
2005-11-05 21:15:27 +01:00
|
|
|
router->cache_info.signed_descriptor_len = end-s;
|
|
|
|
memcpy(router->cache_info.signed_descriptor_digest, digest, DIGEST_LEN);
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2005-12-15 21:58:51 +01:00
|
|
|
if (tok->n_args >= 5) {
|
2004-05-10 19:30:51 +02:00
|
|
|
router->nickname = tor_strdup(tok->args[0]);
|
2004-08-18 06:44:24 +02:00
|
|
|
if (!is_legal_nickname(router->nickname)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"Router nickname is invalid");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
router->address = tor_strdup(tok->args[1]);
|
2005-08-16 04:52:27 +02:00
|
|
|
if (!tor_inet_aton(router->address, &in)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"Router address is not an IP.");
|
2005-08-16 04:52:27 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
router->addr = ntohl(in.s_addr);
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2005-12-15 21:58:51 +01:00
|
|
|
router->or_port =
|
|
|
|
(uint16_t) tor_parse_long(tok->args[2],10,0,65535,NULL,NULL);
|
|
|
|
router->dir_port =
|
|
|
|
(uint16_t) tor_parse_long(tok->args[4],10,0,65535,NULL,NULL);
|
2004-05-10 19:30:51 +02:00
|
|
|
} else {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"Wrong # of arguments to \"router\" (%d)",tok->n_args);
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
tok = find_first_by_keyword(tokens, K_BANDWIDTH);
|
2005-12-15 21:58:51 +01:00
|
|
|
if (!tok) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"No bandwidth declared; failing.");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
2005-12-15 21:58:51 +01:00
|
|
|
} else {
|
2004-10-17 23:51:20 +02:00
|
|
|
if (tok->n_args < 3) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
|
|
|
"Not enough arguments to \"bandwidth\" in server descriptor.");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
2005-12-14 21:40:40 +01:00
|
|
|
router->bandwidthrate =
|
|
|
|
tor_parse_long(tok->args[0],10,0,INT_MAX,NULL,NULL);
|
|
|
|
router->bandwidthburst =
|
|
|
|
tor_parse_long(tok->args[1],10,0,INT_MAX,NULL,NULL);
|
|
|
|
router->bandwidthcapacity =
|
|
|
|
tor_parse_long(tok->args[2],10,0,INT_MAX,NULL,NULL);
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
2004-08-17 07:29:41 +02:00
|
|
|
if ((tok = find_first_by_keyword(tokens, K_UPTIME))) {
|
|
|
|
if (tok->n_args != 1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unrecognized number of args on K_UPTIME; skipping.");
|
2004-08-17 07:29:41 +02:00
|
|
|
} else {
|
2004-10-12 21:33:03 +02:00
|
|
|
router->uptime = tor_parse_long(tok->args[0],10,0,LONG_MAX,NULL,NULL);
|
2004-08-17 07:29:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-30 17:04:24 +02:00
|
|
|
if ((tok = find_first_by_keyword(tokens, K_HIBERNATING))) {
|
|
|
|
if (tok->n_args < 1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Too few args on 'hibernating' keyword. Skipping.");
|
2005-08-30 17:04:24 +02:00
|
|
|
} else {
|
|
|
|
router->is_hibernating
|
|
|
|
= (tor_parse_long(tok->args[0],10,0,LONG_MAX,NULL,NULL) != 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_PUBLISHED))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing published time"); goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
tor_assert(tok->n_args == 1);
|
2005-11-05 21:15:27 +01:00
|
|
|
if (parse_iso_time(tok->args[0], &router->cache_info.published_on) < 0)
|
2004-10-17 00:14:52 +02:00
|
|
|
goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_ONION_KEY))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing onion key"); goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
2004-11-09 19:22:17 +01:00
|
|
|
if (crypto_pk_keysize(tok->key) != PK_BYTES) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Wrong size on onion key: %d bits!",
|
|
|
|
(int)crypto_pk_keysize(tok->key)*8);
|
2004-11-09 19:22:17 +01:00
|
|
|
goto err;
|
|
|
|
}
|
2004-05-10 19:30:51 +02:00
|
|
|
router->onion_pkey = tok->key;
|
|
|
|
tok->key = NULL; /* Prevent free */
|
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_SIGNING_KEY))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing identity key"); goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
2004-11-09 19:22:17 +01:00
|
|
|
if (crypto_pk_keysize(tok->key) != PK_BYTES) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Wrong size on identity key: %d bits!",
|
2005-05-07 07:55:06 +02:00
|
|
|
(int)crypto_pk_keysize(tok->key)*8);
|
2004-11-09 19:22:17 +01:00
|
|
|
goto err;
|
|
|
|
}
|
2004-05-10 19:30:51 +02:00
|
|
|
router->identity_pkey = tok->key;
|
|
|
|
tok->key = NULL; /* Prevent free */
|
2005-11-05 21:15:27 +01:00
|
|
|
if (crypto_pk_get_digest(router->identity_pkey,
|
|
|
|
router->cache_info.identity_digest)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Couldn't calculate key digest"); goto err;
|
2004-07-01 03:16:59 +02:00
|
|
|
}
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2005-11-15 22:24:32 +01:00
|
|
|
if ((tok = find_first_by_keyword(tokens, K_FINGERPRINT))) {
|
|
|
|
/* If there's a fingerprint line, it must match the identity digest. */
|
|
|
|
char d[DIGEST_LEN];
|
|
|
|
if (tok->n_args < 1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Too few arguments to fingerprint");
|
2005-11-15 22:24:32 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
tor_strstrip(tok->args[0], " ");
|
|
|
|
if (base16_decode(d, DIGEST_LEN, tok->args[0], strlen(tok->args[0]))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Couldn't decode fingerprint '%s'", tok->args[0]);
|
2005-11-15 22:24:32 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (memcmp(d,router->cache_info.identity_digest, DIGEST_LEN)!=0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Fingerprint '%s' does not match identity digest.",
|
|
|
|
tok->args[0]);
|
2005-11-15 22:24:32 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
if ((tok = find_first_by_keyword(tokens, K_PLATFORM))) {
|
|
|
|
router->platform = tor_strdup(tok->args[0]);
|
|
|
|
}
|
|
|
|
|
2005-05-02 23:22:31 +02:00
|
|
|
if ((tok = find_first_by_keyword(tokens, K_CONTACT))) {
|
|
|
|
router->contact_info = tor_strdup(tok->args[0]);
|
|
|
|
}
|
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
exit_policy_tokens = find_all_exitpolicy(tokens);
|
|
|
|
SMARTLIST_FOREACH(exit_policy_tokens, directory_token_t *, t,
|
|
|
|
if (router_add_exit_policy(router,t)<0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"Error in exit policy");
|
2005-05-02 23:48:25 +02:00
|
|
|
goto err;
|
|
|
|
});
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2004-10-15 03:58:11 +02:00
|
|
|
if ((tok = find_first_by_keyword(tokens, K_FAMILY)) && tok->n_args) {
|
|
|
|
int i;
|
|
|
|
router->declared_family = smartlist_create();
|
|
|
|
for (i=0;i<tok->n_args;++i) {
|
|
|
|
if (!is_legal_nickname_or_hexdigest(tok->args[i])) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Illegal nickname '%s' in family line", tok->args[i]);
|
2004-10-15 03:58:11 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
smartlist_add(router->declared_family, tor_strdup(tok->args[i]));
|
|
|
|
}
|
|
|
|
}
|
2004-11-09 21:04:00 +01:00
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_ROUTER_SIGNATURE))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing router signature");
|
2005-05-02 23:48:25 +02:00
|
|
|
goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
if (strcmp(tok->object_type, "SIGNATURE") || tok->object_size != 128) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Bad object type or length on router signature");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
2004-11-02 03:28:51 +01:00
|
|
|
if ((t=crypto_pk_public_checksig(router->identity_pkey, signed_digest,
|
|
|
|
tok->object_body, 128)) != 20) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Invalid signature %d",t);
|
2005-05-02 23:48:25 +02:00
|
|
|
goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
2005-08-24 04:31:02 +02:00
|
|
|
if (memcmp(digest, signed_digest, DIGEST_LEN)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Mismatched signature");
|
2005-05-02 23:48:25 +02:00
|
|
|
goto err;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (!router->or_port) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"or_port unreadable or 0. Failing.");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (!router->bandwidthrate) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"bandwidthrate unreadable or 0. Failing.");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (!router->platform) {
|
|
|
|
router->platform = tor_strdup("<unknown>");
|
|
|
|
}
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
err:
|
|
|
|
routerinfo_free(router);
|
|
|
|
router = NULL;
|
|
|
|
done:
|
|
|
|
if (tokens) {
|
|
|
|
SMARTLIST_FOREACH(tokens, directory_token_t *, tok, token_free(tok));
|
|
|
|
smartlist_free(tokens);
|
|
|
|
}
|
|
|
|
if (exit_policy_tokens) {
|
|
|
|
smartlist_free(exit_policy_tokens);
|
|
|
|
}
|
|
|
|
return router;
|
|
|
|
}
|
|
|
|
|
2005-09-02 22:37:31 +02:00
|
|
|
/** Helper: given a string <b>s</b>, return the start of the next router-status
|
|
|
|
* object (starting with "r " at the start of a line). If none is found,
|
|
|
|
* return the start of the next directory signature. If none is found, return
|
|
|
|
* the end of the string. */
|
|
|
|
static INLINE const char *
|
|
|
|
find_start_of_next_routerstatus(const char *s)
|
|
|
|
{
|
|
|
|
const char *eos = strstr(s, "\nr ");
|
|
|
|
if (!eos)
|
|
|
|
eos = strstr(s, "\ndirectory-signature");
|
|
|
|
if (eos)
|
|
|
|
return eos+1;
|
|
|
|
else
|
|
|
|
return s + strlen(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Given a string at *<b>s</b>, containing a routerstatus object, and an
|
|
|
|
* empty smartlist at <b>tokens</b>, parse and return the first router status
|
|
|
|
* object in the string, and advance *<b>s</b> to just after the end of the
|
|
|
|
* router status. Return NULL and advance *<b>s</b> on error. */
|
|
|
|
static routerstatus_t *
|
|
|
|
routerstatus_parse_entry_from_string(const char **s, smartlist_t *tokens)
|
|
|
|
{
|
|
|
|
const char *eos;
|
|
|
|
routerstatus_t *rs = NULL;
|
|
|
|
directory_token_t *tok;
|
|
|
|
char timebuf[ISO_TIME_LEN+1];
|
|
|
|
struct in_addr in;
|
|
|
|
|
|
|
|
tor_assert(tokens);
|
|
|
|
|
|
|
|
eos = find_start_of_next_routerstatus(*s);
|
|
|
|
|
|
|
|
if (tokenize_string(*s, eos, tokens, RTRSTATUS)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error tokenizing router status");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (smartlist_len(tokens) < 1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Impossibly short router status");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if ((tok = find_first_by_keyword(tokens, _UNRECOGNIZED))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unrecognized keyword \"%s\" in router status; skipping.",
|
|
|
|
tok->args[0]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_R))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing 'r' keywork in router status; skipping.");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (tok->n_args < 8) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
2005-12-10 10:36:26 +01:00
|
|
|
"Too few arguments to 'r' keywork in router status; skipping.");
|
2005-09-02 22:37:31 +02:00
|
|
|
}
|
|
|
|
rs = tor_malloc_zero(sizeof(routerstatus_t));
|
|
|
|
|
|
|
|
if (!is_legal_nickname(tok->args[0])) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
|
|
|
"Invalid nickname '%s' in router status; skipping.",
|
|
|
|
tok->args[0]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
strlcpy(rs->nickname, tok->args[0], sizeof(rs->nickname));
|
|
|
|
|
2005-09-18 04:22:21 +02:00
|
|
|
if (digest_from_base64(rs->identity_digest, tok->args[1])) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error decoding digest '%s'", tok->args[1]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2005-09-18 04:22:21 +02:00
|
|
|
if (digest_from_base64(rs->descriptor_digest, tok->args[2])) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error decoding digest '%s'", tok->args[2]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tor_snprintf(timebuf, sizeof(timebuf), "%s %s",
|
|
|
|
tok->args[3], tok->args[4]) < 0 ||
|
|
|
|
parse_iso_time(timebuf, &rs->published_on)<0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error parsing time '%s %s'",
|
|
|
|
tok->args[3], tok->args[4]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2005-09-08 20:46:25 +02:00
|
|
|
if (tor_inet_aton(tok->args[5], &in) == 0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error parsing address '%s'", tok->args[5]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
rs->addr = ntohl(in.s_addr);
|
|
|
|
|
|
|
|
rs->or_port =(uint16_t) tor_parse_long(tok->args[6],10,0,65535,NULL,NULL);
|
|
|
|
rs->dir_port = (uint16_t) tor_parse_long(tok->args[7],10,0,65535,NULL,NULL);
|
|
|
|
|
|
|
|
if ((tok = find_first_by_keyword(tokens, K_S))) {
|
|
|
|
int i;
|
|
|
|
for (i=0; i < tok->n_args; ++i) {
|
|
|
|
if (!strcmp(tok->args[i], "Exit"))
|
|
|
|
rs->is_exit = 1;
|
|
|
|
else if (!strcmp(tok->args[i], "Stable"))
|
|
|
|
rs->is_stable = 1;
|
|
|
|
else if (!strcmp(tok->args[i], "Fast"))
|
|
|
|
rs->is_fast = 1;
|
|
|
|
else if (!strcmp(tok->args[i], "Running"))
|
|
|
|
rs->is_running = 1;
|
|
|
|
else if (!strcmp(tok->args[i], "Named"))
|
|
|
|
rs->is_named = 1;
|
|
|
|
else if (!strcmp(tok->args[i], "Valid"))
|
|
|
|
rs->is_valid = 1;
|
2005-12-12 02:03:28 +01:00
|
|
|
else if (!strcmp(tok->args[i], "V2Dir"))
|
|
|
|
rs->is_v2_dir = 1;
|
2006-01-24 01:31:16 +01:00
|
|
|
else if (!strcmp(tok->args[i], "Guard"))
|
|
|
|
rs->is_possible_guard = 1;
|
2005-09-02 22:37:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
err:
|
|
|
|
if (rs)
|
|
|
|
routerstatus_free(rs);
|
|
|
|
rs = NULL;
|
|
|
|
done:
|
|
|
|
SMARTLIST_FOREACH(tokens, directory_token_t *, t, token_free(t));
|
|
|
|
smartlist_clear(tokens);
|
|
|
|
*s = eos;
|
|
|
|
|
|
|
|
return rs;
|
|
|
|
}
|
|
|
|
|
2005-09-12 08:56:42 +02:00
|
|
|
/** Helper to sort a smartlist of pointers to routerstatus_t */
|
|
|
|
static int
|
|
|
|
_compare_routerstatus_entries(const void **_a, const void **_b)
|
|
|
|
{
|
|
|
|
const routerstatus_t *a = *_a, *b = *_b;
|
|
|
|
return memcmp(a->identity_digest, b->identity_digest, DIGEST_LEN);
|
|
|
|
}
|
|
|
|
|
2005-09-02 22:37:31 +02:00
|
|
|
/** Given a versioned (v2 or later) network-status object in <b>s</b>, try to
|
|
|
|
* parse it and return the result. Return NULL on failure. Check the
|
|
|
|
* signature of the network status, but do not (yet) check the signing key for
|
|
|
|
* authority.
|
|
|
|
*/
|
|
|
|
networkstatus_t *
|
|
|
|
networkstatus_parse_from_string(const char *s)
|
|
|
|
{
|
|
|
|
const char *eos;
|
|
|
|
smartlist_t *tokens = smartlist_create();
|
|
|
|
networkstatus_t *ns = NULL;
|
|
|
|
char ns_digest[DIGEST_LEN];
|
|
|
|
char tmp_digest[DIGEST_LEN];
|
|
|
|
struct in_addr in;
|
|
|
|
directory_token_t *tok;
|
2005-09-18 04:22:21 +02:00
|
|
|
int i;
|
2005-09-02 22:37:31 +02:00
|
|
|
|
|
|
|
if (router_get_networkstatus_v2_hash(s, ns_digest)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unable to compute digest of network-status");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
eos = find_start_of_next_routerstatus(s);
|
|
|
|
if (tokenize_string(s, eos, tokens, NETSTATUS)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error tokenizing network-status header.");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if ((tok = find_first_by_keyword(tokens, _UNRECOGNIZED))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Unrecognized keyword '%s'; can't parse network-status",
|
|
|
|
tok->args[0]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
ns = tor_malloc_zero(sizeof(networkstatus_t));
|
2005-09-07 18:42:53 +02:00
|
|
|
memcpy(ns->networkstatus_digest, ns_digest, DIGEST_LEN);
|
2005-09-02 22:37:31 +02:00
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_NETWORK_STATUS_VERSION))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Couldn't find network-status-version keyword");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_DIR_SOURCE))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Couldn't find dir-source keyword");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (tok->n_args < 3) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Too few arguments to dir-source keyword");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
ns->source_address = tok->args[0]; tok->args[0] = NULL;
|
2005-09-08 20:53:57 +02:00
|
|
|
if (tor_inet_aton(tok->args[1], &in) == 0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error parsing address '%s'", tok->args[1]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
ns->source_addr = ntohl(in.s_addr);
|
|
|
|
ns->source_dirport =
|
|
|
|
(uint16_t) tor_parse_long(tok->args[2],10,0,65535,NULL,NULL);
|
|
|
|
if (ns->source_dirport == 0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Directory source without dirport; skipping.");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_FINGERPRINT))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Couldn't find fingerprint keyword");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (tok->n_args < 1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Too few arguments to fingerprint");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
2005-09-05 01:12:27 +02:00
|
|
|
if (base16_decode(ns->identity_digest, DIGEST_LEN, tok->args[0],
|
2005-09-02 22:37:31 +02:00
|
|
|
strlen(tok->args[0]))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Couldn't decode fingerprint '%s'", tok->args[0]);
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((tok = find_first_by_keyword(tokens, K_CONTACT)) && tok->n_args) {
|
|
|
|
ns->contact = tok->args[0];
|
|
|
|
tok->args[0] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_DIR_SIGNING_KEY)) || !tok->key) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing dir-signing-key");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
ns->signing_key = tok->key;
|
|
|
|
tok->key = NULL;
|
|
|
|
|
|
|
|
if (crypto_pk_get_digest(ns->signing_key, tmp_digest)<0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Couldn't compute signing key digest");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
2005-09-05 01:12:27 +02:00
|
|
|
if (memcmp(tmp_digest, ns->identity_digest, DIGEST_LEN)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
|
|
|
"network-status fingerprint did not match dir-signing-key");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2005-09-21 02:41:06 +02:00
|
|
|
if ((tok = find_first_by_keyword(tokens, K_DIR_OPTIONS))) {
|
|
|
|
for (i=0; i < tok->n_args; ++i) {
|
|
|
|
if (!strcmp(tok->args[i], "Names"))
|
|
|
|
ns->binds_names = 1;
|
|
|
|
if (!strcmp(tok->args[i], "Versions"))
|
|
|
|
ns->recommends_versions = 1;
|
|
|
|
}
|
2005-09-02 22:37:31 +02:00
|
|
|
}
|
|
|
|
|
2005-09-21 04:38:51 +02:00
|
|
|
if (ns->recommends_versions) {
|
2005-09-21 02:41:06 +02:00
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_CLIENT_VERSIONS)) ||
|
|
|
|
tok->n_args<1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing client-versions");
|
2005-09-21 02:41:06 +02:00
|
|
|
}
|
|
|
|
ns->client_versions = tok->args[0];
|
|
|
|
tok->args[0] = NULL;
|
2005-09-02 22:37:31 +02:00
|
|
|
|
2005-09-21 02:41:06 +02:00
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_SERVER_VERSIONS)) ||
|
|
|
|
tok->n_args<1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing server-versions on versioning directory");
|
2005-09-21 02:41:06 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
ns->server_versions = tok->args[0];
|
|
|
|
tok->args[0] = NULL;
|
2005-09-02 22:37:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(tok = find_first_by_keyword(tokens, K_PUBLISHED))) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Missing published time on directory.");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
tor_assert(tok->n_args == 1);
|
|
|
|
if (parse_iso_time(tok->args[0], &ns->published_on) < 0) {
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
ns->entries = smartlist_create();
|
|
|
|
s = eos;
|
|
|
|
SMARTLIST_FOREACH(tokens, directory_token_t *, t, token_free(t));
|
|
|
|
smartlist_clear(tokens);
|
|
|
|
while (!strcmpstart(s, "r ")) {
|
|
|
|
routerstatus_t *rs;
|
|
|
|
if ((rs = routerstatus_parse_entry_from_string(&s, tokens)))
|
|
|
|
smartlist_add(ns->entries, rs);
|
|
|
|
}
|
2005-09-12 08:56:42 +02:00
|
|
|
smartlist_sort(ns->entries, _compare_routerstatus_entries);
|
2005-09-02 22:37:31 +02:00
|
|
|
|
2005-09-18 04:22:21 +02:00
|
|
|
/* Kill duplicate entries. */
|
|
|
|
for (i=0; i < smartlist_len(ns->entries)-1; ++i) {
|
|
|
|
routerstatus_t *rs1 = smartlist_get(ns->entries, i);
|
|
|
|
routerstatus_t *rs2 = smartlist_get(ns->entries, i+1);
|
|
|
|
if (!memcmp(rs1->identity_digest,
|
|
|
|
rs2->identity_digest, DIGEST_LEN)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
|
|
|
"Network-status has two entries for the same router. "
|
|
|
|
"Dropping one.");
|
2005-09-18 04:22:21 +02:00
|
|
|
smartlist_del_keeporder(ns->entries, i--);
|
|
|
|
routerstatus_free(rs1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-02 22:37:31 +02:00
|
|
|
if (tokenize_string(s, NULL, tokens, NETSTATUS)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error tokenizing network-status footer.");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (smartlist_len(tokens) < 1) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Too few items in network-status footer.");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
tok = smartlist_get(tokens, smartlist_len(tokens)-1);
|
|
|
|
if (tok->tp != K_DIRECTORY_SIGNATURE) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
|
|
|
"Expected network-status footer to end with a signature.");
|
2005-09-02 22:37:31 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check_directory_signature(ns_digest, tok, NULL, ns->signing_key, 0))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
err:
|
2005-09-08 20:24:26 +02:00
|
|
|
if (ns)
|
|
|
|
networkstatus_free(ns);
|
2005-09-02 22:37:31 +02:00
|
|
|
ns = NULL;
|
|
|
|
done:
|
|
|
|
SMARTLIST_FOREACH(tokens, directory_token_t *, t, token_free(t));
|
|
|
|
smartlist_free(tokens);
|
|
|
|
|
|
|
|
return ns;
|
|
|
|
}
|
|
|
|
|
2005-08-08 23:58:48 +02:00
|
|
|
/** Parse the exit policy in the string <b>s</b> and return it. If
|
|
|
|
* assume_action is nonnegative, then insert its action (ADDR_POLICY_ACCEPT or
|
|
|
|
* ADDR_POLICY_REJECT) for items that specify no action.
|
2004-05-10 19:30:51 +02:00
|
|
|
*/
|
2004-12-04 02:14:36 +01:00
|
|
|
addr_policy_t *
|
2005-08-08 23:58:48 +02:00
|
|
|
router_parse_addr_policy_from_string(const char *s, int assume_action)
|
2004-05-10 19:30:51 +02:00
|
|
|
{
|
|
|
|
directory_token_t *tok = NULL;
|
|
|
|
const char *cp;
|
|
|
|
char *tmp;
|
2004-12-04 02:14:36 +01:00
|
|
|
addr_policy_t *r;
|
2004-10-14 04:49:48 +02:00
|
|
|
size_t len, idx;
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
/* *s might not end with \n, so we need to extend it with one. */
|
|
|
|
len = strlen(s);
|
|
|
|
cp = tmp = tor_malloc(len+2);
|
|
|
|
for (idx = 0; idx < len; ++idx) {
|
|
|
|
tmp[idx] = tolower(s[idx]);
|
|
|
|
}
|
|
|
|
tmp[len]='\n';
|
|
|
|
tmp[len+1]='\0';
|
2005-08-08 23:58:48 +02:00
|
|
|
while (TOR_ISSPACE(*cp))
|
|
|
|
++cp;
|
|
|
|
if ((*cp == '*' || TOR_ISDIGIT(*cp)) && assume_action >= 0) {
|
|
|
|
char *new_str = tor_malloc(len+10);
|
|
|
|
tor_snprintf(new_str, len+10, "%s %s\n",
|
|
|
|
assume_action == ADDR_POLICY_ACCEPT?"accept":"reject", cp);
|
|
|
|
tor_free(tmp);
|
|
|
|
cp = tmp = new_str;
|
|
|
|
}
|
2005-09-02 22:37:31 +02:00
|
|
|
tok = get_next_token(&cp, RTR);
|
2004-05-10 19:30:51 +02:00
|
|
|
if (tok->tp == _ERR) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Error reading exit policy: %s", tok->error);
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (tok->tp != K_ACCEPT && tok->tp != K_REJECT) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "Expected 'accept' or 'reject'.");
|
2004-05-10 19:30:51 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now that we've gotten an exit policy, add it to the router. */
|
2004-11-12 20:39:13 +01:00
|
|
|
r = router_parse_addr_policy(tok);
|
2004-05-10 19:30:51 +02:00
|
|
|
goto done;
|
|
|
|
err:
|
2004-05-20 04:42:50 +02:00
|
|
|
r = NULL;
|
2004-05-10 19:30:51 +02:00
|
|
|
done:
|
2004-09-29 08:52:36 +02:00
|
|
|
tor_free(tmp);
|
2004-05-10 19:30:51 +02:00
|
|
|
token_free(tok);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2005-09-13 23:14:55 +02:00
|
|
|
/** Add an exit policy stored in the token <b>tok</b> to the router info in
|
|
|
|
* <b>router</b>. Return 0 on success, -1 on failure. */
|
2004-11-12 20:39:13 +01:00
|
|
|
static int
|
2005-09-13 23:14:55 +02:00
|
|
|
router_add_exit_policy(routerinfo_t *router, directory_token_t *tok)
|
2004-05-20 04:42:50 +02:00
|
|
|
{
|
2004-12-04 02:14:36 +01:00
|
|
|
addr_policy_t *newe, **tmpe;
|
2004-11-12 20:39:13 +01:00
|
|
|
newe = router_parse_addr_policy(tok);
|
2004-05-20 04:42:50 +02:00
|
|
|
if (!newe)
|
|
|
|
return -1;
|
|
|
|
for (tmpe = &router->exit_policy; *tmpe; tmpe=&((*tmpe)->next))
|
|
|
|
;
|
|
|
|
*tmpe = newe;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-08-18 23:56:45 +02:00
|
|
|
/** Given a K_ACCEPT or K_REJECT token and a router, create and return
|
|
|
|
* a new exit_policy_t corresponding to the token. */
|
2004-12-04 02:14:36 +01:00
|
|
|
static addr_policy_t *
|
2005-06-11 20:52:12 +02:00
|
|
|
router_parse_addr_policy(directory_token_t *tok)
|
|
|
|
{
|
2004-12-04 02:14:36 +01:00
|
|
|
addr_policy_t *newe;
|
2005-02-22 09:18:36 +01:00
|
|
|
// struct in_addr in;
|
|
|
|
char *arg;
|
|
|
|
// char *address;
|
|
|
|
// char buf[INET_NTOA_BUF_LEN];
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
tor_assert(tok->tp == K_REJECT || tok->tp == K_ACCEPT);
|
|
|
|
|
|
|
|
if (tok->n_args != 1)
|
2004-05-20 04:42:50 +02:00
|
|
|
return NULL;
|
2004-05-10 19:30:51 +02:00
|
|
|
arg = tok->args[0];
|
|
|
|
|
2004-12-04 02:14:36 +01:00
|
|
|
newe = tor_malloc_zero(sizeof(addr_policy_t));
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
newe->string = tor_malloc(8+strlen(arg));
|
2004-12-04 02:23:04 +01:00
|
|
|
/* XXX eventually, use the code from router.c:727 to generate this */
|
|
|
|
tor_snprintf(newe->string, 8+strlen(arg), "%s %s",
|
|
|
|
(tok->tp == K_REJECT) ? "reject" : "accept", arg);
|
2004-11-12 20:39:13 +01:00
|
|
|
newe->policy_type = (tok->tp == K_REJECT) ? ADDR_POLICY_REJECT
|
|
|
|
: ADDR_POLICY_ACCEPT;
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2004-10-16 23:42:09 +02:00
|
|
|
if (parse_addr_and_port_range(arg, &newe->addr, &newe->msk,
|
|
|
|
&newe->prt_min, &newe->prt_max))
|
2004-05-10 19:30:51 +02:00
|
|
|
goto policy_read_failed;
|
|
|
|
|
2005-02-22 09:18:36 +01:00
|
|
|
// in.s_addr = htonl(newe->addr);
|
|
|
|
// tor_inet_ntoa(&in, buf, sizeof(buf));
|
|
|
|
// address = tor_strdup(buf);
|
2004-12-04 01:25:54 +01:00
|
|
|
// in.s_addr = htonl(newe->msk);
|
|
|
|
// log_fn(LOG_DEBUG,"%s %s/%s:%d-%d",
|
|
|
|
// newe->policy_type == ADDR_POLICY_REJECT ? "reject" : "accept",
|
|
|
|
// address, inet_ntoa(in), newe->prt_min, newe->prt_max);
|
2005-02-22 09:18:36 +01:00
|
|
|
// tor_free(address);
|
2004-05-10 19:30:51 +02:00
|
|
|
|
2004-05-20 04:42:50 +02:00
|
|
|
return newe;
|
2004-05-10 19:30:51 +02:00
|
|
|
|
|
|
|
policy_read_failed:
|
|
|
|
tor_assert(newe->string);
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"Couldn't parse line '%s'. Dropping", newe->string);
|
2004-05-10 19:30:51 +02:00
|
|
|
tor_free(newe->string);
|
2004-09-29 08:52:36 +02:00
|
|
|
tor_free(newe);
|
2004-05-20 04:42:50 +02:00
|
|
|
return NULL;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
|
2005-09-13 23:14:55 +02:00
|
|
|
/** Log and exit if <b>t</b> is malformed */
|
2004-12-04 02:14:36 +01:00
|
|
|
void
|
|
|
|
assert_addr_policy_ok(addr_policy_t *t)
|
|
|
|
{
|
|
|
|
addr_policy_t *t2;
|
|
|
|
while (t) {
|
|
|
|
tor_assert(t->policy_type == ADDR_POLICY_REJECT ||
|
|
|
|
t->policy_type == ADDR_POLICY_ACCEPT);
|
|
|
|
tor_assert(t->prt_min <= t->prt_max);
|
2005-08-08 23:58:48 +02:00
|
|
|
t2 = router_parse_addr_policy_from_string(t->string, -1);
|
2004-12-04 02:14:36 +01:00
|
|
|
tor_assert(t2);
|
|
|
|
tor_assert(t2->policy_type == t->policy_type);
|
|
|
|
tor_assert(t2->addr == t->addr);
|
|
|
|
tor_assert(t2->msk == t->msk);
|
|
|
|
tor_assert(t2->prt_min == t->prt_min);
|
|
|
|
tor_assert(t2->prt_max == t->prt_max);
|
|
|
|
tor_assert(!strcmp(t2->string, t->string));
|
|
|
|
tor_assert(t2->next == NULL);
|
|
|
|
addr_policy_free(t2);
|
|
|
|
|
|
|
|
t = t->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2004-05-10 19:30:51 +02:00
|
|
|
/*
|
|
|
|
* Low-level tokenizer for router descriptors and directories.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Free all resources allocated for <b>tok</b> */
|
|
|
|
static void
|
|
|
|
token_free(directory_token_t *tok)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
tor_assert(tok);
|
|
|
|
if (tok->args) {
|
|
|
|
for (i = 0; i < tok->n_args; ++i) {
|
|
|
|
tor_free(tok->args[i]);
|
|
|
|
}
|
|
|
|
tor_free(tok->args);
|
|
|
|
}
|
|
|
|
tor_free(tok->object_type);
|
|
|
|
tor_free(tok->object_body);
|
|
|
|
if (tok->key)
|
|
|
|
crypto_free_pk_env(tok->key);
|
|
|
|
tor_free(tok);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Helper function: read the next token from *s, advance *s to the end
|
2005-09-02 22:37:31 +02:00
|
|
|
* of the token, and return the parsed token. If 'where' is DIR
|
|
|
|
* or RTR, reject all tokens of the wrong type.
|
2004-05-10 19:30:51 +02:00
|
|
|
*/
|
|
|
|
static directory_token_t *
|
2005-06-11 20:52:12 +02:00
|
|
|
get_next_token(const char **s, where_syntax where)
|
|
|
|
{
|
2004-05-10 19:30:51 +02:00
|
|
|
const char *next, *obstart;
|
2004-06-21 06:37:27 +02:00
|
|
|
int i, done, allocated, is_opt;
|
2004-05-10 19:30:51 +02:00
|
|
|
directory_token_t *tok;
|
|
|
|
arg_syntax a_syn;
|
|
|
|
obj_syntax o_syn = NO_OBJ;
|
|
|
|
|
|
|
|
#define RET_ERR(msg) \
|
|
|
|
do { if (tok) token_free(tok); \
|
|
|
|
tok = tor_malloc_zero(sizeof(directory_token_t));\
|
|
|
|
tok->tp = _ERR; \
|
|
|
|
tok->error = msg; \
|
|
|
|
goto done_tokenizing; } while (0)
|
|
|
|
|
|
|
|
tok = tor_malloc_zero(sizeof(directory_token_t));
|
|
|
|
tok->tp = _ERR;
|
|
|
|
|
|
|
|
*s = eat_whitespace(*s);
|
|
|
|
if (!**s) {
|
|
|
|
tok->tp = _EOF;
|
|
|
|
return tok;
|
|
|
|
}
|
|
|
|
next = find_whitespace(*s);
|
|
|
|
if (!next) {
|
|
|
|
tok->error = "Unexpected EOF"; return tok;
|
|
|
|
}
|
|
|
|
/* It's a keyword... but which one? */
|
2004-06-21 06:37:27 +02:00
|
|
|
is_opt = !strncmp("opt", *s, next-*s);
|
|
|
|
if (is_opt) {
|
|
|
|
*s = eat_whitespace(next);
|
|
|
|
next = NULL;
|
|
|
|
if (**s)
|
|
|
|
next = find_whitespace(*s);
|
|
|
|
if (!**s || !next) {
|
|
|
|
RET_ERR("opt without keyword");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; token_table[i].t ; ++i) {
|
2004-05-10 19:30:51 +02:00
|
|
|
if (!strncmp(token_table[i].t, *s, next-*s)) {
|
|
|
|
/* We've found the keyword. */
|
|
|
|
tok->tp = token_table[i].v;
|
|
|
|
a_syn = token_table[i].s;
|
|
|
|
o_syn = token_table[i].os;
|
2005-09-02 22:37:31 +02:00
|
|
|
if (!(token_table[i].ws & where)) {
|
|
|
|
if (where == DIR) {
|
|
|
|
RET_ERR("Found an out-of-place token in a directory section");
|
|
|
|
} else if (where == RTR) {
|
|
|
|
RET_ERR("Found an out-of-place token in a router descriptor");
|
|
|
|
} else if (where == NETSTATUS) {
|
|
|
|
RET_ERR("Found an out-of-place token in a network-status header");
|
2004-05-10 19:30:51 +02:00
|
|
|
} else {
|
2005-09-02 22:37:31 +02:00
|
|
|
RET_ERR("Found an out-of-place token in a router status body");
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_syn == ARGS) {
|
|
|
|
/* This keyword takes multiple arguments. */
|
|
|
|
i = 0;
|
|
|
|
done = (*next == '\n');
|
|
|
|
allocated = 32;
|
|
|
|
tok->args = tor_malloc(sizeof(char*)*32);
|
|
|
|
*s = eat_whitespace_no_nl(next);
|
|
|
|
while (**s != '\n' && !done) {
|
|
|
|
next = find_whitespace(*s);
|
|
|
|
if (*next == '\n')
|
|
|
|
done = 1;
|
|
|
|
if (i == allocated) {
|
|
|
|
allocated *= 2;
|
|
|
|
tok->args = tor_realloc(tok->args,sizeof(char*)*allocated);
|
|
|
|
}
|
|
|
|
tok->args[i++] = tor_strndup(*s,next-*s);
|
|
|
|
*s = eat_whitespace_no_nl(next+1);
|
|
|
|
}
|
|
|
|
tok->n_args = i;
|
|
|
|
} else if (a_syn == CONCAT_ARGS) {
|
|
|
|
/* The keyword takes the line as a single argument */
|
|
|
|
*s = eat_whitespace_no_nl(next);
|
|
|
|
next = strchr(*s, '\n');
|
|
|
|
if (!next)
|
|
|
|
RET_ERR("Unexpected EOF");
|
|
|
|
tok->args = tor_malloc(sizeof(char*));
|
|
|
|
tok->args[0] = tor_strndup(*s,next-*s);
|
|
|
|
tok->n_args = 1;
|
|
|
|
*s = eat_whitespace_no_nl(next+1);
|
|
|
|
} else {
|
|
|
|
/* The keyword takes no arguments. */
|
|
|
|
tor_assert(a_syn == NO_ARGS);
|
|
|
|
*s = eat_whitespace_no_nl(next);
|
|
|
|
if (**s != '\n') {
|
|
|
|
RET_ERR("Unexpected arguments");
|
|
|
|
}
|
|
|
|
tok->n_args = 0;
|
|
|
|
*s = eat_whitespace_no_nl(*s+1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tok->tp == _ERR) {
|
2004-06-21 06:37:27 +02:00
|
|
|
if (is_opt) {
|
|
|
|
tok->tp = K_OPT;
|
|
|
|
*s = eat_whitespace_no_nl(next);
|
|
|
|
next = strchr(*s,'\n');
|
|
|
|
if (!next)
|
|
|
|
RET_ERR("Unexpected EOF");
|
|
|
|
tok->args = tor_malloc(sizeof(char*));
|
|
|
|
tok->args[0] = tor_strndup(*s,next-*s);
|
|
|
|
tok->n_args = 1;
|
|
|
|
*s = eat_whitespace_no_nl(next+1);
|
2004-10-06 15:28:34 +02:00
|
|
|
o_syn = OBJ_OK;
|
2004-06-21 06:37:27 +02:00
|
|
|
} else {
|
|
|
|
tok->tp = _UNRECOGNIZED;
|
|
|
|
next = strchr(*s, '\n');
|
|
|
|
if (!next) {
|
|
|
|
RET_ERR("Unexpected EOF");
|
|
|
|
}
|
|
|
|
tok->args = tor_malloc(sizeof(char*));
|
|
|
|
tok->args[0] = tor_strndup(*s,next-*s);
|
|
|
|
tok->n_args = 1;
|
|
|
|
*s = next+1;
|
|
|
|
o_syn = OBJ_OK;
|
2004-05-10 19:30:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
*s = eat_whitespace(*s);
|
2004-09-02 20:39:59 +02:00
|
|
|
if (strcmpstart(*s, "-----BEGIN ")) {
|
2004-05-10 19:30:51 +02:00
|
|
|
goto done_tokenizing;
|
|
|
|
}
|
|
|
|
obstart = *s;
|
|
|
|
*s += 11; /* length of "-----BEGIN ". */
|
|
|
|
next = strchr(*s, '\n');
|
2004-09-02 20:39:59 +02:00
|
|
|
if (next-*s < 6 || strcmpstart(next-5, "-----\n")) {
|
2004-05-10 19:30:51 +02:00
|
|
|
RET_ERR("Malformed object: bad begin line");
|
|
|
|
}
|
|
|
|
tok->object_type = tor_strndup(*s, next-*s-5);
|
|
|
|
*s = next+1;
|
|
|
|
next = strstr(*s, "-----END ");
|
|
|
|
if (!next) {
|
|
|
|
RET_ERR("Malformed object: missing end line");
|
|
|
|
}
|
|
|
|
if (!strcmp(tok->object_type, "RSA PUBLIC KEY")) {
|
2004-09-02 20:39:59 +02:00
|
|
|
if (strcmpstart(next, "-----END RSA PUBLIC KEY-----\n"))
|
2004-05-10 19:30:51 +02:00
|
|
|
RET_ERR("Malformed object: mismatched end line");
|
|
|
|
next = strchr(next,'\n')+1;
|
|
|
|
tok->key = crypto_new_pk_env();
|
|
|
|
if (crypto_pk_read_public_key_from_string(tok->key, obstart, next-obstart))
|
|
|
|
RET_ERR("Couldn't parse public key.");
|
|
|
|
*s = next;
|
|
|
|
} else {
|
|
|
|
tok->object_body = tor_malloc(next-*s); /* really, this is too much RAM. */
|
|
|
|
i = base64_decode(tok->object_body, 256, *s, next-*s);
|
|
|
|
if (i<0) {
|
|
|
|
RET_ERR("Malformed object: bad base64-encoded data");
|
|
|
|
}
|
|
|
|
tok->object_size = i;
|
|
|
|
*s = next + 9; /* length of "-----END ". */
|
|
|
|
i = strlen(tok->object_type);
|
2004-09-02 20:39:59 +02:00
|
|
|
if (strncmp(*s, tok->object_type, i) || strcmpstart(*s+i, "-----\n")) {
|
2004-05-10 19:30:51 +02:00
|
|
|
RET_ERR("Malformed object: mismatched end tag");
|
|
|
|
}
|
|
|
|
*s += i+6;
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
switch (o_syn)
|
2004-05-10 19:30:51 +02:00
|
|
|
{
|
|
|
|
case NO_OBJ:
|
|
|
|
if (tok->object_body)
|
|
|
|
RET_ERR("Unexpected object for keyword");
|
|
|
|
if (tok->key)
|
|
|
|
RET_ERR("Unexpected public key for keyword");
|
|
|
|
break;
|
|
|
|
case NEED_OBJ:
|
|
|
|
if (!tok->object_body)
|
|
|
|
RET_ERR("Missing object for keyword");
|
|
|
|
break;
|
|
|
|
case NEED_KEY:
|
|
|
|
if (!tok->key)
|
2004-10-06 15:28:34 +02:00
|
|
|
RET_ERR("Missing public key for keyword");
|
2004-05-10 19:30:51 +02:00
|
|
|
break;
|
|
|
|
case OBJ_OK:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
done_tokenizing:
|
|
|
|
|
|
|
|
return tok;
|
|
|
|
#undef RET_ERR
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Read all tokens from a string between <b>start</b> and <b>end</b>, and add
|
|
|
|
* them to <b>out</b>. If <b>is_dir</b> is true, reject all non-directory
|
|
|
|
* tokens; else reject all non-routerdescriptor tokens.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
tokenize_string(const char *start, const char *end, smartlist_t *out,
|
2005-09-02 22:37:31 +02:00
|
|
|
where_syntax where)
|
2004-05-10 19:30:51 +02:00
|
|
|
{
|
|
|
|
const char **s;
|
|
|
|
directory_token_t *tok = NULL;
|
|
|
|
s = &start;
|
2005-09-08 21:10:36 +02:00
|
|
|
if (!end)
|
|
|
|
end = start+strlen(start);
|
2004-05-10 19:30:51 +02:00
|
|
|
while (*s < end && (!tok || tok->tp != _EOF)) {
|
|
|
|
tok = get_next_token(s, where);
|
|
|
|
if (tok->tp == _ERR) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR, "parse error: %s", tok->error);
|
2004-05-10 19:30:51 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
smartlist_add(out, tok);
|
|
|
|
*s = eat_whitespace(*s);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Find the first token in <b>s</b> whose keyword is <b>keyword</b>; return
|
|
|
|
* NULL if no such keyword is found.
|
|
|
|
*/
|
|
|
|
static directory_token_t *
|
|
|
|
find_first_by_keyword(smartlist_t *s, directory_keyword keyword)
|
|
|
|
{
|
|
|
|
SMARTLIST_FOREACH(s, directory_token_t *, t, if (t->tp == keyword) return t);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Return a newly allocated smartlist of all accept or reject tokens in
|
|
|
|
* <b>s</b>.
|
|
|
|
*/
|
|
|
|
static smartlist_t *
|
|
|
|
find_all_exitpolicy(smartlist_t *s)
|
|
|
|
{
|
|
|
|
smartlist_t *out = smartlist_create();
|
|
|
|
SMARTLIST_FOREACH(s, directory_token_t *, t,
|
|
|
|
if (t->tp == K_ACCEPT || t->tp == K_REJECT)
|
|
|
|
smartlist_add(out,t));
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2006-02-05 02:57:27 +01:00
|
|
|
/** Compute the SHA-1 digest of the substring of <b>s</b> taken from the first
|
2004-05-10 19:30:51 +02:00
|
|
|
* occurrence of <b>start_str</b> through the first newline after the first
|
|
|
|
* subsequent occurrence of <b>end_str</b>; store the 20-byte result in
|
|
|
|
* <b>digest</b>; return 0 on success.
|
|
|
|
*
|
|
|
|
* If no such substring exists, return -1.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
router_get_hash_impl(const char *s, char *digest,
|
|
|
|
const char *start_str,
|
|
|
|
const char *end_str)
|
2004-05-10 19:30:51 +02:00
|
|
|
{
|
|
|
|
char *start, *end;
|
|
|
|
start = strstr(s, start_str);
|
|
|
|
if (!start) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"couldn't find \"%s\"",start_str);
|
2004-05-10 19:30:51 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-08-06 21:54:20 +02:00
|
|
|
if (start != s && *(start-1) != '\n') {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,
|
|
|
|
"first occurrence of \"%s\" is not at the start of a line",
|
|
|
|
start_str);
|
2004-08-06 21:54:20 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-05-10 19:30:51 +02:00
|
|
|
end = strstr(start+strlen(start_str), end_str);
|
|
|
|
if (!end) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"couldn't find \"%s\"",end_str);
|
2004-05-10 19:30:51 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2004-08-07 05:25:42 +02:00
|
|
|
end = strchr(end+strlen(end_str), '\n');
|
2004-05-10 19:30:51 +02:00
|
|
|
if (!end) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"couldn't find EOL");
|
2004-05-10 19:30:51 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
++end;
|
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
if (crypto_digest(digest, start, end-start)) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"couldn't compute digest");
|
2004-05-10 19:30:51 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-09-27 08:00:43 +02:00
|
|
|
/** Parse the Tor version of the platform string <b>platform</b>,
|
|
|
|
* and compare it to the version in <b>cutoff</b>. Return 1 if
|
|
|
|
* the router is at least as new as the cutoff, else return 0.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
tor_version_as_new_as(const char *platform, const char *cutoff)
|
|
|
|
{
|
2004-09-27 08:00:43 +02:00
|
|
|
tor_version_t cutoff_version, router_version;
|
|
|
|
char *s, *start;
|
|
|
|
char tmp[128];
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (tor_version_parse(cutoff, &cutoff_version)<0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_warn(LD_DIR,"Bug: cutoff version '%s' unparseable.",cutoff);
|
2004-09-27 08:00:43 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2004-11-28 10:05:49 +01:00
|
|
|
if (strcmpstart(platform,"Tor ")) /* nonstandard Tor; be safe and say yes */
|
2004-09-27 08:00:43 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
start = (char *)eat_whitespace(platform+3);
|
|
|
|
if (!*start) return 0;
|
|
|
|
s = (char *)find_whitespace(start); /* also finds '\0', which is fine */
|
2004-11-28 10:05:49 +01:00
|
|
|
if ((size_t)(s-start+1) >= sizeof(tmp)) /* too big, no */
|
2004-09-27 08:00:43 +02:00
|
|
|
return 0;
|
|
|
|
strlcpy(tmp, start, s-start+1);
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (tor_version_parse(tmp, &router_version)<0) {
|
2006-02-13 11:33:00 +01:00
|
|
|
log_info(LD_DIR,"Router version '%s' unparseable.",tmp);
|
2004-09-27 08:00:43 +02:00
|
|
|
return 1; /* be safe and say yes */
|
|
|
|
}
|
|
|
|
|
|
|
|
return tor_version_compare(&router_version, &cutoff_version) >= 0;
|
|
|
|
}
|
|
|
|
|
2004-11-09 19:22:17 +01:00
|
|
|
/** Parse a tor version from <b>s</b>, and store the result in <b>out</b>.
|
|
|
|
* Return 0 on success, -1 on failure. */
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
tor_version_parse(const char *s, tor_version_t *out)
|
2004-07-13 21:16:49 +02:00
|
|
|
{
|
|
|
|
char *eos=NULL, *cp=NULL;
|
|
|
|
/* Format is:
|
2005-03-01 02:44:57 +01:00
|
|
|
* "Tor " ? NUM dot NUM dot NUM [ ( pre | rc | dot ) NUM [ -cvs ] ]
|
2004-07-13 21:16:49 +02:00
|
|
|
*/
|
2004-10-17 00:14:52 +02:00
|
|
|
tor_assert(s);
|
|
|
|
tor_assert(out);
|
2004-11-30 00:04:26 +01:00
|
|
|
|
2004-07-13 21:16:49 +02:00
|
|
|
memset(out, 0, sizeof(tor_version_t));
|
|
|
|
|
2005-03-01 02:44:57 +01:00
|
|
|
if (!strcasecmpstart(s, "Tor "))
|
2006-01-02 06:11:31 +01:00
|
|
|
s += 4;
|
2005-03-01 02:44:57 +01:00
|
|
|
|
2004-07-13 21:16:49 +02:00
|
|
|
/* Get major. */
|
|
|
|
out->major = strtol(s,&eos,10);
|
|
|
|
if (!eos || eos==s || *eos != '.') return -1;
|
|
|
|
cp = eos+1;
|
|
|
|
|
|
|
|
/* Get minor */
|
|
|
|
out->minor = strtol(cp,&eos,10);
|
|
|
|
if (!eos || eos==cp || *eos != '.') return -1;
|
|
|
|
cp = eos+1;
|
|
|
|
|
|
|
|
/* Get micro */
|
|
|
|
out->micro = strtol(cp,&eos,10);
|
|
|
|
if (!eos || eos==cp) return -1;
|
|
|
|
if (!*eos) {
|
|
|
|
out->status = VER_RELEASE;
|
|
|
|
out->patchlevel = 0;
|
|
|
|
out->cvs = IS_NOT_CVS;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
cp = eos;
|
|
|
|
|
|
|
|
/* Get status */
|
|
|
|
if (*cp == '.') {
|
|
|
|
out->status = VER_RELEASE;
|
|
|
|
++cp;
|
|
|
|
} else if (0==strncmp(cp, "pre", 3)) {
|
|
|
|
out->status = VER_PRE;
|
|
|
|
cp += 3;
|
|
|
|
} else if (0==strncmp(cp, "rc", 2)) {
|
|
|
|
out->status = VER_RC;
|
|
|
|
cp += 2;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get patchlevel */
|
|
|
|
out->patchlevel = strtol(cp,&eos,10);
|
|
|
|
if (!eos || eos==cp) return -1;
|
|
|
|
cp = eos;
|
|
|
|
|
2004-11-30 00:04:26 +01:00
|
|
|
/* Get cvs status and status tag. */
|
|
|
|
if (*cp == '-' || *cp == '.')
|
|
|
|
++cp;
|
|
|
|
strlcpy(out->status_tag, cp, sizeof(out->status_tag));
|
2004-11-30 04:41:06 +01:00
|
|
|
if (0==strcmp(cp, "cvs")) {
|
2004-07-13 21:16:49 +02:00
|
|
|
out->cvs = IS_CVS;
|
|
|
|
} else {
|
2004-11-30 00:04:26 +01:00
|
|
|
out->cvs = IS_NOT_CVS;
|
2004-07-13 21:16:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Compare two tor versions; Return <0 if a < b; 0 if a ==b, >0 if a >
|
|
|
|
* b. */
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
tor_version_compare(tor_version_t *a, tor_version_t *b)
|
2004-07-13 21:16:49 +02:00
|
|
|
{
|
|
|
|
int i;
|
2004-10-17 00:14:52 +02:00
|
|
|
tor_assert(a);
|
|
|
|
tor_assert(b);
|
2004-07-13 21:16:49 +02:00
|
|
|
if ((i = a->major - b->major))
|
|
|
|
return i;
|
|
|
|
else if ((i = a->minor - b->minor))
|
|
|
|
return i;
|
|
|
|
else if ((i = a->micro - b->micro))
|
|
|
|
return i;
|
|
|
|
else if ((i = a->status - b->status))
|
|
|
|
return i;
|
|
|
|
else if ((i = a->patchlevel - b->patchlevel))
|
|
|
|
return i;
|
2004-11-30 00:04:26 +01:00
|
|
|
|
|
|
|
if (a->major > 0 || a->minor > 0) {
|
|
|
|
return strcmp(a->status_tag, b->status_tag);
|
|
|
|
} else {
|
|
|
|
return (a->cvs - b->cvs);
|
|
|
|
}
|
2004-07-13 21:16:49 +02:00
|
|
|
}
|
|
|
|
|
2005-06-11 20:52:12 +02:00
|
|
|
/** Return true iff versions <b>a</b> and <b>b</b> belong to the same series.
|
|
|
|
*/
|
2005-03-01 02:44:57 +01:00
|
|
|
static int
|
|
|
|
tor_version_same_series(tor_version_t *a, tor_version_t *b)
|
|
|
|
{
|
|
|
|
tor_assert(a);
|
|
|
|
tor_assert(b);
|
|
|
|
return ((a->major == b->major) &&
|
|
|
|
(a->minor == b->minor) &&
|
|
|
|
(a->micro == b->micro));
|
|
|
|
}
|
2005-06-09 21:03:31 +02:00
|
|
|
|
2006-02-06 06:04:27 +01:00
|
|
|
/** Helper: Given pointers to two strings describing tor versions, return -1
|
|
|
|
* if _a precedes _b, 1 if _b preceeds _a, and 0 if they are equivalent.
|
|
|
|
* Used to sort a list of versions. */
|
|
|
|
static int
|
|
|
|
_compare_tor_version_str_ptr(const void **_a, const void **_b)
|
|
|
|
{
|
|
|
|
const char *a = *_a, *b = *_b;
|
|
|
|
int ca, cb;
|
|
|
|
tor_version_t va, vb;
|
|
|
|
ca = tor_version_parse(a, &va);
|
|
|
|
cb = tor_version_parse(b, &vb);
|
|
|
|
/* If they both parse, compare them. */
|
|
|
|
if (!ca && !cb)
|
|
|
|
return tor_version_compare(&va,&vb);
|
|
|
|
/* If one parses, it comes first. */
|
|
|
|
if (!ca && cb)
|
|
|
|
return -1;
|
|
|
|
if (ca && !cb)
|
|
|
|
return 1;
|
|
|
|
/* If neither parses, compare strings. Also, the directory server admin
|
|
|
|
** needs to be smacked upside the head. But Tor is tolerant and gentle. */
|
|
|
|
return strcmp(a,b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Sort a list of string-representations of versions in ascending order. */
|
|
|
|
void
|
|
|
|
sort_version_list(smartlist_t *versions)
|
|
|
|
{
|
|
|
|
smartlist_sort(versions, _compare_tor_version_str_ptr);
|
|
|
|
}
|
|
|
|
|