/* C:B**************************************************************************
Copyright 2017, Alex Badics
This file is part of sedutil.
sedutil 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, either version 3 of the License, or
(at your option) any later version.
sedutil 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.
You should have received a copy of the GNU General Public License
along with sedutil. If not, see .
* C:E********************************************************************** */
#include "os.h"
#include
#include "DtaDevLinuxDrive.h"
#ifndef PBA_BUILD
#include
#endif
using namespace std;
uint8_t DtaDevLinuxDrive::prepareForS3Sleep(uint8_t lockingrange, const char *userid, const std::shared_ptr &hash)
{
LOG(D1) << "Entering DtaDevLinuxDrive::prepareForS3Sleep";
#ifdef PBA_BUILD
LOG(E) << "prepareForS3Sleep not supported in PBA build";
return -1;
#else
opal_lock_unlock opal_ioctl_data={};
opal_ioctl_data.l_state = OPAL_RW;
opal_ioctl_data.session.opal_key.lr = lockingrange;
if (!strcmp("Admin1", userid))
{
opal_ioctl_data.session.who = OPAL_ADMIN1;
}
else if (!memcmp("User", userid, 4))
{
int n = atoi(&userid[4]);
opal_ioctl_data.session.who = OPAL_USER1 + n - 1;
}
else
{
LOG(E) << "Invalid userid \"" << userid << "\"specified for prepareForS3Sleep";
return -1;
}
size_t hash_len = min(hash->size(), sizeof(opal_ioctl_data.session.opal_key.key));
LOG(D2) << "Setting a hash of length" << hash_len;
memcpy(opal_ioctl_data.session.opal_key.key, hash->data(), hash_len);
opal_ioctl_data.session.opal_key.key_len = hash_len;
int err = ioctl(fd, IOC_OPAL_SAVE, &opal_ioctl_data);
if (err < 0)
return errno;
return 0;
#endif
}