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
// Copyright 2015-2021 Swim Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use crate::{Error, ErrorKind, HttpError, ProtocolError};
use fnv::FnvHashSet;
use http::header::SEC_WEBSOCKET_PROTOCOL;
use http::{HeaderMap, HeaderValue};
use httparse::Header;
use std::borrow::Cow;

/// A subprotocol registry that is used for negotiating a possible subprotocol to use for a
/// connection.
#[derive(Default, Debug, Clone)]
pub struct ProtocolRegistry {
    registrants: FnvHashSet<Cow<'static, str>>,
    header: Option<HeaderValue>,
}

impl ProtocolRegistry {
    /// Construct a new protocol registry that will allow the provided items.
    pub fn new<I>(i: I) -> Result<ProtocolRegistry, Error>
    where
        I: IntoIterator,
        I::Item: Into<Cow<'static, str>>,
    {
        let registrants = i
            .into_iter()
            .map(Into::into)
            .collect::<FnvHashSet<Cow<'static, str>>>();
        let header_str = registrants
            .clone()
            .into_iter()
            .collect::<Vec<_>>()
            .join(", ");
        let header = HeaderValue::from_str(&header_str).map_err(|_| {
            crate::Error::with_cause(ErrorKind::Http, HttpError::MalformattedHeader(header_str))
        })?;

        Ok(ProtocolRegistry {
            registrants,
            header: Some(header),
        })
    }
}

enum Bias {
    Client,
    Server,
}

fn negotiate<'h, I>(
    registry: &ProtocolRegistry,
    headers: I,
    bias: Bias,
) -> Result<Option<String>, ProtocolError>
where
    I: Iterator<Item = &'h Header<'h>>,
{
    for header in headers {
        let value =
            String::from_utf8(header.value.to_vec()).map_err(|_| ProtocolError::Encoding)?;
        let protocols = value
            .split(',')
            .map(|s| s.trim().into())
            .collect::<FnvHashSet<_>>();

        let selected = match bias {
            Bias::Client => {
                if !registry.registrants.is_superset(&protocols) {
                    return Err(ProtocolError::UnknownProtocol);
                }
                protocols
                    .intersection(&registry.registrants)
                    .next()
                    .map(|s| s.to_string())
            }
            Bias::Server => registry
                .registrants
                .intersection(&protocols)
                .next()
                .map(|s| s.to_string()),
        };

        match selected {
            Some(selected) => return Ok(Some(selected)),
            None => continue,
        }
    }

    Ok(None)
}

pub fn negotiate_response(
    registry: &ProtocolRegistry,
    response: &httparse::Response,
) -> Result<Option<String>, ProtocolError> {
    let it = response
        .headers
        .iter()
        .filter(|h| h.name.eq_ignore_ascii_case(SEC_WEBSOCKET_PROTOCOL.as_str()));

    negotiate(registry, it, Bias::Client)
}

pub fn negotiate_request(
    registry: &ProtocolRegistry,
    request: &httparse::Request,
) -> Result<Option<String>, ProtocolError> {
    let it = request
        .headers
        .iter()
        .filter(|h| h.name.eq_ignore_ascii_case(SEC_WEBSOCKET_PROTOCOL.as_str()));

    negotiate(registry, it, Bias::Server)
}

pub fn apply_to(registry: &ProtocolRegistry, target: &mut HeaderMap) {
    if let Some(header) = &registry.header {
        target.insert(SEC_WEBSOCKET_PROTOCOL, header.clone());
    }
}