1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
use std::sync::Arc;
use thiserror::Error;
use tor_cell::relaycell::msg::EndReason;
#[derive(Error, Debug, Clone)]
#[non_exhaustive]
pub enum Error {
#[error("parsing error: {0}")]
BytesErr(#[from] tor_bytes::Error),
#[error("io error: {0}")]
IoErr(#[source] Arc<std::io::Error>),
#[error("cell encoding error: {0}")]
CellErr(#[source] tor_cell::Error),
#[error("specified key was missing")]
MissingKey,
#[error("couldn't produce that much output")]
InvalidOutputLength,
#[error("tried to encrypt to nonexistent hop")]
NoSuchHop,
#[error("Internal programming error: {0}")]
InternalError(String),
#[error("bad relay cell authentication")]
BadCellAuth,
#[error("handshake failed")]
BadHandshake,
#[error("channel protocol violation: {0}")]
ChanProto(String),
#[error("circuit protocol violation: {0}")]
CircProto(String),
#[error("circuit destroyed: {0}")]
CircDestroy(String),
#[error("channel closed")]
ChannelClosed,
#[error("circuit closed")]
CircuitClosed,
#[error("too many entries in map: can't allocate ID")]
IdRangeFull,
#[error("circuit extension handshake error: {0}")]
CircExtend(&'static str),
#[error("invalid stream target address")]
BadStreamAddress,
#[error("Received an End cell with reason {0}")]
EndReceived(EndReason),
#[error("stream not connected")]
NotConnected,
#[error("stream protocol violation: {0}")]
StreamProto(String),
#[error("channel mismatch: {0}")]
ChanMismatch(String),
#[error("bad configuration value: {0}")]
BadConfig(String),
#[error("remote resolve failed: {0}")]
ResolveError(String),
}
impl From<tor_cell::Error> for Error {
fn from(err: tor_cell::Error) -> Error {
match err {
tor_cell::Error::ChanProto(msg) => Error::ChanProto(msg),
_ => Error::CellErr(err),
}
}
}
impl From<std::io::Error> for Error {
fn from(err: std::io::Error) -> Error {
Error::IoErr(Arc::new(err))
}
}
impl From<Error> for std::io::Error {
fn from(err: Error) -> std::io::Error {
use std::io::ErrorKind;
use Error::*;
let kind = match err {
IoErr(e) => match Arc::try_unwrap(e) {
Ok(e) => return e,
Err(arc) => return std::io::Error::new(arc.kind(), arc),
},
InvalidOutputLength | NoSuchHop | BadStreamAddress => ErrorKind::InvalidInput,
NotConnected => ErrorKind::NotConnected,
EndReceived(end_reason) => end_reason.into(),
CircDestroy(_) | ChannelClosed | CircuitClosed => ErrorKind::ConnectionReset,
BytesErr(_) | MissingKey | BadCellAuth | BadHandshake | ChanProto(_) | CircProto(_)
| CellErr(_) | ChanMismatch(_) | StreamProto(_) => ErrorKind::InvalidData,
InternalError(_) | IdRangeFull | CircExtend(_) | BadConfig(_) | ResolveError(_) => {
ErrorKind::Other
}
};
std::io::Error::new(kind, err)
}
}
#[derive(Debug)]
pub(crate) enum ReactorError {
Err(Error),
Shutdown,
}
impl From<Error> for ReactorError {
fn from(e: Error) -> ReactorError {
ReactorError::Err(e)
}
}
#[cfg(test)]
impl ReactorError {
pub(crate) fn unwrap_err(self) -> Error {
match self {
ReactorError::Shutdown => panic!(),
ReactorError::Err(e) => e,
}
}
}