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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
use std::fmt;
use super::scram_common::ScramType;
use super::scram_error::{ScramResult, ScramRuntimeError, ScramErrorCode};
use super::{scram_error};
pub(crate) enum ServerChannelBindType
{
None,
Unsupported,
TlsUnique,
TlsServerEndpoint
}
impl fmt::Display for ServerChannelBindType
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result
{
match *self
{
Self::None => write!(f, "None"),
Self::Unsupported => write!(f, "Unsupported"),
Self::TlsUnique => write!(f, "TlsUnique"),
Self::TlsServerEndpoint => write!(f, "TlsServerEndpoint"),
}
}
}
impl ServerChannelBindType
{
pub fn n() -> Self
{
return Self::None;
}
pub fn y() -> Self
{
return Self::Unsupported;
}
#[allow(dead_code)]
pub fn tls_server_endpoint() -> Self
{
return Self::TlsServerEndpoint;
}
pub fn server_initial_verify_client_cb(&self, st: &ScramType) -> ScramResult<()>
{
if st.scram_chan_bind == true
{
match *self
{
Self::TlsUnique =>
scram_error!(ScramErrorCode::MalformedScramMsg,
"unsupported SCRAM channel-binding type {}!", self),
Self::TlsServerEndpoint{..} => return Ok(()),
Self::None =>
scram_error!(ScramErrorCode::MalformedScramMsg,
"malformed message, client selected *-PLUS but message does not include cb data!"),
Self::Unsupported =>
scram_error!(ScramErrorCode::MalformedScramMsg,
"malformed message, client picked -PLUS, but did not provide cb data"),
}
}
else
{
match *self
{
Self::TlsUnique | Self::TlsServerEndpoint{..} =>
scram_error!(ScramErrorCode::MalformedScramMsg,
"client provided channel binding data while picking SCRAM without -PLUS extension!"),
Self::None => return Ok(()),
Self::Unsupported => return Ok(()),
}
}
}
pub fn server_final_verify_client_cb(&mut self,
st: &ScramType,
cb_attr: &str,
endpoint_hash: Option<&std::vec::Vec<u8>>) -> ScramResult<()>
{
match *self
{
Self::TlsUnique =>
{
panic!("assertion trap: Tls-uniq is not supported, cb_type: {}, \
scram_type: {}",
self, st)
},
Self::TlsServerEndpoint =>
{
if st.scram_chan_bind == false
{
panic!("assertion trap: cb_type: {}, scram_type: {}, so when is bind==true \
then cb_type must be \
either TlsUnique or TlsServerEndpoint",
self, st);
}
let endp_cert_hash = match endpoint_hash
{
Some(r) => r,
None => panic!("assertion trap: cb_type: {}, scram_type: {} \
TlsServerEndpoint requires endpoint_hash to be Some(...)",
self, st)
};
let header =
[
"p=tls-server-end-point,,".as_bytes(),
endp_cert_hash,
].concat();
let bheader = base64::encode(header);
if bheader.as_str() == cb_attr
{
return Ok(());
}
else
{
scram_error!(ScramErrorCode::VerificationError,
"SCRAM channel binding check failed");
}
},
Self::Unsupported =>
{
if cb_attr == "eSws"
{
return Ok(());
}
else
{
scram_error!(ScramErrorCode::ProtocolViolation,
"unexpected SCRAM channel-binding attribute in client-final-message: {}", cb_attr);
}
},
Self::None =>
{
if cb_attr == "biws"
{
return Ok(());
}
else
{
scram_error!(ScramErrorCode::ProtocolViolation,
"unexpected SCRAM channel-binding attribute in client-final-message: {}", cb_attr);
}
}
}
}
pub fn from_str<C: AsRef<str>>(cb: C) -> ScramResult<Self>
{
match cb.as_ref()
{
"none" => return Ok(Self::None),
"unsupported" => return Ok(Self::Unsupported),
"tls-unique" => return Ok(Self::TlsUnique),
"tls-server-end-point" => return Ok(Self::TlsServerEndpoint),
_ => scram_error!(ScramErrorCode::ProtocolViolation,
"Unknown channel bind type: '{}'", cb.as_ref()),
}
}
#[allow(dead_code)]
pub fn convert2header(&self) -> &[u8]
{
match self
{
Self::None => return b"n,,",
Self::Unsupported => return b"y,,",
Self::TlsUnique => panic!("not supported yet"),
Self::TlsServerEndpoint{..} => b"p=tls-server-end-point,,"
}
}
}
pub enum ClientChannelBindingType
{
None,
Unsupported,
TlsServerEndpoint{cb_data: Vec<u8>},
}
impl fmt::Display for ClientChannelBindingType
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result
{
match *self
{
Self::None => write!(f, "None"),
Self::Unsupported => write!(f, "Unsupported"),
Self::TlsServerEndpoint{..} => write!(f, "TlsServerEndpoint"),
}
}
}
impl ClientChannelBindingType
{
pub fn without_chan_binding() -> Self
{
return Self::None;
}
pub fn with_tls_server_endpoint(cb_data: Vec<u8>) -> Self
{
return Self::TlsServerEndpoint{cb_data: cb_data};
}
pub fn convert2header(&self) -> &[u8]
{
match self
{
Self::None => return b"n,,",
Self::Unsupported => return b"y,,",
Self::TlsServerEndpoint{..} => b"p=tls-server-end-point,,"
}
}
pub fn convert2data(&self) -> &[u8]
{
match *self
{
Self::None => return b"",
Self::Unsupported => return b"",
Self::TlsServerEndpoint{ref cb_data} =>
{
cb_data
}
}
}
}