Skip to content

Commit

Permalink
Merge pull request #82 from cogutvalera/issue_1171
Browse files Browse the repository at this point in the history
Safer way to handle unlock command of cli_wallet #1171
  • Loading branch information
pmconrad authored Oct 28, 2018
2 parents 8b6a2dd + edd6fa8 commit acfe075
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ endif()
SET (ORIGINAL_LIB_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES})

SET(BOOST_COMPONENTS)
LIST(APPEND BOOST_COMPONENTS thread date_time system filesystem program_options signals serialization chrono unit_test_framework context locale iostreams)
LIST(APPEND BOOST_COMPONENTS thread date_time system filesystem program_options signals serialization chrono unit_test_framework context locale iostreams regex)
SET( Boost_USE_STATIC_LIBS ON CACHE STRING "ON or OFF" )

IF( ECC_IMPL STREQUAL openssl )
Expand Down
2 changes: 2 additions & 0 deletions include/fc/rpc/cli.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ namespace fc { namespace rpc {

void set_prompt( const string& prompt );

void set_regex_secret( const string& expr );

private:
void run();

Expand Down
42 changes: 30 additions & 12 deletions src/rpc/cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,16 @@
# endif
#endif

#include <boost/regex.hpp>

namespace fc { namespace rpc {

static boost::regex& cli_regex_secret()
{
static boost::regex regex_expr;
return regex_expr;
}

static std::vector<std::string>& cli_commands()
{
static std::vector<std::string>* cmds = new std::vector<std::string>();
Expand Down Expand Up @@ -72,6 +80,11 @@ void cli::set_prompt( const string& prompt )
_prompt = prompt;
}

void cli::set_regex_secret( const string& expr )
{
cli_regex_secret() = expr;
}

void cli::run()
{
while( !_run_complete.canceled() )
Expand All @@ -87,9 +100,9 @@ void cli::run()
{
break;
}
std::cout << line << "\n";

line += char(EOF);
fc::variants args = fc::json::variants_from_string(line);;
fc::variants args = fc::json::variants_from_string(line);
if( args.size() == 0 )
continue;

Expand Down Expand Up @@ -190,6 +203,19 @@ static int cli_completion(char *token, char ***array)
return total_matches;
}

/***
* @brief regex match for secret information
* @param source the incoming text source
* @returns integer 1 in event of regex match for secret information, otherwise 0
*/
static int cli_check_secret(const char *source)
{
if (boost::regex_match(source, cli_regex_secret()))
return 1;

return 0;
}

/***
* @brief Read input from the user
* @param prompt the prompt to display
Expand All @@ -213,6 +239,7 @@ void cli::getline( const fc::string& prompt, fc::string& line)
{
rl_set_complete_func(my_rl_complete);
rl_set_list_possib_func(cli_completion);
rl_set_check_secret_func(cli_check_secret);

static fc::thread getline_thread("getline");
getline_thread.async( [&](){
Expand All @@ -222,16 +249,7 @@ void cli::getline( const fc::string& prompt, fc::string& line)
if( line_read == nullptr )
FC_THROW_EXCEPTION( fc::eof_exception, "" );
line = line_read;
try
{
if (*line_read)
add_history(line_read);
}
catch(...)
{
free(line_read);
throw;
}
// we don't need here to add line in editline's history, cause it will be doubled
free(line_read);
}).wait();
}
Expand Down

0 comments on commit acfe075

Please sign in to comment.