spin_trigger_http/
headers.rs

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
use std::{net::SocketAddr, str, str::FromStr};

use anyhow::Result;
use http::Uri;
use hyper::Request;
use spin_factor_outbound_networking::is_service_chaining_host;
use spin_http::routes::RouteMatch;

use crate::Body;

// We need to make the following pieces of information available to both executors.
// While the values we set are identical, the way they are passed to the
// modules is going to be different, so each executor must must use the info
// in its standardized way (environment variables for the Wagi executor, and custom headers
// for the Spin HTTP executor).
pub const FULL_URL: [&str; 2] = ["SPIN_FULL_URL", "X_FULL_URL"];
pub const PATH_INFO: [&str; 2] = ["SPIN_PATH_INFO", "PATH_INFO"];
pub const MATCHED_ROUTE: [&str; 2] = ["SPIN_MATCHED_ROUTE", "X_MATCHED_ROUTE"];
pub const COMPONENT_ROUTE: [&str; 2] = ["SPIN_COMPONENT_ROUTE", "X_COMPONENT_ROUTE"];
pub const RAW_COMPONENT_ROUTE: [&str; 2] = ["SPIN_RAW_COMPONENT_ROUTE", "X_RAW_COMPONENT_ROUTE"];
pub const BASE_PATH: [&str; 2] = ["SPIN_BASE_PATH", "X_BASE_PATH"];
pub const CLIENT_ADDR: [&str; 2] = ["SPIN_CLIENT_ADDR", "X_CLIENT_ADDR"];

pub fn compute_default_headers(
    uri: &Uri,
    host: &str,
    route_match: &RouteMatch,
    client_addr: SocketAddr,
) -> anyhow::Result<Vec<([String; 2], String)>> {
    fn owned(strs: &[&'static str; 2]) -> [String; 2] {
        [strs[0].to_owned(), strs[1].to_owned()]
    }

    let owned_full_url: [String; 2] = owned(&FULL_URL);
    let owned_path_info: [String; 2] = owned(&PATH_INFO);
    let owned_matched_route: [String; 2] = owned(&MATCHED_ROUTE);
    let owned_component_route: [String; 2] = owned(&COMPONENT_ROUTE);
    let owned_raw_component_route: [String; 2] = owned(&RAW_COMPONENT_ROUTE);
    let owned_base_path: [String; 2] = owned(&BASE_PATH);
    let owned_client_addr: [String; 2] = owned(&CLIENT_ADDR);

    let mut res = vec![];
    let abs_path = uri
        .path_and_query()
        .expect("cannot get path and query")
        .as_str();

    let path_info = route_match.trailing_wildcard();

    let scheme = uri.scheme_str().unwrap_or("http");

    let full_url = format!("{}://{}{}", scheme, host, abs_path);

    res.push((owned_path_info, path_info));
    res.push((owned_full_url, full_url));
    res.push((owned_matched_route, route_match.based_route().to_string()));

    res.push((owned_base_path, "/".to_string()));
    res.push((
        owned_raw_component_route,
        route_match.raw_route().to_string(),
    ));
    res.push((owned_component_route, route_match.raw_route_or_prefix()));
    res.push((owned_client_addr, client_addr.to_string()));

    for (wild_name, wild_value) in route_match.named_wildcards() {
        let wild_header = format!("SPIN_PATH_MATCH_{}", wild_name.to_ascii_uppercase()); // TODO: safer
        let wild_wagi_header = format!("X_PATH_MATCH_{}", wild_name.to_ascii_uppercase()); // TODO: safer
        res.push(([wild_header, wild_wagi_header], wild_value.clone()));
    }

    Ok(res)
}

pub fn strip_forbidden_headers(req: &mut Request<Body>) {
    let headers = req.headers_mut();
    if let Some(host_header) = headers.get("Host") {
        if let Ok(host) = host_header.to_str() {
            if is_service_chaining_host(host) {
                headers.remove("Host");
            }
        }
    }
}

pub fn prepare_request_headers(
    req: &Request<Body>,
    route_match: &RouteMatch,
    client_addr: SocketAddr,
) -> Result<Vec<(String, String)>> {
    let mut res = Vec::new();
    for (name, value) in req
        .headers()
        .iter()
        .map(|(name, value)| (name.to_string(), std::str::from_utf8(value.as_bytes())))
    {
        let value = value?.to_string();
        res.push((name, value));
    }

    let default_host = http::HeaderValue::from_str("localhost")?;
    let host = std::str::from_utf8(
        req.headers()
            .get("host")
            .unwrap_or(&default_host)
            .as_bytes(),
    )?;

    // Set the environment information (path info, base path, etc) as headers.
    // In the future, we might want to have this information in a context
    // object as opposed to headers.
    for (keys, val) in compute_default_headers(req.uri(), host, route_match, client_addr)? {
        res.push((prepare_header_key(&keys[0]), val));
    }

    Ok(res)
}

pub fn append_headers(
    map: &mut http::HeaderMap,
    headers: Option<Vec<(String, String)>>,
) -> Result<()> {
    if let Some(src) = headers {
        for (k, v) in src.iter() {
            map.insert(
                http::header::HeaderName::from_str(k)?,
                http::header::HeaderValue::from_str(v)?,
            );
        }
    };

    Ok(())
}

fn prepare_header_key(key: &str) -> String {
    key.replace('_', "-").to_ascii_lowercase()
}

#[cfg(test)]
mod tests {
    use super::*;
    use anyhow::Result;
    use spin_http::routes::Router;

    #[test]
    fn test_spin_header_keys() {
        assert_eq!(
            prepare_header_key("SPIN_FULL_URL"),
            "spin-full-url".to_string()
        );
        assert_eq!(
            prepare_header_key("SPIN_PATH_INFO"),
            "spin-path-info".to_string()
        );
        assert_eq!(
            prepare_header_key("SPIN_RAW_COMPONENT_ROUTE"),
            "spin-raw-component-route".to_string()
        );
    }

    #[test]
    fn test_default_headers() -> Result<()> {
        let scheme = "https";
        let host = "fermyon.dev";
        let trigger_route = "/foo/...";
        let component_path = "/foo";
        let path_info = "/bar";
        let client_addr: SocketAddr = "127.0.0.1:8777".parse().unwrap();

        let req_uri = format!(
            "{}://{}{}{}?key1=value1&key2=value2",
            scheme, host, component_path, path_info
        );

        let req = http::Request::builder()
            .method("POST")
            .uri(req_uri)
            .body("")?;

        let (router, _) = Router::build("/", [("DUMMY", &trigger_route.into())])?;
        let route_match = router.route("/foo/bar")?;

        let default_headers = compute_default_headers(req.uri(), host, &route_match, client_addr)?;

        assert_eq!(
            search(&FULL_URL, &default_headers).unwrap(),
            "https://fermyon.dev/foo/bar?key1=value1&key2=value2".to_string()
        );
        assert_eq!(
            search(&PATH_INFO, &default_headers).unwrap(),
            "/bar".to_string()
        );
        assert_eq!(
            search(&MATCHED_ROUTE, &default_headers).unwrap(),
            "/foo/...".to_string()
        );
        assert_eq!(
            search(&BASE_PATH, &default_headers).unwrap(),
            "/".to_string()
        );
        assert_eq!(
            search(&RAW_COMPONENT_ROUTE, &default_headers).unwrap(),
            "/foo/...".to_string()
        );
        assert_eq!(
            search(&COMPONENT_ROUTE, &default_headers).unwrap(),
            "/foo".to_string()
        );
        assert_eq!(
            search(&CLIENT_ADDR, &default_headers).unwrap(),
            "127.0.0.1:8777".to_string()
        );

        Ok(())
    }

    #[test]
    fn test_default_headers_with_named_wildcards() -> Result<()> {
        let scheme = "https";
        let host = "fermyon.dev";
        let trigger_route = "/foo/:userid/...";
        let component_path = "/foo";
        let path_info = "/bar";
        let client_addr: SocketAddr = "127.0.0.1:8777".parse().unwrap();

        let req_uri = format!(
            "{}://{}{}/42{}?key1=value1&key2=value2",
            scheme, host, component_path, path_info
        );

        let req = http::Request::builder()
            .method("POST")
            .uri(req_uri)
            .body("")?;

        let (router, _) = Router::build("/", [("DUMMY", &trigger_route.into())])?;
        let route_match = router.route("/foo/42/bar")?;

        let default_headers = compute_default_headers(req.uri(), host, &route_match, client_addr)?;

        assert_eq!(
            search(&FULL_URL, &default_headers).unwrap(),
            "https://fermyon.dev/foo/42/bar?key1=value1&key2=value2".to_string()
        );
        assert_eq!(
            search(&PATH_INFO, &default_headers).unwrap(),
            "/bar".to_string()
        );
        assert_eq!(
            search(&MATCHED_ROUTE, &default_headers).unwrap(),
            "/foo/:userid/...".to_string()
        );
        assert_eq!(
            search(&BASE_PATH, &default_headers).unwrap(),
            "/".to_string()
        );
        assert_eq!(
            search(&RAW_COMPONENT_ROUTE, &default_headers).unwrap(),
            "/foo/:userid/...".to_string()
        );
        assert_eq!(
            search(&COMPONENT_ROUTE, &default_headers).unwrap(),
            "/foo/:userid".to_string()
        );
        assert_eq!(
            search(&CLIENT_ADDR, &default_headers).unwrap(),
            "127.0.0.1:8777".to_string()
        );

        assert_eq!(
            search(
                &["SPIN_PATH_MATCH_USERID", "X_PATH_MATCH_USERID"],
                &default_headers
            )
            .unwrap(),
            "42".to_string()
        );

        Ok(())
    }

    #[test]
    fn forbidden_headers_are_removed() {
        let mut req = Request::get("http://test.spin.internal")
            .header("Host", "test.spin.internal")
            .header("accept", "text/plain")
            .body(Default::default())
            .unwrap();

        strip_forbidden_headers(&mut req);

        assert_eq!(1, req.headers().len());
        assert!(req.headers().get("Host").is_none());

        let mut req = Request::get("http://test.spin.internal")
            .header("Host", "test.spin.internal:1234")
            .header("accept", "text/plain")
            .body(Default::default())
            .unwrap();

        strip_forbidden_headers(&mut req);

        assert_eq!(1, req.headers().len());
        assert!(req.headers().get("Host").is_none());
    }

    #[test]
    fn non_forbidden_headers_are_not_removed() {
        let mut req = Request::get("http://test.example.com")
            .header("Host", "test.example.org")
            .header("accept", "text/plain")
            .body(Default::default())
            .unwrap();

        strip_forbidden_headers(&mut req);

        assert_eq!(2, req.headers().len());
        assert!(req.headers().get("Host").is_some());
    }

    fn search(keys: &[&str; 2], headers: &[([String; 2], String)]) -> Option<String> {
        let mut res: Option<String> = None;
        for (k, v) in headers {
            if k[0] == keys[0] && k[1] == keys[1] {
                res = Some(v.clone());
            }
        }

        res
    }
}