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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
use std::collections::{HashMap,HashSet};
use std::iter::FromIterator;
use openssl::x509::X509;
use openssl::hash::MessageDigest;
use sozu::messages::{CertFingerprint,CertificateAndKey,Order,HttpFront,TlsFront,Instance};
pub type AppId = String;
#[derive(Debug,Clone,PartialEq,Eq, Serialize, Deserialize)]
pub struct HttpProxy {
ip_address: String,
port: u16,
fronts: HashMap<AppId, Vec<HttpFront>>,
instances: HashMap<AppId, Vec<Instance>>,
}
#[derive(Debug,Clone,PartialEq,Eq,Serialize, Deserialize)]
pub struct TlsProxy {
ip_address: String,
port: u16,
certificates: HashMap<CertFingerprint, CertificateAndKey>,
fronts: HashMap<AppId, Vec<TlsFront>>,
instances: HashMap<AppId, Vec<Instance>>,
}
#[derive(Debug,Clone,PartialEq,Eq,Serialize,Deserialize)]
pub enum ConfigState {
Http(HttpProxy),
Tls(TlsProxy),
Tcp
}
impl ConfigState {
pub fn handle_order(&mut self, order: &Order) {
match *self {
ConfigState::Http(ref mut state) => state.handle_order(order),
ConfigState::Tls(ref mut state) => state.handle_order(order),
ConfigState::Tcp => {},
}
}
pub fn generate_orders(&self) -> Vec<Order> {
match *self {
ConfigState::Http(ref state) => state.generate_orders(),
ConfigState::Tls(ref state) => state.generate_orders(),
ConfigState::Tcp => vec!(),
}
}
pub fn diff(&self, other:&ConfigState) -> Vec<Order> {
match (self, other) {
(&ConfigState::Http(ref state), &ConfigState::Http(ref other_state)) => state.diff(other_state),
(&ConfigState::Tls(ref state), &ConfigState::Tls(ref other_state)) => state.diff(other_state),
_ => vec!(),
}
}
}
impl HttpProxy {
pub fn new(ip: String, port: u16) -> HttpProxy {
HttpProxy {
ip_address: ip,
port: port,
fronts: HashMap::new(),
instances: HashMap::new(),
}
}
pub fn handle_order(&mut self, order: &Order) {
match order {
&Order::AddHttpFront(ref front) => {
let f = HttpFront {
app_id: front.app_id.clone(),
hostname: front.hostname.clone(),
path_begin: front.path_begin.clone(),
};
if self.fronts.contains_key(&front.app_id) {
self.fronts.get_mut(&front.app_id).map(|front| {
if !front.contains(&f) {
front.push(f);
}
});
} else {
self.fronts.insert(front.app_id.clone(), vec!(f));
}
},
&Order::RemoveHttpFront(ref front) => {
if let Some(front_list) = self.fronts.get_mut(&front.app_id) {
front_list.retain(|el| el.hostname != front.hostname || el.path_begin != front.path_begin);
}
},
&Order::AddInstance(ref instance) => {
if self.instances.contains_key(&instance.app_id) {
self.instances.get_mut(&instance.app_id).map(|instance_vec| {
if !instance_vec.contains(&instance) {
instance_vec.push(instance.clone());
}
});
} else {
self.instances.insert(instance.app_id.clone(), vec!(instance.clone()));
}
},
&Order::RemoveInstance(ref instance) => {
if let Some(instance_list) = self.instances.get_mut(&instance.app_id) {
instance_list.retain(|el| el.ip_address != instance.ip_address || el.port != instance.port);
}
}
_ => {}
}
}
pub fn generate_orders(&self) -> Vec<Order> {
let mut v = Vec::new();
for (app_id, front_list) in self.fronts.iter() {
for front in front_list {
v.push(Order::AddHttpFront(HttpFront {
app_id: app_id.clone(),
hostname: front.hostname.clone(),
path_begin: front.path_begin.clone(),
}));
}
}
for instance_list in self.instances.values() {
for instance in instance_list {
v.push(Order::AddInstance(instance.clone()));
}
}
v
}
pub fn diff(&self, other:&HttpProxy) -> Vec<Order> {
let mut my_fronts: HashSet<(&AppId, &HttpFront)> = HashSet::new();
for (ref app_id, ref front_list) in self.fronts.iter() {
for ref front in front_list.iter() {
my_fronts.insert((&app_id, &front));
}
}
let mut their_fronts: HashSet<(&AppId, &HttpFront)> = HashSet::new();
for (ref app_id, ref front_list) in other.fronts.iter() {
for ref front in front_list.iter() {
their_fronts.insert((&app_id, &front));
}
}
let removed_fronts = my_fronts.difference(&their_fronts);
let added_fronts = their_fronts.difference(&my_fronts);
let mut my_instances: HashSet<(&AppId, &Instance)> = HashSet::new();
for (ref app_id, ref instance_list) in self.instances.iter() {
for ref instance in instance_list.iter() {
my_instances.insert((&app_id, &instance));
}
}
let mut their_instances: HashSet<(&AppId, &Instance)> = HashSet::new();
for (ref app_id, ref instance_list) in other.instances.iter() {
for ref instance in instance_list.iter() {
their_instances.insert((&app_id, &instance));
}
}
let removed_instances = my_instances.difference(&their_instances);
let added_instances = their_instances.difference(&my_instances);
let mut v = vec!();
for &(app_id, front) in removed_fronts {
v.push(Order::RemoveHttpFront(HttpFront {
app_id: app_id.clone(),
hostname: front.hostname.clone(),
path_begin: front.path_begin.clone(),
}));
}
for &(_, instance) in added_instances {
v.push(Order::AddInstance(instance.clone()));
}
for &(_, instance) in removed_instances {
v.push(Order::RemoveInstance(instance.clone()));
}
for &(app_id, front) in added_fronts {
v.push(Order::AddHttpFront(HttpFront {
app_id: app_id.clone(),
hostname: front.hostname.clone(),
path_begin: front.path_begin.clone(),
}));
}
v
}
}
impl TlsProxy {
pub fn new(ip: String, port: u16) -> TlsProxy {
TlsProxy {
ip_address: ip,
port: port,
certificates: HashMap::new(),
fronts: HashMap::new(),
instances: HashMap::new(),
}
}
pub fn handle_order(&mut self, order: &Order) {
match order {
&Order::AddCertificate(ref certificate_and_key) => {
let f = CertificateAndKey {
certificate: certificate_and_key.certificate.clone(),
certificate_chain: certificate_and_key.certificate_chain.clone(),
key: certificate_and_key.key.clone(),
};
let fingerprint = match X509::from_pem(&certificate_and_key.certificate.as_bytes()[..]).and_then(|cert|
cert.fingerprint(MessageDigest::sha256())) {
Ok(f) => f,
Err(e) => {
error!("cannot obtain the certificate's fingerprint: {:?}", e);
return;
}
};
if !self.certificates.contains_key(&fingerprint) {
self.certificates.insert(fingerprint.clone(), f);
}
},
&Order::RemoveCertificate(ref fingerprint) => {
self.certificates.remove(fingerprint);
},
&Order::AddTlsFront(ref front) => {
let f = TlsFront {
app_id: front.app_id.clone(),
hostname: front.hostname.clone(),
path_begin: front.path_begin.clone(),
fingerprint: front.fingerprint.clone(),
};
if self.fronts.contains_key(&front.app_id) {
self.fronts.get_mut(&front.app_id).map(|front| {
if !front.contains(&f) {
front.push(f);
}
});
} else {
self.fronts.insert(front.app_id.clone(), vec!(f));
}
},
&Order::RemoveTlsFront(ref front) => {
self.fronts.remove(&front.app_id);
},
&Order::AddInstance(ref instance) => {
let inst = Instance {
app_id: instance.app_id.clone(),
ip_address: instance.ip_address.clone(),
port: instance.port,
};
if self.instances.contains_key(&instance.app_id) {
self.instances.get_mut(&instance.app_id).map(|instance| {
if !instance.contains(&inst) {
instance.push(inst);
}
});
} else {
self.instances.insert(instance.app_id.clone(), vec!(inst));
}
},
&Order::RemoveInstance(ref instance) => {
if let Some(instance_list) = self.instances.get_mut(&instance.app_id) {
instance_list.retain(|el| el.ip_address != instance.ip_address || el.port != instance.port);
}
}
_ => {}
}
}
pub fn generate_orders(&self) -> Vec<Order> {
let mut v = Vec::new();
for certificate_and_key in (&self.certificates).values() {
v.push(Order::AddCertificate(certificate_and_key.clone()));
}
for (app_id, front_list) in &self.fronts {
for front in front_list {
v.push(Order::AddTlsFront(TlsFront {
app_id: app_id.clone(),
hostname: front.hostname.clone(),
path_begin: front.path_begin.clone(),
fingerprint: front.fingerprint.clone(),
}));
}
}
for (app_id, instance_list) in &self.instances {
for instance in instance_list {
v.push(Order::AddInstance(Instance {
app_id: app_id.clone(),
ip_address: instance.ip_address.clone(),
port: instance.port.clone(),
}));
}
}
v
}
pub fn diff(&self, other:&TlsProxy) -> Vec<Order> {
let mut my_fronts: HashSet<(&AppId, &TlsFront)> = HashSet::new();
for (ref app_id, ref front_list) in self.fronts.iter() {
for ref front in front_list.iter() {
my_fronts.insert((&app_id, &front));
}
}
let mut their_fronts: HashSet<(&AppId, &TlsFront)> = HashSet::new();
for (ref app_id, ref front_list) in other.fronts.iter() {
for ref front in front_list.iter() {
their_fronts.insert((&app_id, &front));
}
}
let removed_fronts = my_fronts.difference(&their_fronts);
let added_fronts = their_fronts.difference(&my_fronts);
let mut my_instances: HashSet<(&AppId, &Instance)> = HashSet::new();
for (ref app_id, ref instance_list) in self.instances.iter() {
for ref instance in instance_list.iter() {
my_instances.insert((&app_id, &instance));
}
}
let mut their_instances: HashSet<(&AppId, &Instance)> = HashSet::new();
for (ref app_id, ref instance_list) in other.instances.iter() {
for ref instance in instance_list.iter() {
their_instances.insert((&app_id, &instance));
}
}
let removed_instances = my_instances.difference(&their_instances);
let added_instances = their_instances.difference(&my_instances);
let my_certificates: HashSet<(&CertFingerprint, &CertificateAndKey)> = HashSet::from_iter(self.certificates.iter());
let their_certificates: HashSet<(&CertFingerprint, &CertificateAndKey)> = HashSet::from_iter(other.certificates.iter());
let removed_certificates = my_certificates.difference(&their_certificates);
let added_certificates = their_certificates.difference(&my_certificates);
let mut v = vec!();
for &(_, certificate_and_key) in added_certificates {
v.push(Order::AddCertificate(certificate_and_key.clone()));
}
for &(app_id, front) in removed_fronts {
v.push(Order::RemoveTlsFront(TlsFront {
app_id: app_id.clone(),
hostname: front.hostname.clone(),
path_begin: front.path_begin.clone(),
fingerprint: front.fingerprint.clone(),
}));
}
for &(_, instance) in added_instances {
v.push(Order::AddInstance(instance.clone()));
}
for &(_, instance) in removed_instances {
v.push(Order::RemoveInstance(instance.clone()));
}
for &(app_id, front) in added_fronts {
v.push(Order::AddTlsFront(TlsFront {
app_id: app_id.clone(),
hostname: front.hostname.clone(),
path_begin: front.path_begin.clone(),
fingerprint: front.fingerprint.clone(),
}));
}
for &(fingerprint, _) in removed_certificates {
v.push(Order::RemoveCertificate(fingerprint.clone()));
}
v
}
}
#[cfg(test)]
mod tests {
use super::*;
use sozu::messages::{Order,HttpFront,Instance};
#[test]
fn serialize() {
let mut state = HttpProxy::new(String::from("127.0.0.1"), 80);
state.handle_order(&Order::AddHttpFront(HttpFront { app_id: String::from("app_1"), hostname: String::from("lolcatho.st:8080"), path_begin: String::from("/") }));
state.handle_order(&Order::AddHttpFront(HttpFront { app_id: String::from("app_2"), hostname: String::from("test.local"), path_begin: String::from("/abc") }));
state.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("127.0.0.1"), port: 1026 }));
state.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("127.0.0.2"), port: 1027 }));
state.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_2"), ip_address: String::from("192.167.1.2"), port: 1026 }));
state.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("192.168.1.3"), port: 1027 }));
state.handle_order(&Order::RemoveInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("192.168.1.3"), port: 1027 }));
}
#[test]
fn diff() {
let mut state = HttpProxy::new(String::from("127.0.0.1"), 80);
state.handle_order(&Order::AddHttpFront(HttpFront { app_id: String::from("app_1"), hostname: String::from("lolcatho.st:8080"), path_begin: String::from("/") }));
state.handle_order(&Order::AddHttpFront(HttpFront { app_id: String::from("app_2"), hostname: String::from("test.local"), path_begin: String::from("/abc") }));
state.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("127.0.0.1"), port: 1026 }));
state.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("127.0.0.2"), port: 1027 }));
state.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_2"), ip_address: String::from("192.167.1.2"), port: 1026 }));
let mut state2 = HttpProxy::new(String::from("127.0.0.1"), 80);
state2.handle_order(&Order::AddHttpFront(HttpFront { app_id: String::from("app_1"), hostname: String::from("lolcatho.st:8080"), path_begin: String::from("/") }));
state2.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("127.0.0.1"), port: 1026 }));
state2.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("127.0.0.2"), port: 1027 }));
state2.handle_order(&Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("127.0.0.2"), port: 1028 }));
let e = vec!(
Order::RemoveHttpFront(HttpFront { app_id: String::from("app_2"), hostname: String::from("test.local"), path_begin: String::from("/abc") }),
Order::RemoveInstance(Instance { app_id: String::from("app_2"), ip_address: String::from("192.167.1.2"), port: 1026 }),
Order::AddInstance(Instance { app_id: String::from("app_1"), ip_address: String::from("127.0.0.2"), port: 1028 }),
);
let expected_diff:HashSet<&Order> = HashSet::from_iter(e.iter());
let d = state.diff(&state2);
let diff = HashSet::from_iter(d.iter());
println!("diff orders:\n{:?}\n", diff);
println!("expected diff orders:\n{:?}\n", expected_diff);
assert_eq!(diff, expected_diff);
}
}