Opened 11 years ago
Last modified 7 years ago
#21608 closed Bug
Logged out sessions are resurrected by concurrent requests — at Version 12
Reported by: | Jonas Borgström | Owned by: | anonymous |
---|---|---|---|
Component: | contrib.sessions | Version: | 1.9 |
Severity: | Normal | Keywords: | |
Cc: | m17.admin@…, tlt@… | Triage Stage: | Ready for checkin |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
- User logs in
- User loads a slow page in separate tab or as an ajax request, which modifies the session
- User logs out before request in step 2 completes. This will delete the session from the db
Expected behavior
User/session stays logged out since the user explicitly logged out and the session row was delete in step 3.
Actual behavior
The previously deleted session is re-inserted into the database when the request from step 2 completes. So the previously logged out user is now logged in again.
Change History (13)
by , 11 years ago
Attachment: | session_fix.patch added |
---|
comment:2 by , 11 years ago
Needs tests: | set |
---|---|
Patch needs improvement: | set |
Triage Stage: | Unreviewed → Accepted |
Seems like a reasonable request, and the patch looks like a decent start -- but it needs tests.
comment:3 by , 11 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:4 by , 11 years ago
Finalized on the train and airport: https://github.com/django/django/pull/2678
Thanks to everybody at DjangoIsland who helped me tackle this - looking forward to your feedback!
- Nikl
comment:5 by , 11 years ago
Has patch: | set |
---|---|
Needs tests: | unset |
Patch needs improvement: | unset |
Triage Stage: | Accepted → Ready for checkin |
comment:6 by , 11 years ago
Triage Stage: | Ready for checkin → Accepted |
---|
Please don't mark your own patch as RFC. Someone who reviews the patch should do that.
comment:7 by , 10 years ago
I'm not entirely getting this. When a user logs out, the session is flushed. Flushing the session clears it and deletes it. The database session store performs this deletion by actually deleting the record from the DB. The cached_db backend deletes it from the DB and the cache. So basically, all records of this session should be deleted. If you would post a new request with the now deleted session ID, Django will reject it, and assign you a new session with a new session ID.
The reporter says that django re-inserts the session when a request arrives with the old session ID, and will re-insert it with the old session data. But I don't see that anywhere in the code. As far as I can see, Django would reject the session ID, as loading would fail as the session object has been deleted, and the user would be assigned a new session. Even if there were a flaw in that logic: once the session data has been deleted, how would any code know how to recreate the session? The request doesn't contain any hint on what user should be logged in.
The only explanation I can come up with is that we're talking about cookie backed sessions, for which this is a documented limitation: you can't guarantee deletion of a cookie backed session or it's data, no matter what we do in Django: its the nature of cookies.
comment:8 by , 10 years ago
Patch needs improvement: | set |
---|
I couldn't reproduce this using steps 1-3 in the description (SQLite). After logging out in a separate tag, the slow page loaded, but subsequent requests redirected to the admin login page. There also seem to be some concerns from Nick's review on the PR.
comment:9 by , 10 years ago
I think one key detail missing from the initial reproduction steps is that the "slow page" needs to modify the session to make it dirty. Otherwise the session will not be resurrected.
Anyway, I've now create a complete reproduction test case here:
https://github.com/jborg/django-21608
See README.txt for details.
comment:11 by , 10 years ago
Cc: | added |
---|
comment:12 by , 9 years ago
Description: | modified (diff) |
---|
Proposed fix (against django 1.4)