#47320 closed defect (bug) (fixed)
Site Health: Call to API with $_COOKIE and PHPSESSID
Reported by: | matthieumota | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 5.5 | Priority: | normal |
Severity: | trivial | Version: | 5.2 |
Component: | Site Health | Keywords: | site-health commit |
Focuses: | Cc: |
Description
We can see on base code (https://core.trac.wordpress.org/browser/branches/5.2/src/wp-admin/includes/class-wp-site-health.php?rev=45347#L1648) that complete $_COOKIE are parsed to api call for check on site health. Not worries but $_COOKIE contains PHPSESSID key.
The PHP script in curl waits for the session to free itself from the first script that calls the API. This causes a timeout with CURL.
Many solutions to resolve that, unset PHPSESSID from cURL call or use https://php.net/manual/en/function.session-write-close.php to end session before cURL call.
Bug is also present on https://core.trac.wordpress.org/browser/branches/5.2/src/wp-admin/includes/class-wp-site-health-auto-updates.php?rev=45347#L93 and https://core.trac.wordpress.org/browser/branches/5.2/src/wp-admin/includes/class-wp-site-health.php?rev=45347#L1943
Attachments (1)
Change History (22)
#3
@
6 years ago
You're quite right that those tests will all fail, since they all rely on the site calling it self.
We've known that incorrect session usage in plugins has been a problem in the past (most notably made known when the plugin and theme editors were updated to perform loopback checks to ensure you didn't crash your own site during an edit), but in those cases plugins have been updated to treat sessions differently and the problems have gone away.
I must admit, I don't recall which plugins, or know what they changed though.
As for stripping out session id from the cookie which is passed, this may backfire, what if a site has been modified to rely on sessions to validate a login beyond the regular WordPress auth checks, do we have some good way of approaching a potential scenario like this?
Also making a note that any changes made to the tests need to be replicated elsewhere in core where loopbacks are performed so that the behavior is consistent.
#4
follow-up:
↓ 18
@
6 years ago
@Clorith thanks for the feedback... upon some further research, making use of session_write_close() and keeping sessions open/locked only when we know it'll be needed for writing seems to have done the trick and probably a better approach anyway.
For anyone with a similar problem, maybe this explains it better, my previous snippet failed the site health tests, this one doesn't:
<?php add_action('init', function(){ session_start(); //this loads variables to $_SESSION for reading if( empty($your_plugin_needs_session_saving) ){ session_write_close(); //other plugins can restart a session again via session_start() } // if session writing is needed, close session after writing is done });
I'm not sure if this would work for all use cases, but in my case I only need to write to sessions when particular actions are taken, avoiding (hopefully) all situations where there'd be a conflict due to session locking.
The only argument I'd make towards it possibly being a bug in Site Health is that in my case, until now, my plugin session handling worked fine with all other WP functionality (at least, I've not been made aware of any issues).
#5
follow-up:
↓ 6
@
6 years ago
I think it will be better to close session in the plugin code base no ? Everybody get this issue I think...
We can easily resolve the bug on code. I can write that but I need to take the time to understand the rules of contributions, it is the most time-consuming and I've no time at the moment...
#6
in reply to:
↑ 5
@
6 years ago
Replying to matthieumota:
I think it will be better to close session in the plugin code base no ? Everybody get this issue I think...
I think what @Clorith means is the problem with 'fixing' the site check, in this case, is that the way we're using sessions might be 'wrong'. Other parts of core might do the same thing and therefore our code would cause problems there too, hence the site check giving a warning of the potential problem.
I'd be interested to know what other instances a loopback like this occurs in core, requiring this check to also maintain session data the same way. The only thing that springs to mind is maybe multiple modifications in the block editor triggering multiple async API calls. Crons like updates for example I believe are fired off independently without any user/session data?
#7
@
5 years ago
- Component changed from Administration to Site Health
Moving Site Health tickets into their lovely new home, the Site Health component.
#8
follow-up:
↓ 11
@
5 years ago
- Keywords close added
You are correct that cron events fire a loopback, but it does not rely on authentication.
The theme and plugin editors perform these kind of checks, and will not allow your changes to be saved if there is a failure (and is how we found the session problem in the first place, when many users started having this issue, the plugins that were adding sessions were updated in those cases though).
I am leaning towards not leaving session locking active when not needed being the best approach here, the scenario I describe above is also the only one I can think of right now where the loopbacks require authentication, but as mentioned it is also where we saw a noteworthy amount of users experience issues until plugin changes were made.
I'm going to leave the ticket open for feedback on these points as well, but have marked it as a candidate for closing soon unless something special comes up.
#9
@
5 years ago
For anyone wondering, if you open a session early to load up $_SESSION variables, and then session_write_close(), you can reopen it and write at any point in time by just using session_start() again, writing what you need and closing it right after.
If the session is open early on, headers are sent and starting a session even after headers are sent is not going to cause any warnings/errors.
I've found in my case this gets around any session locking issues and allows you to read/write to sessions without any hindrance.
#10
@
5 years ago
- Keywords close removed
- Milestone Awaiting Review deleted
- Resolution set to wontfix
- Status changed from new to closed
It's been a few weeks, and there's nothing new here, so I'm closing this for now.
Unfortunately the most appropriate close reason is wontfix
, this is just a trac workflow thing, and if something comes up in the future that warrants further investigation here, that is of course not a problem.
#11
in reply to:
↑ 8
@
5 years ago
- Milestone set to 5.5
- Resolution wontfix deleted
- Status changed from closed to reopened
Replying to Clorith:
The theme and plugin editors perform these kind of checks, and will not allow your changes to be saved if there is a failure (and is how we found the session problem in the first place, when many users started having this issue, the plugins that were adding sessions were updated in those cases though).
Related: #43358
I think Site Health should detect an active PHP session and provide a more specific message than just requests timing out. This would help with troubleshooting.
47320.diff adds a test for this. Any suggestions on the wording welcome :)
This ticket was mentioned in Slack in #core-site-health by sergey. View the logs.
5 years ago
#13
follow-up:
↓ 16
@
5 years ago
In looking through the 47320.diff perhaps a few sentence modifications.
An active PHP session detected
-> An active PHP session was detected
I there any way to determine the source of the session_start()
call? This information would be greatly informative but likely very difficult to obtain.
Otherwise the patch looks good to me.
Patch applies cleanly, like there was any doubt ;)
This ticket was mentioned in Slack in #core-site-health by afragen. View the logs.
5 years ago
#16
in reply to:
↑ 13
@
5 years ago
Replying to afragen:
I there any way to determine the source of the
session_start()
call? This information would be greatly informative but likely very difficult to obtain.
I haven't found a way to determine that. It looks like including session_name() would also be helpful, but that can be done later.
Otherwise the patch looks good to me. Patch applies cleanly, like there was any doubt ;)
Thanks for the review! :)
#17
@
5 years ago
- Owner set to SergeyBiryukov
- Resolution set to fixed
- Status changed from reopened to closed
In 47585:
#18
in reply to:
↑ 4
;
follow-up:
↓ 19
@
4 years ago
Hi @netweblogic,
Where to add these codes? I want to try it. Thanks in advance!
Replying to netweblogic:
@Clorith thanks for the feedback... upon some further research, making use of session_write_close() and keeping sessions open/locked only when we know it'll be needed for writing seems to have done the trick and probably a better approach anyway.
For anyone with a similar problem, maybe this explains it better, my previous snippet failed the site health tests, this one doesn't:
<?php add_action('init', function(){ session_start(); //this loads variables to $_SESSION for reading if( empty($your_plugin_needs_session_saving) ){ session_write_close(); //other plugins can restart a session again via session_start() } // if session writing is needed, close session after writing is done });I'm not sure if this would work for all use cases, but in my case I only need to write to sessions when particular actions are taken, avoiding (hopefully) all situations where there'd be a conflict due to session locking.
The only argument I'd make towards it possibly being a bug in Site Health is that in my case, until now, my plugin session handling worked fine with all other WP functionality (at least, I've not been made aware of any issues).
#19
in reply to:
↑ 18
;
follow-up:
↓ 21
@
4 years ago
@cfm168 This is a regular wp snippet, you could add it to your theme's functions.php file for example.
Replying to cfm168:
Hi @netweblogic,
Where to add these codes? I want to try it. Thanks in advance!
Replying to netweblogic:
@Clorith thanks for the feedback... upon some further research, making use of session_write_close() and keeping sessions open/locked only when we know it'll be needed for writing seems to have done the trick and probably a better approach anyway.
For anyone with a similar problem, maybe this explains it better, my previous snippet failed the site health tests, this one doesn't:
<?php add_action('init', function(){ session_start(); //this loads variables to $_SESSION for reading if( empty($your_plugin_needs_session_saving) ){ session_write_close(); //other plugins can restart a session again via session_start() } // if session writing is needed, close session after writing is done });I'm not sure if this would work for all use cases, but in my case I only need to write to sessions when particular actions are taken, avoiding (hopefully) all situations where there'd be a conflict due to session locking.
The only argument I'd make towards it possibly being a bug in Site Health is that in my case, until now, my plugin session handling worked fine with all other WP functionality (at least, I've not been made aware of any issues).
#20
@
4 years ago
Thank you for advising.
I found two plugins causing the site health issues. Deactivate these two plugins all three critical issues are disappeared and site health status 0 issue. I will have the developers to fix the problem.
Will try your code if the issues persist after developers helpless.
Thank you again!
#21
in reply to:
↑ 19
@
4 years ago
Replying to netweblogic:
@cfm168 This is a regular wp snippet, you could add it to your theme's functions.php file for example.
Replying to cfm168:
Hi @netweblogic,
Where to add these codes? I want to try it. Thanks in advance!
Replying to netweblogic:
@Clorith thanks for the feedback... upon some further research, making use of session_write_close() and keeping sessions open/locked only when we know it'll be needed for writing seems to have done the trick and probably a better approach anyway.
For anyone with a similar problem, maybe this explains it better, my previous snippet failed the site health tests, this one doesn't:
<?php add_action('init', function(){ session_start(); //this loads variables to $_SESSION for reading if( empty($your_plugin_needs_session_saving) ){ session_write_close(); //other plugins can restart a session again via session_start() } // if session writing is needed, close session after writing is done });I'm not sure if this would work for all use cases, but in my case I only need to write to sessions when particular actions are taken, avoiding (hopefully) all situations where there'd be a conflict due to session locking.
The only argument I'd make towards it possibly being a bug in Site Health is that in my case, until now, my plugin session handling worked fine with all other WP functionality (at least, I've not been made aware of any issues).
This issue causes multiple tests to fail in the site health interface if your theme or plugin starts a session. The following errors are triggered by curl timeouts:
By the following code:
Thanks for reporting this @matthieumota
I would say removing session data from the curl call is the most appropriate solution, given these tests that fail don't require sessions to pass/fail, whereas session data may still be needed in the original page load.