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
//! A CORS middleware for [Iron](http://ironframework.io/) with preflight support.
//!
//! See https://www.html5rocks.com/static/images/cors_server_flowchart.png for
//! reference.
//!
//! # Usage
//!
//! There are two modes available:
//!
//! ## Mode 1: Whitelist
//!
//! The user of the middleware must specify a list of allowed hosts (port or
//! protocol aren't being checked by the middleware). If the `Origin` header is
//! set on a request and if the value matches one of the allowed hosts, the
//! `Access-Control-Allow-Origin` header for that host is added to the response.
//!
//! Initialize the middleware with a `HashSet` of allowed host strings:
//!
//! ```rust
//! use std::collections::HashSet;
//! use iron_cors::CorsMiddleware;
//!
//! let allowed_hosts = ["example.com"].iter()
//!                                    .map(ToString::to_string)
//!                                    .collect::<HashSet<_>>();
//! let middleware = CorsMiddleware::with_whitelist(allowed_hosts);
//! ```
//!
//! See
//! [`examples/whitelist.rs`](https://github.com/dbrgn/iron-cors-rs/blob/master/examples/whitelist.rs)
//! for a full usage example.
//!
//! ## Mode 2: Allow Any
//!
//! Alternatively, the user of the middleware can choose to allow requests from
//! any origin. In that case, the `Access-Control-Allow-Origin` header is added
//! to any request with an `Origin` header.
//!
//! ```rust
//! use iron_cors::CorsMiddleware;
//!
//! let middleware = CorsMiddleware::with_allow_any();
//! ```
//!
//! See
//! [`examples/allow_any.rs`](https://github.com/dbrgn/iron-cors-rs/blob/master/examples/allow_any.rs)
//! for a full usage example.

extern crate iron;
#[macro_use] extern crate log;

use std::collections::HashSet;

use iron::{Request, Response, IronResult, AroundMiddleware, Handler};
use iron::method::Method;
use iron::status;
use iron::headers;

/// The struct that holds the CORS configuration.
pub struct CorsMiddleware {
    allowed_hosts: Option<HashSet<String>>,
}

impl CorsMiddleware {
    /// Specify which origin hosts are allowed to access the resource.
    pub fn with_whitelist(allowed_hosts: HashSet<String>) -> Self {
        CorsMiddleware {
            allowed_hosts: Some(allowed_hosts),
        }
    }

    /// Allow all origins to access the resource. The
    /// `Access-Control-Allow-Origin` header of the response will be set to
    /// `*`.
    pub fn with_allow_any() -> Self {
        CorsMiddleware {
            allowed_hosts: None,
        }
    }
}

impl AroundMiddleware for CorsMiddleware {
    fn around(self, handler: Box<Handler>) -> Box<Handler> {
        match self.allowed_hosts {
            Some(allowed_hosts) => Box::new(CorsHandlerWhitelist {
                handler: handler,
                allowed_hosts: allowed_hosts,
            }),
            None => Box::new(CorsHandlerAllowAny {
                handler: handler,
            }),
        }
    }
}

/// Handler for whitelist based rules.
struct CorsHandlerWhitelist {
    handler: Box<Handler>,
    allowed_hosts: HashSet<String>,
}

/// Handler if allowing any origin.
struct CorsHandlerAllowAny {
    handler: Box<Handler>,
}

impl CorsHandlerWhitelist {
    fn add_cors_header(&self, headers: &mut headers::Headers, origin: &headers::Origin) {
        let header = format_cors_origin(origin);
        headers.set(headers::AccessControlAllowOrigin::Value(header));
    }

    fn add_cors_preflight_headers(&self,
                                  headers: &mut headers::Headers,
                                  origin: &headers::Origin,
                                  acrm: &headers::AccessControlRequestMethod,
                                  acrh: Option<&headers::AccessControlRequestHeaders>) {

        self.add_cors_header(headers, origin);

        // Copy the method requested by the browser in the allowed methods header
        headers.set(headers::AccessControlAllowMethods(vec!(acrm.0.clone())));

        // If we have special allowed headers, copy them in the allowed headers in the response
        if let Some(acrh) = acrh {
            headers.set(headers::AccessControlAllowHeaders(acrh.0.clone()));
        }
    }

    fn process_possible_preflight(&self, req: &mut Request, origin: headers::Origin) -> IronResult<Response> {
        // Verify origin header
        let may_process = self.allowed_hosts.contains(&format_cors_origin(&origin));

        if !may_process {
            warn!("Got disallowed preflight CORS request from {}", &origin.host.hostname);
            return Ok(Response::with((status::BadRequest, "Invalid CORS request: Origin not allowed")));
        }

        {
            let acrm = req.headers.get::<headers::AccessControlRequestMethod>();

            // Check the Access-Control-Request-Method header
            if let Some(acrm) = acrm {
                // Assuming that Access-Control-Request-Method header is valid (header names can be anything)
                let acrh = req.headers.get::<headers::AccessControlRequestHeaders>();

                let mut response = Response::with((status::Ok, ""));
                self.add_cors_preflight_headers(&mut response.headers, &origin, acrm, acrh);

                // In case of preflight, return 200 with empty body after adding the preflight headers
                return Ok(response);
            }
        }

        // If we don't have an Access-Control-Request-Method header, treat as a possible OPTION CORS call
        return self.process_possible_cors_request(req, origin)
    }

    fn process_possible_cors_request(&self, req: &mut Request, origin: headers::Origin) -> IronResult<Response> {
        // Verify origin header
        let may_process = self.allowed_hosts.contains(&format_cors_origin(&origin));
        // Process request
        if may_process {
            // Everything OK, process request and add CORS header to response
            self.handler.handle(req)
                .map(|mut res| { self.add_cors_header(&mut res.headers, &origin); res })
                .map_err(|mut err| { self.add_cors_header(&mut err.response.headers, &origin); err })
        } else {
            // Not adding headers
            warn!("Got disallowed CORS request from {}", &origin.host.hostname);
            Ok(Response::with((status::BadRequest, "Invalid CORS request: Origin not allowed")))
        }
    }
}

/// The handler that acts as an AroundMiddleware.
///
/// It first checks an incoming request for appropriate CORS headers. If the
/// `Origin` header is present and the header value is in the whitelist, add
/// the `Access-Control-Allow-Origin` header for that domain to the response.
/// Otherwise, the request is processed as usual.
impl Handler for CorsHandlerWhitelist {
    fn handle(&self, req: &mut Request) -> IronResult<Response> {
        // Extract origin header
        let origin = match req.headers.get::<headers::Origin>().cloned() {
            Some(o) => o,
            None => {
                return self.handler.handle(req);
            }
        };

        match req.method {
            // If this is an OPTION request, check for preflight
            Method::Options => self.process_possible_preflight(req, origin),
            // If is not an OPTION request, we assume a normal CORS (no preflight)
            _ => self.process_possible_cors_request(req, origin),
        }
    }
}

impl CorsHandlerAllowAny {
    fn add_cors_header(&self, headers: &mut headers::Headers) {
        headers.set(headers::AccessControlAllowOrigin::Any);
    }

    fn add_cors_preflight_headers(&self,
                                  headers: &mut headers::Headers,
                                  acrm: &headers::AccessControlRequestMethod,
                                  acrh: Option<&headers::AccessControlRequestHeaders>) {

        self.add_cors_header(headers);

        // Copy the method requested by the browser into the allowed methods header
        headers.set(headers::AccessControlAllowMethods(vec!(acrm.0.clone())));

        // If we have special allowed headers, copy them into the allowed headers in the response
        if let Some(acrh) = acrh {
            headers.set(headers::AccessControlAllowHeaders(acrh.0.clone()));
        }
    }

    fn process_possible_preflight(&self, req: &mut Request) -> IronResult<Response> {
        {
            let acrm = req.headers.get::<headers::AccessControlRequestMethod>();

            // Check the Access-Control-Request-Method header
            if let Some(acrm) = acrm {
                // Assuming that Access-Control-Request-Method header is valid (header names can be anything)
                let acrh = req.headers.get::<headers::AccessControlRequestHeaders>();

                let mut response = Response::with((status::Ok, ""));
                self.add_cors_preflight_headers(&mut response.headers, acrm, acrh);

                // In case of preflight, return 200 with empty body after adding the preflight headers
                return Ok(response);
            }
        }

        // If we don't have an Access-Control-Request-Method header, treat as a possible OPTION CORS call
        return self.process_possible_cors_request(req)
    }

    fn process_possible_cors_request(&self, req: &mut Request) -> IronResult<Response> {
        self.handler.handle(req)
            .map(|mut res| { self.add_cors_header(&mut res.headers); res })
            .map_err(|mut err| { self.add_cors_header(&mut err.response.headers); err })
    }
}

/// The handler that acts as an AroundMiddleware.
///
/// It first checks an incoming request for appropriate CORS headers. If the
/// `Origin` header is present, then the `Access-Control-Allow-Origin: *`
/// header is added to the response. If not, the request is processed as usual.
impl Handler for CorsHandlerAllowAny {
    fn handle(&self, req: &mut Request) -> IronResult<Response> {
        match req.headers.get::<headers::Origin>() {
            None => {
                self.handler.handle(req)
            },
            Some(_) => {
                match req.method {
                    //If is an OPTION request, check for preflight
                    Method::Options => self.process_possible_preflight(req),
                    // If is not an OPTION request, we assume a normal CORS (no preflight)
                    _ => self.process_possible_cors_request(req),
                }
            },
        }
    }
}

fn format_cors_origin(origin: &headers::Origin) -> String {
    match origin.host.port {
        Some(port) => format!("{}://{}:{}", &origin.scheme, &origin.host.hostname, &port),
        None => format!("{}://{}", &origin.scheme, &origin.host.hostname),
    }
}