2010-07-21 14:38:52 +02:00
|
|
|
/* Copyright (c) 2001 Matej Pfajfar.
|
|
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2015-01-02 20:27:39 +01:00
|
|
|
* Copyright (c) 2007-2015, The Tor Project, Inc. */
|
2010-07-21 14:38:52 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file geoip.h
|
|
|
|
* \brief Header file for geoip.c.
|
|
|
|
**/
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_GEOIP_H
|
|
|
|
#define TOR_GEOIP_H
|
2010-07-21 14:38:52 +02:00
|
|
|
|
2013-06-06 23:58:28 +02:00
|
|
|
#include "testsupport.h"
|
|
|
|
|
2010-07-21 14:38:52 +02:00
|
|
|
#ifdef GEOIP_PRIVATE
|
2013-06-06 23:58:28 +02:00
|
|
|
STATIC int geoip_parse_entry(const char *line, sa_family_t family);
|
|
|
|
STATIC int geoip_get_country_by_ipv4(uint32_t ipaddr);
|
|
|
|
STATIC int geoip_get_country_by_ipv6(const struct in6_addr *addr);
|
2015-09-07 19:22:33 +02:00
|
|
|
STATIC void clear_geoip_db(void);
|
2010-07-21 14:38:52 +02:00
|
|
|
#endif
|
2011-06-14 19:01:38 +02:00
|
|
|
int should_record_bridge_info(const or_options_t *options);
|
2012-10-20 19:35:00 +02:00
|
|
|
int geoip_load_file(sa_family_t family, const char *filename);
|
2014-08-27 12:41:25 +02:00
|
|
|
MOCK_DECL(int, geoip_get_country_by_addr, (const tor_addr_t *addr));
|
|
|
|
MOCK_DECL(int, geoip_get_n_countries, (void));
|
2010-07-21 14:38:52 +02:00
|
|
|
const char *geoip_get_country_name(country_t num);
|
2014-08-27 12:41:25 +02:00
|
|
|
MOCK_DECL(int, geoip_is_loaded, (sa_family_t family));
|
2012-10-20 18:48:58 +02:00
|
|
|
const char *geoip_db_digest(sa_family_t family);
|
2014-08-27 12:41:25 +02:00
|
|
|
MOCK_DECL(country_t, geoip_get_country, (const char *countrycode));
|
2010-07-21 14:38:52 +02:00
|
|
|
|
|
|
|
void geoip_note_client_seen(geoip_client_action_t action,
|
2013-02-11 20:51:41 +01:00
|
|
|
const tor_addr_t *addr, const char *transport_name,
|
|
|
|
time_t now);
|
2010-07-21 14:38:52 +02:00
|
|
|
void geoip_remove_old_clients(time_t cutoff);
|
|
|
|
|
2013-01-17 10:45:19 +01:00
|
|
|
void geoip_note_ns_response(geoip_ns_response_t response);
|
2013-02-11 20:52:28 +01:00
|
|
|
char *geoip_get_transport_history(void);
|
2012-10-19 23:23:04 +02:00
|
|
|
int geoip_get_client_history(geoip_client_action_t action,
|
|
|
|
char **country_str, char **ipver_str);
|
2013-01-17 10:45:19 +01:00
|
|
|
char *geoip_get_request_history(void);
|
2010-07-21 14:38:52 +02:00
|
|
|
int getinfo_helper_geoip(control_connection_t *control_conn,
|
|
|
|
const char *question, char **answer,
|
|
|
|
const char **errmsg);
|
|
|
|
void geoip_free_all(void);
|
|
|
|
|
|
|
|
void geoip_start_dirreq(uint64_t dirreq_id, size_t response_size,
|
2013-01-17 10:45:19 +01:00
|
|
|
dirreq_type_t type);
|
2010-07-21 14:38:52 +02:00
|
|
|
void geoip_change_dirreq_state(uint64_t dirreq_id, dirreq_type_t type,
|
|
|
|
dirreq_state_t new_state);
|
|
|
|
|
|
|
|
void geoip_dirreq_stats_init(time_t now);
|
2011-08-04 12:28:12 +02:00
|
|
|
void geoip_reset_dirreq_stats(time_t now);
|
|
|
|
char *geoip_format_dirreq_stats(time_t now);
|
2010-06-21 18:52:46 +02:00
|
|
|
time_t geoip_dirreq_stats_write(time_t now);
|
|
|
|
void geoip_dirreq_stats_term(void);
|
2010-07-21 14:38:52 +02:00
|
|
|
void geoip_entry_stats_init(time_t now);
|
2010-06-21 18:52:46 +02:00
|
|
|
time_t geoip_entry_stats_write(time_t now);
|
|
|
|
void geoip_entry_stats_term(void);
|
2011-08-04 14:14:01 +02:00
|
|
|
void geoip_reset_entry_stats(time_t now);
|
|
|
|
char *geoip_format_entry_stats(time_t now);
|
2010-07-21 14:38:52 +02:00
|
|
|
void geoip_bridge_stats_init(time_t now);
|
2011-08-04 14:45:24 +02:00
|
|
|
char *geoip_format_bridge_stats(time_t now);
|
2010-07-21 14:38:52 +02:00
|
|
|
time_t geoip_bridge_stats_write(time_t now);
|
2010-06-21 18:52:46 +02:00
|
|
|
void geoip_bridge_stats_term(void);
|
2010-07-21 14:38:52 +02:00
|
|
|
const char *geoip_get_bridge_stats_extrainfo(time_t);
|
2011-03-16 03:39:22 +01:00
|
|
|
char *geoip_get_bridge_stats_controller(time_t);
|
2013-02-26 11:43:53 +01:00
|
|
|
char *format_client_stats_heartbeat(time_t now);
|
2010-07-21 14:38:52 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|