2017-10-06 13:50:41 -06:00
|
|
|
/* Copyright (C) 2018 Mike Fleetwood
|
|
|
|
*
|
|
|
|
* 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; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* PasswordRAMStore
|
|
|
|
*
|
|
|
|
* Memory only store of passwords and passphrases. Works like an associative array with
|
|
|
|
* a unique key used to identify each password. Passwords are C strings which are stored
|
|
|
|
* in a block of the process' virtual memory locked into RAM. Looked up pointers to
|
|
|
|
* passwords are valid at least until the next time the store is modified by an insert or
|
|
|
|
* erase call. Passwords are wiped from memory when no longer wanted.
|
|
|
|
*
|
|
|
|
* Recommend using LUKS UUIDs as the key when storing LUKS passphrases.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GPARTED_PASSWORDRAMSTORE_H
|
|
|
|
#define GPARTED_PASSWORDRAMSTORE_H
|
|
|
|
|
|
|
|
#include <glibmm/ustring.h>
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class PasswordRAMStore
|
|
|
|
{
|
2017-11-10 00:39:04 -07:00
|
|
|
friend class PasswordRAMStoreTest; // To allow unit testing PasswordRAMStoreTest class
|
2017-11-10 00:57:06 -07:00
|
|
|
// access to private methods.
|
2017-11-10 00:39:04 -07:00
|
|
|
|
2017-10-06 13:50:41 -06:00
|
|
|
public:
|
2018-04-23 10:15:23 -06:00
|
|
|
static bool store( const Glib::ustring & key, const char * password );
|
2017-10-06 13:50:41 -06:00
|
|
|
static bool erase( const Glib::ustring & key );
|
|
|
|
static const char * lookup( const Glib::ustring & key );
|
2017-11-10 00:39:04 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void erase_all();
|
2017-11-10 00:57:06 -07:00
|
|
|
static const char * get_protected_mem();
|
2017-10-06 13:50:41 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
#endif /* GPARTED_PASSWORDRAMSTORE_H */
|