mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-10-29 04:55:26 +03:00
logind: don't allow suspending/hibernating if the kernel doesn't support it
This commit is contained in:
parent
679b7d7912
commit
dc3a1b76a6
@ -19,6 +19,8 @@
|
|||||||
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
||||||
***/
|
***/
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "conf-parser.h"
|
#include "conf-parser.h"
|
||||||
#include "special.h"
|
#include "special.h"
|
||||||
#include "dbus-common.h"
|
#include "dbus-common.h"
|
||||||
@ -54,6 +56,7 @@ int manager_handle_action(
|
|||||||
DBusError error;
|
DBusError error;
|
||||||
int r;
|
int r;
|
||||||
InhibitWhat inhibit_operation;
|
InhibitWhat inhibit_operation;
|
||||||
|
bool supported = true;
|
||||||
|
|
||||||
assert(m);
|
assert(m);
|
||||||
|
|
||||||
@ -63,6 +66,20 @@ int manager_handle_action(
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (handle == HANDLE_SUSPEND)
|
||||||
|
supported = can_sleep("mem") > 0;
|
||||||
|
else if (handle == HANDLE_HIBERNATE)
|
||||||
|
supported = can_sleep("disk") > 0;
|
||||||
|
else if (handle == HANDLE_HYBRID_SLEEP)
|
||||||
|
supported = can_sleep("disk") > 0 && can_sleep_disk("suspend") > 0;
|
||||||
|
else if (handle == HANDLE_KEXEC)
|
||||||
|
supported = access("/sbin/kexec", X_OK) >= 0;
|
||||||
|
|
||||||
|
if (!supported) {
|
||||||
|
log_warning("Requested operation not supported, ignoring.");
|
||||||
|
return -ENOTSUP;
|
||||||
|
}
|
||||||
|
|
||||||
/* If the key handling is inhibited, don't do anything */
|
/* If the key handling is inhibited, don't do anything */
|
||||||
if (inhibit_key > 0) {
|
if (inhibit_key > 0) {
|
||||||
if (manager_is_inhibited(m, inhibit_key, INHIBIT_BLOCK, NULL, true, false, 0)) {
|
if (manager_is_inhibited(m, inhibit_key, INHIBIT_BLOCK, NULL, true, false, 0)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user