aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
Commit message (Collapse)AuthorAgeFilesLines
...
* rpc: fix start_mining and status RPC crashesmoneromooo-monero2015-10-283-6/+8
| | | | | | | They check whether they're running on testnet by accessing the m_rpc_server object, which does not exist when in RPC mode. Also, fix hard_fork_info being called with the wrong API.
* Merge pull request #448Riccardo Spagni2015-10-261-7/+9
|\ | | | | | | | | 06c65cb rpc: fix hard_fork_info RPC (moneromooo-monero) 6f5c129 rpc: fix a few commands not working as command line (moneromooo-monero)
| * rpc: fix hard_fork_info RPCmoneromooo-monero2015-10-261-4/+6
| | | | | | | | I had never tested it, obviously
| * rpc: fix a few commands not working as command linemoneromooo-monero2015-10-261-3/+3
| | | | | | | | | | The method name to the "json_rpc" commands are names, not part of URLs.
* | daemon: add a status commandmoneromooo-monero2015-10-255-0/+71
|/ | | | | | Displays current block height and target, net hash, hard fork basic info, and connections. Useful as a basic user friendly "what's going on here" command.
* core_rpc_server: add a getblock RPC command, and fix print_blockmoneromooo-monero2015-10-131-8/+10
|
* build: default to Berkeley DB for 32 bit and ARMmoneromooo-monero2015-10-041-1/+1
|
* Add an RPC call and daemon command to get info on hard fork votingmoneromooo-monero2015-09-195-0/+62
|
* Add a is_key_image_spent daemon command and RPC callmoneromooo-monero2015-08-115-0/+65
|
* daemon: omit extra set of <> in error messagemoneromooo-monero2015-08-091-1/+1
| | | | The string conversion already adds them
* daemon: print a decoded tx in print_txmoneromooo-monero2015-08-091-0/+18
| | | | in addition to the raw hex representation
* daemon: fix print_tx not find transactionsmoneromooo-monero2015-08-091-0/+1
| | | | It was not even trying to
* Fixed binary size issue due to embedded checkpoint data.NoodleDoodleNoodleDoodleNoodleDoodleNoo2015-07-151-2/+6
| | | | | Fixed OSX compilation issues due to random lmdb resize points. Fixed infinite loop bug when calling core::get_block_template(..).
* ** CHANGES ARE EXPERIMENTAL (FOR TESTING ONLY)NoodleDoodleNoodleDoodleNoodleDoodleNoo2015-07-153-4/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bockchain: 1. Optim: Multi-thread long-hash computation when encountering groups of blocks. 2. Optim: Cache verified txs and return result from cache instead of re-checking whenever possible. 3. Optim: Preload output-keys when encoutering groups of blocks. Sort by amount and global-index before bulk querying database and multi-thread when possible. 4. Optim: Disable double spend check on block verification, double spend is already detected when trying to add blocks. 5. Optim: Multi-thread signature computation whenever possible. 6. Patch: Disable locking (recursive mutex) on called functions from check_tx_inputs which causes slowdowns (only seems to happen on ubuntu/VMs??? Reason: TBD) 7. Optim: Removed looped full-tx hash computation when retrieving transactions from pool (???). 8. Optim: Cache difficulty/timestamps (735 blocks) for next-difficulty calculations so that only 2 db reads per new block is needed when a new block arrives (instead of 1470 reads). Berkeley-DB: 1. Fix: 32-bit data errors causing wrong output global indices and failure to send blocks to peers (etc). 2. Fix: Unable to pop blocks on reorganize due to transaction errors. 3. Patch: Large number of transaction aborts when running multi-threaded bulk queries. 4. Patch: Insufficient locks error when running full sync. 5. Patch: Incorrect db stats when returning from an immediate exit from "pop block" operation. 6. Optim: Add bulk queries to get output global indices. 7. Optim: Modified output_keys table to store public_key+unlock_time+height for single transaction lookup (vs 3) 8. Optim: Used output_keys table retrieve public_keys instead of going through output_amounts->output_txs+output_indices->txs->output:public_key 9. Optim: Added thread-safe buffers used when multi-threading bulk queries. 10. Optim: Added support for nosync/write_nosync options for improved performance (*see --db-sync-mode option for details) 11. Mod: Added checkpoint thread and auto-remove-logs option. 12. *Now usable on 32-bit systems like RPI2. LMDB: 1. Optim: Added custom comparison for 256-bit key tables (minor speed-up, TBD: get actual effect) 2. Optim: Modified output_keys table to store public_key+unlock_time+height for single transaction lookup (vs 3) 3. Optim: Used output_keys table retrieve public_keys instead of going through output_amounts->output_txs+output_indices->txs->output:public_key 4. Optim: Added support for sync/writemap options for improved performance (*see --db-sync-mode option for details) 5. Mod: Auto resize to +1GB instead of multiplier x1.5 ETC: 1. Minor optimizations for slow-hash for ARM (RPI2). Incomplete. 2. Fix: 32-bit saturation bug when computing next difficulty on large blocks. [PENDING ISSUES] 1. Berkely db has a very slow "pop-block" operation. This is very noticeable on the RPI2 as it sometimes takes > 10 MINUTES to pop a block during reorganization. This does not happen very often however, most reorgs seem to take a few seconds but it possibly depends on the number of outputs present. TBD. 2. Berkeley db, possible bug "unable to allocate memory". TBD. [NEW OPTIONS] (*Currently all enabled for testing purposes) 1. --fast-block-sync arg=[0:1] (default: 1) a. 0 = Compute long hash per block (may take a while depending on CPU) b. 1 = Skip long-hash and verify blocks based on embedded known good block hashes (faster, minimal CPU dependence) 2. --db-sync-mode arg=[[safe|fast|fastest]:[sync|async]:[nblocks_per_sync]] (default: fastest:async:1000) a. safe = fdatasync/fsync (or equivalent) per stored block. Very slow, but safest option to protect against power-out/crash conditions. b. fast/fastest = Enables asynchronous fdatasync/fsync (or equivalent). Useful for battery operated devices or STABLE systems with UPS and/or systems with battery backed write cache/solid state cache. Fast - Write meta-data but defer data flush. Fastest - Defer meta-data and data flush. Sync - Flush data after nblocks_per_sync and wait. Async - Flush data after nblocks_per_sync but do not wait for the operation to finish. 3. --prep-blocks-threads arg=[n] (default: 4 or system max threads, whichever is lower) Max number of threads to use when computing long-hash in groups. 4. --show-time-stats arg=[0:1] (default: 1) Show benchmark related time stats. 5. --db-auto-remove-logs arg=[0:1] (default: 1) For berkeley-db only. Auto remove logs if enabled. **Note: lmdb and berkeley-db have changes to the tables and are not compatible with official git head version. At the moment, you need a full resync to use this optimized version. [PERFORMANCE COMPARISON] **Some figures are approximations only. Using a baseline machine of an i7-2600K+SSD+(with full pow computation): 1. The optimized lmdb/blockhain core can process blocks up to 585K for ~1.25 hours + download time, so it usually takes 2.5 hours to sync the full chain. 2. The current head with memory can process blocks up to 585K for ~4.2 hours + download time, so it usually takes 5.5 hours to sync the full chain. 3. The current head with lmdb can process blocks up to 585K for ~32 hours + download time and usually takes 36 hours to sync the full chain. Averate procesing times (with full pow computation): lmdb-optimized: 1. tx_ave = 2.5 ms / tx 2. block_ave = 5.87 ms / block memory-official-repo: 1. tx_ave = 8.85 ms / tx 2. block_ave = 19.68 ms / block lmdb-official-repo (0f4a036437fd41a5498ee5e74e2422ea6177aa3e) 1. tx_ave = 47.8 ms / tx 2. block_ave = 64.2 ms / block **Note: The following data denotes processing times only (does not include p2p download time) lmdb-optimized processing times (with full pow computation): 1. Desktop, Quad-core / 8-threads 2600k (8Mb) - 1.25 hours processing time (--db-sync-mode=fastest:async:1000). 2. Laptop, Dual-core / 4-threads U4200 (3Mb) - 4.90 hours processing time (--db-sync-mode=fastest:async:1000). 3. Embedded, Quad-core / 4-threads Z3735F (2x1Mb) - 12.0 hours processing time (--db-sync-mode=fastest:async:1000). lmdb-optimized processing times (with per-block-checkpoint) 1. Desktop, Quad-core / 8-threads 2600k (8Mb) - 10 minutes processing time (--db-sync-mode=fastest:async:1000). berkeley-db optimized processing times (with full pow computation) 1. Desktop, Quad-core / 8-threads 2600k (8Mb) - 1.8 hours processing time (--db-sync-mode=fastest:async:1000). 2. RPI2. Improved from estimated 3 months(???) into 2.5 days (*Need 2AMP supply + Clock:1Ghz + [usb+ssd] to achieve this speed) (--db-sync-mode=fastest:async:1000). berkeley-db optimized processing times (with per-block-checkpoint) 1. RPI2. 12-15 hours (*Need 2AMP supply + Clock:1Ghz + [usb+ssd] to achieve this speed) (--db-sync-mode=fastest:async:1000).
* daemon: fix an exit crashmoneromooo-monero2015-06-142-1/+12
|
* fix ^D exit for bitmonerodmoneromooo-monero2015-06-033-4/+4
| | | | | | It uses the async console handler differently than simplewallet, and wasn't running the same exit code, causing it to never actually exit after breaking out of the console entry loop.
* cleaning up, removing redundant files, renaming, fixing incorrect licensesRiccardo Spagni2015-05-3115-105/+105
|
* Merge pull request #294Riccardo Spagni2015-05-303-532/+1
|\ | | | | | | | | | | | | | | | | | | | | 693a8bf rpc_command_executor: fix mining in testnet mode (moneromooo-monero) d09be11 core_rpc_server: add a getter for the testnet flag (moneromooo-monero) 754f863 core_rpc_server: log some error messages to the console (moneromooo-monero) 4f0e8cf daemon: remove obsolete daemon_commands_handler.h (moneromooo-monero) bac366e core_rpc_server: reenable print_pl (moneromooo-monero) 39a9508 net_peerlist: fix grayt/white naming mismatch (moneromooo-monero) 8069b3b blockchain_db: add a few const (moneromooo-monero) 0932476 wallet: add consts where appropriate (moneromooo-monero)
| * rpc_command_executor: fix mining in testnet modemoneromooo-monero2015-05-281-2/+1
| |
| * daemon: remove obsolete daemon_commands_handler.hmoneromooo-monero2015-05-282-530/+0
| |
* | daemon: Set log file default to use data dirwarptangent2015-05-281-1/+16
|/ | | | | | | The log file previously used the default data dir even if --data-dir was set to something else. Document data dir and log file path.
* print limits when running limit commands with no argumentsmoneromooo-monero2015-05-173-3/+41
| | | | | It's more user friendly that an error message saying the command does not exist.
* Add mempool output to daemon via command and RPCwarptangent2015-04-231-13/+50
| | | | | | | This is for the "print_pool" command and "get_transaction_pool" RPC method. Add mempool's spent key images to the results.
* [fix] log level change. compilation: dns, testsrfree2monero2015-04-102-2/+3
| | | | | old unbound #warning does not block compilation unit tests build fine. Even though the RPC/P2P network type is required again
* Fixes start_mining in cli interactive modeThomas Winget2015-04-101-2/+16
|
* Merge BlockchainDB into upstreamThomas Winget2015-04-073-0/+21
|\
| * Steps toward multiple dbs available -- workingThomas Winget2015-03-252-0/+20
| | | | | | | | | | | | | | | | | | | | | | There will need to be some more refactoring for these changes to be considered complete/correct, but for now it's working. new daemon cli argument "--db-type", works for LMDB and BerkeleyDB. A good deal of refactoring is also present in this commit, namely Blockchain no longer instantiates BlockchainDB, but rather is passed a pointer to an already-instantiated BlockchainDB on init().
| * Merge upstream updates into blockchain branchThomas Winget2015-03-2518-292/+2286
| |\
| * | Moved BlockchainDB into its own src/ subfolderThomas Winget2015-03-061-0/+1
| | | | | | | | | | | | | | | | | | | | | Ostensibly janitorial work, but should be more relevant later down the line. Things that depend on core cryptonote things (i.e. cryptonote_core) don't necessarily depend on BlockchainDB and thus have no need to have BlockchainDB baked in with them.
* | | Network 1.7; Quieted the debug a bit.rfree2monero2015-04-021-1/+5
| | | | | | | | | | | | Really really finall version of this changes I hope.
* | | remerged; commands JSON. logging upgrade. doxygenrfree2monero2015-04-019-180/+273
| | |
* | | Merge remote-tracking branch 'monero-official/master' into network-1.6-work1rfree2monero2015-04-0118-329/+2646
|\ \ \
| * | | Restore daemon interactive modeThomas Winget2015-03-2710-83/+430
| | |/ | |/| | | | | | | | | | | | | | | | Daemon interactive mode is now working again. RPC mapped calls in daemon and wallet have both had connection_context removed as an argument as that argument was not being used anywhere.
| * | sending commands to forked daemon works on testnet nowThomas Winget2015-03-011-0/+4
| | |
| * | Fix tests building -- function signatures changedThomas Winget2015-03-012-0/+3
| | |
| * | RPC calls for background daemon added inThomas Winget2015-02-243-50/+39
| | | | | | | | | | | | | | | | | | | | | The RPC calls the daemon executable uses to talk to the running daemon instance have mostly been added back in. Rate limiting has not been added in upstream, but is on its way in a separate effort, so those calls are still NOPed out.
| * | Daemonize changes pulled in -- daemon buildsThomas Winget2015-02-2418-292/+2290
| |/ | | | | | | | | | | | | many RPC functions added by the daemonize changes (and related changes on the upstream dev branch that were not merged) were commented out (apart from return). Other than that, this *should* work...at any rate, it builds, and that's something.
* | fix locking in count-peers thread (2)rfree2monero2015-02-241-1/+1
| |
* | 2014 network limit 1.3 fix log/path/data +utilsrfree2monero2015-02-241-2/+4
| | | | | | | | | | | | | | | | | | | | | | +toc -doc -drmonero Fixed the windows path, and improved logging and data (for graph) logging, fixed some locks and added more checks. Still there is a locking error, not added by my patches, but present in master version (locking of map/list of peers).
* | 2014 network limit 1.2 +utils +toc -doc -drmonerorfree2monero2015-02-202-19/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | new update of the pr with network limits more debug options: discarding downloaded blocks all or after given height. trying to trigger the locking errors. debug levels polished/tuned to sane values. debug/logging improved. warning: this pr should be correct code, but it could make an existing (in master version) locking error appear more often. it's a race on the list (map) of peers, e.g. between closing/deleting them versus working on them in net-limit sleep in sending chunk. the bug is not in this code/this pr, but in the master version. the locking problem of master will be fixed in other pr. problem is ub, and in practice is seems to usually cause program abort (tested on debian stable with updated gcc). see --help for option to add sleep to trigger the error faster.
* | 2014 network limit 1.1 +utils +toc -doc -drmonerorfree2monero2015-02-202-17/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update of the PR with network limits works very well for all speeds (but remember that low download speed can stop upload because we then slow down downloading of blockchain requests too) more debug options fixed pedantic warnings in our code should work again on Mac OS X and FreeBSD fixed warning about size_t tested on Debian, Ubuntu, Windows(testing now) TCP options and ToS (QoS) flag FIXED peer number limit FIXED some spikes in ingress/download FIXED problems when other up and down limit
* | 2014 network limit 1.0a +utils +toc -doc -drmonerorfree2monero2015-02-202-17/+133
|/ | | | | | | | | | commands and options for network limiting works very well e.g. for 50 KiB/sec up and down ToS (QoS) flag peer number limit TODO some spikes in ingress/download TODO problems when other up and down limit added "otshell utils" - simple logging (with colors, text files channels)
* year updated in licenseRiccardo Spagni2015-01-023-3/+3
|
* cmake: fix up link linesBen Boeckel2014-10-241-0/+1
|
* cmake: support 2.8.7Ben Boeckel2014-10-241-1/+1
| | | | | | Older versions of CMake support LINK_{PUBLIC,PRIVATE} while newer versions prefer PUBLIC and PRIVATE instead, but still support the LINK_ prefix.
* cmake: handle private vs. public headersBen Boeckel2014-10-231-2/+7
|
* cmake: refactor common code with executablesBen Boeckel2014-10-231-18/+1
|
* cmake: put each library into its own directoryBen Boeckel2014-10-231-0/+89
| | | | | This cleans up the CMake code and shows patterns more easily (to be refactored in the next commit).
* Fixed segfault with checkpoints loadingThomas Winget2014-09-301-2/+0
| | | | | | Bounds checking on blockchain_storage' m_blocks.size() when validating against checkpoints. Also moved initial json & DNS checkpoints load to after blockchain init.
* DNS checkpoint updating added, and daemon flag to enforce themThomas Winget2014-09-301-2/+8
| | | | | | | | | | | | The daemon should now check for updated checkpoints from checkpoints.moneropulse.org as well as from the configured json file every ~1hr (and on launch). The daemon now has a flag to enable enforcing these checkpoints (rather than just printing a warning when they fail). TODO: an easily configurable list of DNS servers to check for checkpoints as opposed to the hard-coded "checkpoints.moneropulse.org"