aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-07-13Do not use obsolete CPrivKey for passing keys aroundPieter Wuille
2011-07-13Add the walletlock RPC method to lock the wallet manually.Matt Corallo
2011-07-13Dynamically remove/insert the Options for encryption in the menus.Matt Corallo
2011-07-13Push unlocked_until in getinfo.Matt Corallo
2011-07-13Set the number of SHA512 rounds based on the speed of the computer.Matt Corallo
2011-07-13Add wallet privkey encryption.Matt Corallo
This commit adds support for ckeys, or enCrypted private keys, to the wallet. All keys are stored in memory in their encrypted form and thus the passphrase is required from the user to spend coins, or to create new addresses. Keys are encrypted with AES-256-CBC using OpenSSL's EVP library. The key is calculated via EVP_BytesToKey using SHA512 with (by default) 25000 rounds and a random salt. By default, the user's wallet remains unencrypted until they call the RPC command encryptwallet <passphrase> or, from the GUI menu, Options-> Encrypt Wallet. When the user is attempting to call RPC functions which require the password to unlock the wallet, an error will be returned unless they call walletpassphrase <passphrase> <time to keep key in memory> first. A keypoolrefill command has been added which tops up the users keypool (requiring the passphrase via walletpassphrase first). keypoolsize has been added to the output of getinfo to show the user the number of keys left before they need to specify their passphrase (and call keypoolrefill). Note that walletpassphrase will automatically fill keypool in a separate thread which it spawns when the passphrase is set. This could cause some delays in other threads waiting for locks on the wallet passphrase, including one which could cause the passphrase to be stored longer than expected, however it will not allow the passphrase to be used longer than expected as ThreadCleanWalletPassphrase will attempt to get a lock on the key as soon as the specified lock time has arrived. When the keypool runs out (and wallet is locked) GetOrReuseKeyFromPool returns vchDefaultKey, meaning miners may start to generate many blocks to vchDefaultKey instead of a new key each time. A walletpassphrasechange <oldpassphrase> <newpassphrase> has been added to allow the user to change their password via RPC. Whenever keying material (unencrypted private keys, the user's passphrase, the wallet's AES key) is stored unencrypted in memory, any reasonable attempt is made to mlock/VirtualLock that memory before storing the keying material. This is not true in several (commented) cases where mlock/VirtualLocking the memory is not possible. Although encryption of private keys in memory can be very useful on desktop systems (as some small amount of protection against stupid viruses), on an RPC server, the password is entered fairly insecurely. Thus, the only main advantage encryption has for RPC servers is for RPC servers that do not spend coins, except in rare cases, eg. a webserver of a merchant which only receives payment except for cases of manual intervention. Thanks to jgarzik for the original patch and sipa, gmaxwell and many others for all their input. Conflicts: src/wallet.cpp
2011-07-10Make mlock() and munlock() portable to systems that require the address to ↵Doug Huff
be on a page boundary.
2011-07-08mlock() all private keys in memoryDylan Noblesmith
Inline comment and idea come from the encprivkeys branch by Matt Corallo <matt@bluematt.me>.
2011-07-08Prepare codebase for Encrypted Keys.Pieter Wuille
2011-07-05Merge pull request #383 from sipa/syncdefaultv0.3.24rc3Jeff Garzik
Fix synchronization of default key
2011-07-05Revert "Make UPnP default on Bitcoin but not on Bitcoind."Matt Corallo
This reverts commit ee1f884229736da6f5443157ccba97f4e8f50f82. Stupid, stupid me...there is exactly 0 way to convince make to execute a conditional based on a target-specific variable.
2011-07-05Fix synchronization of default keyPieter Wuille
2011-07-04Merge pull request #379 from gavinandresen/nocommasv0.3.24rc2Gavin Andresen
Do not use comma as thousands separator
2011-07-05Added a couple minor things to match newer build process.Matt Corallo
This adds the relevent patches which are applied to wx, and updates for cross compiling.
2011-07-04Do not use comma as thousands separatorGavin Andresen
Using the comma as thousands separator causes problems for parts of the world where comma == decimal point. Germans sending 0,001 bitcoins are unpleasantly surprised when that results in 1 BTC getting sent.
2011-07-03Block-chain lock-in at 134444Gavin Andresen
2011-07-02Bump version to 0.3.24.Jeff Garzik
2011-07-02Merge branch 'tmp2' into tmp3Jeff Garzik
2011-07-02Merge pull request #374 from TheBlueMatt/neterrorJeff Garzik
Give more detailed error messages for connection failure.
2011-07-02Give more detailed error messages for connection failure.Matt Corallo
2011-07-01Merge pull request #372 from TheBlueMatt/upnpJeff Garzik
Make UPnP default on Bitcoin but not on Bitcoind.
2011-07-01Merge pull request #373 from EricJ2190/masterJeff Garzik
Another Visual C++ Makefile Update
2011-07-01Add keystore.h to makefile.vs's header list.Eric Hosmer
2011-07-01Further updated Visual C++ makefile.Eric Hosmer
2011-07-02Make UPnP default on Bitcoin but not on Bitcoind.Matt Corallo
This is a bit of an ugly hack, but its the only way to do it.
2011-07-01Merge pull request #343 from muggenhor/proper-http-server-rejectionJeff Garzik
rpc server: send '403 Forbidden' to rejected clients
2011-07-01Merge pull request #368 from TheBlueMatt/dnsseedJeff Garzik
Only use dnsseeds when not on testnet.
2011-07-01Merge pull request #371 from EricJ2190/masterJeff Garzik
Updated Visual C++ Makefile
2011-07-01Enable DNS seeding by default.Jeff Garzik
2011-07-01Updated Visual C++ makefile.Eric Hosmer
2011-07-01Only use dnsseeds and static seeds when not on testnet.Matt Corallo
2011-07-01Limit response to getblocks to half of output buffer sizePieter Wuille
Introduce SendBufferSize() and ReceiveBufferSize(), and limit the blocks sent as response to the "getblocks" message to half of the active send buffer size.
2011-06-30Merge pull request #367 from TheBlueMatt/dnsseedJeff Garzik
Add new DNSSeed dnsseed.bluematt.me.
2011-06-30Add new DNSSeed dnsseed.bluematt.me.Matt Corallo
This seed will pull a random set of 20 nodes from the network which are tested to be online instead of a static list.
2011-06-28Fix connection failure debug outputJoerie de Gram
2011-06-27Fix AddressBook syncrhonization between a CWallet and CWalletDBStéphane Gimenez
This problem was reported independently by laanwj in Issue #350.
2011-06-27Merge pull request #356 from gavinandresen/unitTestGavin Andresen
Boost unit-testing framework. Thanks to Steve (gasteve in irc) for original code.
2011-06-27Boost unit-testing framework.Gavin Andresen
make -f makefile.{unix,osx,mingw} test_bitcoin to compile dumb, do-almost-nothing placeholder unit tests.
2011-06-26rpc: don't send 403 when using SSL to prevent DoSGiel van Schijndel
Signed-off-by: Giel van Schijndel <me@mortis.eu>
2011-06-26rpc server: send '403 Forbidden' to rejected clientsGiel van Schijndel
In order to be a proper HTTP implementation clients that aren't allowed to connect to the RPC server (using -rpcallowip), should receive a proper HTTP response. So instead of closing the connection on them send a '403 Forbidden' status. Signed-off-by: Giel van Schijndel <me@mortis.eu>
2011-06-26Fix segfault when creating new walletPieter Wuille
The initialization of the default key used keyUser instead of vchDefaultKey. keyUser is now complete removed.
2011-06-24Merge branch 'totalblocksestimate1' of https://github.com/laanwj/bitcoinGavin Andresen
2011-06-23Edited init.cpp to include a check that -datadir existsJames Burkle
2011-06-20Bugfixes walletclassPieter Wuille
Some problems found by ius: * compiler complains with no return after critical section block * CKeyStore::GetPrivKey(key) was undefined for unknown key * missing return statement in GetChange()
2011-06-19Fix missing includes needed for Boost 1.46.Shane Wegner
2011-06-18CWalletTx::GetAmounts(): pass NULL for CKeyStore*, rather than falseJeff Garzik
to fix warning.
2011-06-19add GetTotalBlocksEstimate() function, move magic number to constantWladimir J. van der Laan
2011-06-15CWallet classPieter Wuille
* A new class CKeyStore manages private keys, and script.cpp depends on access to CKeyStore. * A new class CWallet extends CKeyStore, and contains all former wallet-specific globals; CWallet depends on script.cpp, not the other way around. * Wallet-specific functions in CTransaction/CTxIn/CTxOut (GetDebit, GetCredit, GetChange, IsMine, IsFromMe), are moved to CWallet, taking their former 'this' argument as an explicit parameter * CWalletTx objects know which CWallet they belong to, for convenience, so they have their own direct (and caching) GetDebit/... functions. * Some code was moved from CWalletDB to CWallet, such as handling of reserve keys. * Main.cpp keeps a set of all 'registered' wallets, which should be informed about updates to the block chain, and does not have any notion about any 'main' wallet. Function in main.cpp that require a wallet (such as GenerateCoins), take an explicit CWallet* argument. * The actual CWallet instance used by the application is defined in init.cpp as "CWallet* pwalletMain". rpc.cpp and ui.cpp use this variable. * Functions in main.cpp and db.cpp that are not used by other modules are marked static. * The code for handling the 'submitorder' message is removed, as it not really compatible with the idea that a node is independent from the wallet(s) connected to it, and obsolete anyway.
2011-06-15move wallet code to separate filePieter Wuille
This introduces two new source files, keystore.cpp and wallet.cpp with corresponding headers. Code is moved from main and db, in a preparation for a follow-up commit which introduces the classes CWallet and CKeyStore.
2011-06-14Merge pull request #226 from jordanlewis/betterheadersJeff Garzik
Optimize header dependencies; improve Makefile dependency graph