Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clear conn_data on HttpRequest drop #2742

Merged
merged 3 commits into from Apr 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion actix-http/benches/uninit-headers.rs
Expand Up @@ -114,7 +114,7 @@ mod _original {
use std::mem::MaybeUninit;

pub fn parse_headers(src: &mut BytesMut) -> usize {
#![allow(clippy::uninit_assumed_init)]
#![allow(invalid_value, clippy::uninit_assumed_init)]

let mut headers: [HeaderIndex; MAX_HEADERS] =
unsafe { MaybeUninit::uninit().assume_init() };
Expand Down
5 changes: 5 additions & 0 deletions actix-web/CHANGES.md
@@ -1,9 +1,14 @@
# Changelog

## Unreleased - 2021-xx-xx
### Added
- Add `ServiceRequest::extract` to make it easier to use extractors when writing middlewares. [#2647]

### Fixed
- Clear connection-level data on `HttpRequest` drop. [#2742]

[#2647]: https://github.com/actix/actix-web/pull/2647
[#2742]: https://github.com/actix/actix-web/pull/2742


## 4.0.1 - 2022-02-25
Expand Down
12 changes: 7 additions & 5 deletions actix-web/src/request.rs
Expand Up @@ -381,12 +381,16 @@ impl Drop for HttpRequest {
inner.app_data.truncate(1);

// Inner is borrowed mut here and; get req data mutably to reduce borrow check. Also
// we know the req_data Rc will not have any cloned at this point to unwrap is okay.
// we know the req_data Rc will not have any clones at this point to unwrap is okay.
Rc::get_mut(&mut inner.extensions)
.unwrap()
.get_mut()
.clear();

// We can't use the same trick as req data because the conn_data is held by the
// dispatcher, too.
inner.conn_data = None;

// a re-borrow of pool is necessary here.
let req = Rc::clone(&self.inner);
self.app_state().pool().push(req);
Expand Down Expand Up @@ -761,10 +765,8 @@ mod tests {
assert_eq!(body, Bytes::from_static(b"1"));
}

// allow deprecated App::data
#[allow(deprecated)]
#[actix_rt::test]
async fn test_extensions_dropped() {
async fn test_app_data_dropped() {
struct Tracker {
pub dropped: bool,
}
Expand All @@ -780,7 +782,7 @@ mod tests {
let tracker = Rc::new(RefCell::new(Tracker { dropped: false }));
{
let tracker2 = Rc::clone(&tracker);
let srv = init_service(App::new().data(10u32).service(web::resource("/").to(
let srv = init_service(App::new().service(web::resource("/").to(
move |req: HttpRequest| {
req.extensions_mut().insert(Foo {
tracker: Rc::clone(&tracker2),
Expand Down
2 changes: 1 addition & 1 deletion actix-web/src/test/test_request.rs
Expand Up @@ -53,7 +53,7 @@ use crate::cookie::{Cookie, CookieJar};
/// assert_eq!(resp.status(), StatusCode::OK);
///
/// let req = test::TestRequest::default().to_http_request();
/// let resp = index(req).await;
/// let resp = handler(req).await;
/// assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
/// }
/// ```
Expand Down