2014-07-23 13:03:52 +00:00
|
|
|
// Copyright (c) 2014, The Monero Project
|
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
// materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
// used to endorse or promote products derived from this software without specific
|
|
|
|
// prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
|
|
|
* \file electrum-words.cpp
|
|
|
|
*
|
|
|
|
* \brief Mnemonic seed generation and wallet restoration from them.
|
|
|
|
*
|
2014-06-04 22:59:47 +00:00
|
|
|
* This file and its header file are for translating Electrum-style word lists
|
|
|
|
* into their equivalent byte representations for cross-compatibility with
|
|
|
|
* that method of "backing up" one's wallet keys.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
2014-06-06 20:31:04 +00:00
|
|
|
#include <cassert>
|
2014-06-04 22:59:47 +00:00
|
|
|
#include <map>
|
2014-06-05 03:08:35 +00:00
|
|
|
#include <cstdint>
|
|
|
|
#include <vector>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
2014-06-04 22:59:47 +00:00
|
|
|
#include "crypto/crypto.h" // for declaration of crypto::secret_key
|
2014-09-23 13:04:39 +00:00
|
|
|
#include <fstream>
|
2014-09-23 11:34:04 +00:00
|
|
|
#include "mnemonics/electrum-words.h"
|
2014-09-23 15:18:15 +00:00
|
|
|
#include <stdexcept>
|
2014-09-25 12:34:30 +00:00
|
|
|
#include <boost/filesystem.hpp>
|
2014-09-27 20:59:25 +00:00
|
|
|
#include <boost/crc.hpp>
|
|
|
|
#include <boost/algorithm/string/join.hpp>
|
2014-09-23 13:04:39 +00:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2014-09-27 20:59:25 +00:00
|
|
|
int num_words = 0;
|
|
|
|
const int seed_length = 24;
|
|
|
|
|
2014-09-23 13:04:39 +00:00
|
|
|
std::map<std::string,uint32_t> words_map;
|
2014-09-23 15:18:15 +00:00
|
|
|
std::vector<std::string> words_array;
|
2014-09-23 13:04:39 +00:00
|
|
|
|
2014-09-27 20:59:25 +00:00
|
|
|
bool is_old_style_word_list = false;
|
2014-09-27 11:34:23 +00:00
|
|
|
|
2014-09-24 17:14:36 +00:00
|
|
|
const std::string WORD_LISTS_DIRECTORY = "wordlists";
|
|
|
|
const std::string LANGUAGES_DIRECTORY = "languages";
|
2014-09-23 13:04:39 +00:00
|
|
|
const std::string OLD_WORD_FILE = "old-word-list";
|
2014-09-23 15:18:15 +00:00
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
2014-09-27 20:59:25 +00:00
|
|
|
* \brief Tells if the module hasn't been initialized with a word list file.
|
2014-09-28 08:18:52 +00:00
|
|
|
* \return true if the module hasn't been initialized with a word list file false otherwise.
|
2014-09-27 12:50:15 +00:00
|
|
|
*/
|
2014-09-26 18:04:35 +00:00
|
|
|
bool is_uninitialized()
|
2014-09-23 13:04:39 +00:00
|
|
|
{
|
|
|
|
return num_words == 0 ? true : false;
|
|
|
|
}
|
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
2014-09-27 20:59:25 +00:00
|
|
|
* \brief Create word list map and array data structres for use during inter-conversion between
|
2014-09-27 12:50:15 +00:00
|
|
|
* words and secret key.
|
|
|
|
* \param word_file Path to the word list file from pwd.
|
|
|
|
*/
|
2014-09-23 13:04:39 +00:00
|
|
|
void create_data_structures(const std::string &word_file)
|
|
|
|
{
|
2014-09-26 18:04:35 +00:00
|
|
|
words_array.clear();
|
|
|
|
words_map.clear();
|
2014-09-26 19:25:21 +00:00
|
|
|
num_words = 0;
|
2014-09-23 15:18:15 +00:00
|
|
|
std::ifstream input_stream;
|
|
|
|
input_stream.open(word_file.c_str(), std::ifstream::in);
|
|
|
|
|
|
|
|
if (!input_stream)
|
2014-09-28 08:18:52 +00:00
|
|
|
throw std::runtime_error("Word list file couldn't be opened.");
|
2014-09-23 15:18:15 +00:00
|
|
|
|
2014-09-23 13:04:39 +00:00
|
|
|
std::string word;
|
|
|
|
while (input_stream >> word)
|
|
|
|
{
|
2014-09-23 15:18:15 +00:00
|
|
|
words_array.push_back(word);
|
2014-09-23 13:04:39 +00:00
|
|
|
words_map[word] = num_words;
|
|
|
|
num_words++;
|
|
|
|
}
|
|
|
|
input_stream.close();
|
|
|
|
}
|
2014-09-26 18:04:35 +00:00
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
2014-09-27 20:59:25 +00:00
|
|
|
* \brief Tells if all the words passed in wlist was present in current word list file.
|
2014-09-27 12:50:15 +00:00
|
|
|
* \param wlist List of words to match.
|
2014-09-28 08:18:52 +00:00
|
|
|
* \return true if all the words were present false if not.
|
2014-09-27 12:50:15 +00:00
|
|
|
*/
|
2014-09-26 18:04:35 +00:00
|
|
|
bool word_list_file_match(const std::vector<std::string> &wlist)
|
|
|
|
{
|
|
|
|
for (std::vector<std::string>::const_iterator it = wlist.begin(); it != wlist.end(); it++)
|
|
|
|
{
|
|
|
|
if (words_map.count(*it) == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2014-09-27 20:59:25 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Creates a checksum index in the word list array on the list of words.
|
|
|
|
* \param words Space separated list of words
|
|
|
|
* \return Checksum index
|
|
|
|
*/
|
|
|
|
uint32_t create_checksum_index(const std::string &words)
|
|
|
|
{
|
|
|
|
boost::crc_32_type result;
|
|
|
|
result.process_bytes(words.data(), words.length());
|
|
|
|
return result.checksum() % seed_length;
|
|
|
|
}
|
2014-09-23 13:04:39 +00:00
|
|
|
}
|
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
|
|
|
* \namespace crypto
|
2014-09-27 20:59:25 +00:00
|
|
|
*
|
|
|
|
* \brief crypto namespace.
|
2014-09-27 12:50:15 +00:00
|
|
|
*/
|
2014-06-04 22:59:47 +00:00
|
|
|
namespace crypto
|
|
|
|
{
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
2014-09-27 20:59:25 +00:00
|
|
|
* \namespace crypto::ElectrumWords
|
2014-09-27 12:50:15 +00:00
|
|
|
*
|
2014-09-27 20:59:25 +00:00
|
|
|
* \brief Mnemonic seed word generation and wallet restoration helper functions.
|
2014-09-27 12:50:15 +00:00
|
|
|
*/
|
2014-06-04 22:59:47 +00:00
|
|
|
namespace ElectrumWords
|
|
|
|
{
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
|
|
|
* \brief Called to initialize it work with a word list file.
|
|
|
|
* \param language Language of the word list file.
|
2014-09-28 08:18:52 +00:00
|
|
|
* \param old_word_list true it is to use the old style word list file false if not.
|
2014-09-27 12:50:15 +00:00
|
|
|
*/
|
2014-09-25 12:34:30 +00:00
|
|
|
void init(const std::string &language, bool old_word_list)
|
2014-09-23 13:04:39 +00:00
|
|
|
{
|
|
|
|
if (old_word_list)
|
|
|
|
{
|
2014-09-27 12:50:15 +00:00
|
|
|
// Use the old word list file if told to.
|
2014-09-24 17:14:36 +00:00
|
|
|
create_data_structures(WORD_LISTS_DIRECTORY + '/' + OLD_WORD_FILE);
|
2014-09-27 20:59:25 +00:00
|
|
|
is_old_style_word_list = true;
|
2014-09-23 13:04:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-09-24 17:14:36 +00:00
|
|
|
create_data_structures(WORD_LISTS_DIRECTORY + '/' + LANGUAGES_DIRECTORY + '/' + language);
|
2014-09-27 20:59:25 +00:00
|
|
|
is_old_style_word_list = false;
|
2014-09-23 13:04:39 +00:00
|
|
|
}
|
2014-09-26 18:04:35 +00:00
|
|
|
if (num_words == 0)
|
|
|
|
{
|
2014-09-26 19:25:21 +00:00
|
|
|
throw std::runtime_error(std::string("Word list file is empty: ") +
|
|
|
|
(old_word_list ? OLD_WORD_FILE : (LANGUAGES_DIRECTORY + '/' + language)));
|
2014-09-26 18:04:35 +00:00
|
|
|
}
|
2014-09-23 13:04:39 +00:00
|
|
|
}
|
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
|
|
|
* \brief Converts seed words to bytes (secret key).
|
|
|
|
* \param words String containing the words separated by spaces.
|
|
|
|
* \param dst To put the secret key restored from the words.
|
|
|
|
* \return false if not a multiple of 3 words, or if word is not in the words list
|
2014-06-05 03:08:35 +00:00
|
|
|
*/
|
2014-06-04 22:59:47 +00:00
|
|
|
bool words_to_bytes(const std::string& words, crypto::secret_key& dst)
|
|
|
|
{
|
2014-09-26 18:04:35 +00:00
|
|
|
std::vector<std::string> wlist;
|
|
|
|
|
|
|
|
boost::split(wlist, words, boost::is_any_of(" "));
|
|
|
|
|
2014-09-27 20:59:25 +00:00
|
|
|
// If it is seed with a checksum.
|
|
|
|
if (wlist.size() == seed_length + 1)
|
|
|
|
{
|
|
|
|
// The last word is the checksum.
|
|
|
|
std::string last_word = wlist.back();
|
|
|
|
wlist.pop_back();
|
|
|
|
|
|
|
|
std::string checksum = wlist[create_checksum_index(boost::algorithm::join(wlist, " "))];
|
|
|
|
|
|
|
|
if (checksum != last_word)
|
|
|
|
{
|
|
|
|
// Checksum fail
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Try to find a word list file that contains all the words in the word list.
|
2014-09-26 18:04:35 +00:00
|
|
|
std::vector<std::string> languages;
|
2014-09-26 19:25:21 +00:00
|
|
|
get_language_list(languages);
|
2014-09-26 18:04:35 +00:00
|
|
|
|
|
|
|
std::vector<std::string>::iterator it;
|
2014-09-26 19:25:21 +00:00
|
|
|
for (it = languages.begin(); it != languages.end(); it++)
|
2014-09-26 18:04:35 +00:00
|
|
|
{
|
|
|
|
init(*it);
|
2014-09-26 19:25:21 +00:00
|
|
|
if (word_list_file_match(wlist))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2014-09-26 18:04:35 +00:00
|
|
|
}
|
2014-09-27 12:50:15 +00:00
|
|
|
// If no such file was found, see if the old style word list file has them all.
|
2014-09-26 18:04:35 +00:00
|
|
|
if (it == languages.end())
|
2014-09-23 13:04:39 +00:00
|
|
|
{
|
|
|
|
init("", true);
|
2014-09-26 18:04:35 +00:00
|
|
|
if (!word_list_file_match(wlist))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-09-23 13:04:39 +00:00
|
|
|
}
|
|
|
|
int n = num_words;
|
2014-06-05 03:08:35 +00:00
|
|
|
|
|
|
|
// error on non-compliant word list
|
|
|
|
if (wlist.size() != 12 && wlist.size() != 24) return false;
|
|
|
|
|
2014-06-06 18:18:11 +00:00
|
|
|
for (unsigned int i=0; i < wlist.size() / 3; i++)
|
2014-06-05 03:08:35 +00:00
|
|
|
{
|
|
|
|
uint32_t val;
|
|
|
|
uint32_t w1, w2, w3;
|
|
|
|
|
2014-09-23 13:04:39 +00:00
|
|
|
w1 = words_map.at(wlist[i*3]);
|
|
|
|
w2 = words_map.at(wlist[i*3 + 1]);
|
|
|
|
w3 = words_map.at(wlist[i*3 + 2]);
|
2014-06-05 03:08:35 +00:00
|
|
|
|
2014-06-06 21:18:57 +00:00
|
|
|
val = w1 + n * (((n - w1) + w2) % n) + n * n * (((n - w2) + w3) % n);
|
|
|
|
|
|
|
|
if (!(val % n == w1)) return false;
|
2014-06-05 03:08:35 +00:00
|
|
|
|
2014-06-06 20:31:04 +00:00
|
|
|
memcpy(dst.data + i * 4, &val, 4); // copy 4 bytes to position
|
2014-06-05 03:08:35 +00:00
|
|
|
}
|
|
|
|
|
2014-06-06 20:31:04 +00:00
|
|
|
std::string wlist_copy = words;
|
2014-06-05 03:08:35 +00:00
|
|
|
if (wlist.size() == 12)
|
|
|
|
{
|
2014-06-06 20:31:04 +00:00
|
|
|
memcpy(dst.data, dst.data + 16, 16); // if electrum 12-word seed, duplicate
|
|
|
|
wlist_copy += ' ';
|
|
|
|
wlist_copy += words;
|
2014-06-05 03:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2014-06-04 22:59:47 +00:00
|
|
|
}
|
2014-06-05 03:08:35 +00:00
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
|
|
|
* \brief Converts bytes (secret key) to seed words.
|
|
|
|
* \param src Secret key
|
2014-09-27 20:59:25 +00:00
|
|
|
* \param words Space delimited concatenated words get written here.
|
|
|
|
* \return true if successful false if not. Unsuccessful if wrong key size.
|
2014-06-05 03:08:35 +00:00
|
|
|
*/
|
2014-06-04 22:59:47 +00:00
|
|
|
bool bytes_to_words(const crypto::secret_key& src, std::string& words)
|
|
|
|
{
|
2014-09-26 18:04:35 +00:00
|
|
|
if (is_uninitialized())
|
2014-09-23 13:04:39 +00:00
|
|
|
{
|
2014-09-28 08:19:47 +00:00
|
|
|
init("english", true);
|
2014-09-23 13:04:39 +00:00
|
|
|
}
|
2014-09-27 20:59:25 +00:00
|
|
|
|
|
|
|
// To store the words for random access to add the checksum word later.
|
|
|
|
std::vector<std::string> words_store;
|
2014-09-23 13:04:39 +00:00
|
|
|
int n = num_words;
|
2014-06-05 03:08:35 +00:00
|
|
|
|
2014-09-27 20:59:25 +00:00
|
|
|
if (sizeof(src.data) % 4 != 0 || sizeof(src.data) == 0) return false;
|
2014-06-05 03:08:35 +00:00
|
|
|
|
|
|
|
// 8 bytes -> 3 words. 8 digits base 16 -> 3 digits base 1626
|
2014-06-06 18:18:11 +00:00
|
|
|
for (unsigned int i=0; i < sizeof(src.data)/4; i++, words += ' ')
|
2014-06-05 03:08:35 +00:00
|
|
|
{
|
|
|
|
uint32_t w1, w2, w3;
|
|
|
|
|
|
|
|
uint32_t val;
|
|
|
|
|
2014-06-06 19:45:21 +00:00
|
|
|
memcpy(&val, (src.data) + (i * 4), 4);
|
2014-06-05 03:08:35 +00:00
|
|
|
|
|
|
|
w1 = val % n;
|
|
|
|
w2 = ((val / n) + w1) % n;
|
|
|
|
w3 = (((val / n) / n) + w2) % n;
|
|
|
|
|
2014-09-23 13:04:39 +00:00
|
|
|
words += words_array[w1];
|
2014-06-05 03:08:35 +00:00
|
|
|
words += ' ';
|
2014-09-23 13:04:39 +00:00
|
|
|
words += words_array[w2];
|
2014-06-05 03:08:35 +00:00
|
|
|
words += ' ';
|
2014-09-23 13:04:39 +00:00
|
|
|
words += words_array[w3];
|
2014-09-27 20:59:25 +00:00
|
|
|
|
|
|
|
words_store.push_back(words_array[w1]);
|
|
|
|
words_store.push_back(words_array[w2]);
|
|
|
|
words_store.push_back(words_array[w3]);
|
2014-06-05 03:08:35 +00:00
|
|
|
}
|
2014-09-27 20:59:25 +00:00
|
|
|
|
|
|
|
words.pop_back();
|
|
|
|
words += (' ' + words_store[create_checksum_index(words)]);
|
2014-06-04 22:59:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
/*!
|
|
|
|
* \brief Gets a list of seed languages that are supported.
|
2014-09-27 20:59:25 +00:00
|
|
|
* \param languages The list of languages gets added to this vector.
|
2014-09-27 12:50:15 +00:00
|
|
|
*/
|
2014-09-25 12:34:30 +00:00
|
|
|
void get_language_list(std::vector<std::string> &languages)
|
|
|
|
{
|
|
|
|
languages.clear();
|
|
|
|
boost::filesystem::path languages_directory("wordlists/languages");
|
|
|
|
if (!boost::filesystem::exists(languages_directory) ||
|
|
|
|
!boost::filesystem::is_directory(languages_directory))
|
|
|
|
{
|
|
|
|
throw std::runtime_error("Word list languages directory is missing.");
|
|
|
|
}
|
|
|
|
boost::filesystem::directory_iterator end;
|
|
|
|
for (boost::filesystem::directory_iterator it(languages_directory); it != end; it++)
|
|
|
|
{
|
|
|
|
languages.push_back(it->path().filename().string());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-27 20:59:25 +00:00
|
|
|
/*!
|
|
|
|
* \brief Tells if the module is currenly using an old style word list.
|
|
|
|
* \return true if it is currenly using an old style word list false if not.
|
|
|
|
*/
|
|
|
|
bool get_is_old_style_word_list()
|
|
|
|
{
|
|
|
|
if (is_uninitialized())
|
|
|
|
{
|
|
|
|
throw std::runtime_error("ElectrumWords hasn't been initialized with a word list yet.");
|
|
|
|
}
|
|
|
|
return is_old_style_word_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Tells if the seed passed is an old style seed or not.
|
|
|
|
* \param seed The seed to check (a space delimited concatenated word list)
|
|
|
|
* \return true if the seed passed is a old style seed false if not.
|
|
|
|
*/
|
|
|
|
bool get_is_old_style_seed(const std::string &seed)
|
|
|
|
{
|
|
|
|
std::vector<std::string> wlist;
|
|
|
|
boost::split(wlist, seed, boost::is_any_of(" "));
|
|
|
|
return wlist.size() != (seed_length + 1);
|
|
|
|
}
|
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
}
|
2014-06-04 22:59:47 +00:00
|
|
|
|
2014-09-27 12:50:15 +00:00
|
|
|
}
|