actix-web/actix-http/src
Aaron Hill 71c4bd1b30
Remove uses of Pin::new_unchecked in h1 Dispatcher (#1374)
This removes the last uses of unsafe `Pin` functions in actix-web.

This PR adds a `Pin<Box<_>>` wrapper to `DispatcherState::Upgrade`,
`State::ExpectCall`, and `State::ServiceCall`.

The previous uses of the futures `State::ExpectCall` and `State::ServiceCall`
were Undefined Behavior - a future was obtained from `self.expect.call`
or `self.service.call`, pinned on the stack, and then immediately
returned from `handle_request`. The only alternative to using `Box::pin`
would be to refactor `handle_request` to write the futures directly into
their final location, or avoid polling them before they are returned.

The previous use of `DispatcherState::Upgrade` doesn't seem to be
unsound. However, having data pinned inside an enum that we
`std::mem::replace` would require some careful `unsafe` code to ensure
that we never call `std::mem::replace` when the active variant contains
pinned data. By using `Box::pin`, we any possibility of future
refactoring accidentally introducing undefined behavior.

Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
2020-02-26 08:21:05 +09:00
..
client Use #[pin_project] with `ConnectorPoolSupport` 2020-02-19 21:42:53 -05:00
cookie actix-http: update `time` to 0.2.7 2020-02-23 07:09:00 +09:00
encoding Replace brotli with brotli2 #1224 2019-12-20 13:50:07 +06:00
h1 Remove uses of Pin::new_unchecked in h1 Dispatcher (#1374) 2020-02-26 08:21:05 +09:00
h2 Remove several uses of `Pin::new_unchecked` (#1294) 2020-01-28 12:35:51 +09:00
header Fix doc comment 2020-02-25 07:46:03 +09:00
ws Replace sha1 dependency with sha-1 (#1258) 2020-01-11 02:34:31 +09:00
body.rs impl downcast_ref for MessageBody (#1287) 2020-02-21 13:31:51 +09:00
builder.rs update to latest actix-net 2019-12-02 17:33:11 +06:00
cloneable.rs Add benchmark for full stack request lifecycle (#1298) 2020-01-25 08:05:25 +09:00
config.rs Replace `UnsafeCell` with `Cell` in `DateServiceInner` (#1325) 2020-01-29 21:05:08 +09:00
error.rs impl downcast_ref for MessageBody (#1287) 2020-02-21 13:31:51 +09:00
extensions.rs Extensions module improvement and tests. (#1297) 2020-02-07 16:08:25 +09:00
helpers.rs increase content-length fast path to responses up to 1MB 2020-02-24 20:58:41 +00:00
httpcodes.rs Removed httpcode 'MovedPermanenty'. (#1128) 2019-10-12 06:45:12 +06:00
httpmessage.rs clippy warnings 2019-12-08 00:46:51 +06:00
lib.rs impl downcast_ref for MessageBody (#1287) 2020-02-21 13:31:51 +09:00
macros.rs impl downcast_ref for MessageBody (#1287) 2020-02-21 13:31:51 +09:00
message.rs clippy warnings 2019-12-08 00:46:51 +06:00
payload.rs cleanup imports 2019-12-13 11:24:57 +06:00
request.rs clippy warnings 2019-12-08 00:46:51 +06:00
response.rs cleanup imports 2019-12-13 11:24:57 +06:00
service.rs add extra constraints 2020-01-10 11:36:59 +06:00
test.rs update tests and clippy warnings 2019-12-08 12:31:16 +06:00
time_parser.rs actix-http: update `time` to 0.2.7 2020-02-23 07:09:00 +09:00