blob: 0515e3244a6e99deef8f80c2f45b320f7c0c24e8 [file] [log] [blame]
/*
* This file is part of the flashrom project.
*
* Copyright (C) 2011 The Chromium OS Authors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* power.c: power management routines
*/
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include <limits.h>
#include "flash.h" /* for msg_* */
#include "power.h"
/*
* Returns the path to a lock file in which flashrom's PID should be written to
* instruct powerd not to suspend or shut down.
*
* powerd now checks for arbitrary lock files within /run/lock/power_override,
* but flashrom needs to keep support for falling back to the old file at
* /run/lock/flashrom_power.lock indefinitely to support the case where a new
* version of flashrom is running against an old version of the OS during a
* system update.
*/
static const char *get_powerd_lock_file_path(void)
{
return access("/run/lock/power_override/", F_OK) == 0 ?
"/run/lock/power_override/flashrom.lock" :
"/run/lock/flashrom_powerd.lock";
}
int disable_power_management()
{
FILE *lock_file = NULL;
const char *path = NULL;
int rc = 0;
msg_pdbg("%s: Disabling power management.\n", __func__);
path = get_powerd_lock_file_path();
if (!(lock_file = fopen(path, "w"))) {
msg_perr("%s: Failed to open %s for writing: %s\n",
__func__, path, strerror(errno));
return 1;
}
if (fprintf(lock_file, "%ld", (long)getpid()) < 0) {
msg_perr("%s: Failed to write PID to %s: %s\n",
__func__, path, strerror(errno));
rc = 1;
}
if (fclose(lock_file) != 0) {
msg_perr("%s: Failed to close %s: %s\n",
__func__, path, strerror(errno));
}
return rc;
}
int restore_power_management()
{
const char *path = NULL;
int result = 0;
msg_pdbg("%s: Re-enabling power management.\n", __func__);
path = get_powerd_lock_file_path();
result = unlink(path);
if (result != 0 && errno != ENOENT) {
msg_perr("%s: Failed to unlink %s: %s\n",
__func__, path, strerror(errno));
return 1;
}
return 0;
}