Tor 0.4.9.0-alpha-dev
circuitbuild_relay.h
Go to the documentation of this file.
1/* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2021, The Tor Project, Inc. */
5/* See LICENSE for licensing information */
6
7/**
8 * @file circuitbuild_relay.h
9 * @brief Header for feature/relay/circuitbuild_relay.c
10 **/
11
12#ifndef TOR_FEATURE_RELAY_CIRCUITBUILD_RELAY_H
13#define TOR_FEATURE_RELAY_CIRCUITBUILD_RELAY_H
14
15#include "lib/cc/torint.h"
16#include "lib/log/log.h"
17
18#include "app/config/config.h"
19
20struct cell_t;
21struct created_cell_t;
22
23struct circuit_t;
24struct or_circuit_t;
25struct extend_cell_t;
26
27/* Log a protocol warning about getting an extend cell on a client. */
28static inline void
29circuitbuild_warn_client_extend(void)
30{
31 log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
32 "Got an extend cell, but running as a client. Closing.");
33}
34
35#ifdef HAVE_MODULE_RELAY
36
37int circuit_extend(struct cell_t *cell, struct circuit_t *circ);
38
39int onionskin_answer(struct or_circuit_t *circ,
40 const struct created_cell_t *created_cell,
41 const char *keys, size_t keys_len,
42 const uint8_t *rend_circ_nonce);
43
44#else /* !defined(HAVE_MODULE_RELAY) */
45
46static inline int
47circuit_extend(struct cell_t *cell, struct circuit_t *circ)
48{
49 (void)cell;
50 (void)circ;
51 circuitbuild_warn_client_extend();
52 return -1;
53}
54
55static inline int
57 const struct created_cell_t *created_cell,
58 const char *keys, size_t keys_len,
59 const uint8_t *rend_circ_nonce)
60{
61 (void)circ;
62 (void)created_cell;
63 (void)keys;
64 (void)keys_len;
65 (void)rend_circ_nonce;
67 return -1;
68}
69
70#endif /* defined(HAVE_MODULE_RELAY) */
71
72#ifdef TOR_UNIT_TESTS
73
74STATIC int circuit_extend_state_valid_helper(const struct circuit_t *circ);
75STATIC int circuit_extend_add_ed25519_helper(struct extend_cell_t *ec);
76STATIC int circuit_extend_add_ipv4_helper(struct extend_cell_t *ec);
77STATIC int circuit_extend_add_ipv6_helper(struct extend_cell_t *ec);
78STATIC int circuit_extend_lspec_valid_helper(const struct extend_cell_t *ec,
79 const struct circuit_t *circ);
80STATIC const tor_addr_port_t * circuit_choose_ip_ap_for_extend(
81 const tor_addr_port_t *ipv4_ap,
82 const tor_addr_port_t *ipv6_ap);
83STATIC void circuit_open_connection_for_extend(const struct extend_cell_t *ec,
84 struct circuit_t *circ,
85 int should_launch);
86
87#endif /* defined(TOR_UNIT_TESTS) */
88
89#endif /* !defined(TOR_FEATURE_RELAY_CIRCUITBUILD_RELAY_H) */
int circuit_extend(struct cell_t *cell, struct circuit_t *circ)
int onionskin_answer(struct or_circuit_t *circ, const created_cell_t *created_cell, const char *keys, size_t keys_len, const uint8_t *rend_circ_nonce)
Header file for config.c.
Headers for log.c.
#define log_fn(severity, domain, args,...)
Definition: log.h:283
#define LD_PROTOCOL
Definition: log.h:72
Definition: cell_st.h:17
#define STATIC
Definition: testsupport.h:32
Integer definitions used throughout Tor.
#define tor_assert_nonfatal_unreached()
Definition: util_bug.h:177