Lightning Network Daemon
Go to file
yyforyongyu b09afd4dd2
discovery: signal allow for ignored channel announcements
This commit makes the `handleChanAnnouncement` always returning `true`
for messages processed but ignored by router, even when the extracted
announcements are empty.
Previously we'd return false when the announcements are empty, which
could cause `ChannelUpdate`s being ignored since the validation barrier
will signal deny for the jobs. This can easily be trigger using
following setup,
1. Alice connects to Bob and open a channel.
2. Alice connects to Carol, Bob connects to Carol.
3. Once the channel is open, Alice and Bob will both announce it to Carol.

At some point, we'd have the following messages in Carol's node,
- Alice's ChannelAnnouncement
- Alice's ChannelUpdates, for both directions
- Bob's ChannelAnnouncement
- Bob's ChannelUpdates, for both directions

And a bug could happen, if,
- Alice's ChannelAnnouncement is processed by router, hence added to db,
  but not reporting back to gossiper yet, so the validation barrier
  hasn't sent signal allow.
- Bob's ChannelAnnouncement is processed by router, and returned
  `ErrIgnored` as the edge info is already in db, and reported back to
  gossiper, the validation barrier will signal deny to all the
  ChannelUpdates jobs.
- Depending on how fast Alice's ChannelAnnouncement is processed, we may
  get zero to four denies to the above ChannelUpdates, causing a channel
  edge policy never being updated.
2022-12-02 11:36:26 +01:00
.github build: update all Dockerfiles to build w/ Go 1.18.2 2022-06-10 11:32:39 -07:00
aezeed aezeed: make seed generation fully deterministic 2022-05-12 12:49:14 +02:00
aliasmgr aliasmgr: cache peer alias in memory 2022-10-10 19:05:40 -07:00
amp amp: create amp.ShardTracker 2021-04-27 09:47:23 +02:00
autopilot Merge pull request #6504 from tvolk131/fatalf_to_require 2022-06-17 19:52:07 +02:00
batch kvdb: move channeldb/kvdb to top level 2021-05-07 14:18:56 +02:00
blockcache multi: migrate assert.NoError to require.NoError 2022-08-12 16:57:31 -07:00
brontide multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
buffer lnwire: remove unused MaxMessagePayload const 2021-08-10 05:36:07 +08:00
build release: bump version to v0.15.5-beta 2022-11-29 20:20:57 -08:00
cert multi: use btcd's btcec/v2 and btcutil modules 2022-03-09 19:02:37 +01:00
chainntnfs multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
chainreg chainreg: update tapoort node awareness to account for bitcoind 19+ 2022-08-12 17:12:20 -07:00
chanacceptor chanacceptor+lnrpc: update the commitmentTypes, send zero-conf to client 2022-08-12 17:11:19 -07:00
chanbackup chanbackup: handle Single creation for zero-conf channels 2022-08-12 16:58:16 -07:00
chanfitness fix typos [skip ci] 2022-04-11 18:26:54 +05:30
channeldb channeldb: skip dry run mode for optional migrations 2022-08-12 17:05:24 -07:00
channelnotifier multi: add logs when subservers are starting 2022-02-11 21:17:03 +08:00
clock multi: migrate assert.NoError to require.NoError 2022-08-12 16:57:31 -07:00
cluster multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
cmd cmd/lncli: add p2tr address type to account import 2022-10-10 19:07:52 -07:00
contractcourt contractcourt: the breach arb now uses P2TR outputs for sweep addrs 2022-08-12 17:10:53 -07:00
contrib docs: remove PIDFile from example systemd service 2022-01-11 14:08:18 +01:00
discovery discovery: signal allow for ignored channel announcements 2022-12-02 11:36:26 +01:00
docker build: bump btcd, btcwallet and neutrino to latest versions 2022-06-08 11:40:50 -07:00
docs docs: add release notes for 17f68ce8 2022-11-22 17:35:25 +01:00
feature feature+lncfg: add config option to turn of anysegwit 2022-08-12 17:10:21 -07:00
funding funding: decrease checking interval to be 10ms in itest 2022-11-14 14:05:17 -08:00
fuzz multi: use btcd's btcec/v2 and btcutil modules 2022-03-09 19:02:37 +01:00
healthcheck mod+healthcheck: remove local replace directive 2022-03-22 14:06:05 +01:00
htlcswitch multi: thread through the new max fee field for co-op close 2022-08-12 17:08:47 -07:00
input signer: fix comment about p2tr in ComputeInputScript 2022-08-12 16:44:38 -07:00
invoices multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
keychain mod+keychain+lntest: bump btcd to version with tweak fix 2022-11-14 14:05:55 -08:00
kvdb etcd: set embedded etcd default max msg size and up txn limit 2022-02-28 12:03:05 +01:00
labels multi: add labels to lnd native transactions 2020-07-29 13:46:07 +02:00
lncfg feature+lncfg: add config option to turn of anysegwit 2022-08-12 17:10:21 -07:00
lnpeer multi: use btcd's btcec/v2 and btcutil modules 2022-03-09 19:02:37 +01:00
lnrpc lnrpc: add wallet output type for Taproot 2022-11-22 17:29:56 +01:00
lntest build: update to latest version of btcutil+btcwallet 2022-11-22 17:15:46 +01:00
lntypes lntypes: add ZeroHash 2019-06-05 12:41:41 +02:00
lnwallet lnwallet: skip dual funding test as not exposed on p2p layer 2022-11-22 17:15:48 +01:00
lnwire invoicesrpc: refactor addinvocie hop hint selection 2022-10-10 19:05:39 -07:00
macaroons multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
make build: update all Dockerfiles to build w/ Go 1.18.2 2022-06-10 11:32:39 -07:00
mobile mobile/README: explain new API objects for sub-servers in LND v0.15+ 2022-05-11 13:18:50 -04:00
monitoring Merge pull request #6224 from Roasbeef/prometheus-latency-histograms 2022-02-16 16:38:51 -08:00
multimutex multimutex: add hash mutex 2020-04-08 08:54:05 +02:00
nat multi: Fix typos [skip ci] 2022-01-24 12:19:02 +02:00
netann server+netann+peer: put peer's alias in Update, proper config for link 2022-08-12 16:58:16 -07:00
peer discovery+peer: add logs to reveal shutdown flow 2022-12-02 11:36:26 +01:00
peernotifier multi: add shutdown logs in subservers 2021-09-15 19:52:03 +08:00
pool multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
queue multi: Fix typos [skip ci] 2022-01-24 12:19:02 +02:00
record routing+channeldb: send payment metadata from invoice 2022-04-13 22:55:40 +02:00
routing routing: add timeout when waiting for dependants 2022-12-02 11:36:26 +01:00
rpcperms rpcperms: re-init mw lookup map after removal of one 2022-08-12 17:02:47 -07:00
scripts keys: update key for bhandras 2022-06-09 09:28:46 +02:00
shachain multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
signal multi: Update Licenses to 2022 [skip ci] 2022-02-09 00:25:20 +02:00
subscribe multi: add interface for subscribe client so it can be mocked 2020-09-08 13:47:13 +02:00
sweep sweep: change outputs are now P2TR 2022-08-12 17:10:53 -07:00
ticker Upgrade to go 1.16 for the left over packages 2021-10-19 03:55:13 +00:00
tlv multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
tools build: update all Dockerfiles to build w/ Go 1.18.2 2022-06-10 11:32:39 -07:00
tor multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
walletunlocker walletunlocker+keychain+config_builder: use new aezeed version 2022-05-12 12:49:14 +02:00
watchtower watchtower: uses P2TR for sweep, delivery, and reward addresses 2022-08-12 17:10:53 -07:00
zpay32 multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
.gitignore .gitignore: add release build directory to ignore list 2022-08-12 16:41:47 -07:00
.golangci.yml Merge pull request #5652 from ErikEk/neutrino-sub-server 2022-05-03 16:01:24 -07:00
.travis.yml build: update all Dockerfiles to build w/ Go 1.18.2 2022-06-10 11:32:39 -07:00
channel_notifier.go multi: use btcd's btcec/v2 and btcutil modules 2022-03-09 19:02:37 +01:00
chanrestore.go channeldb: BigSize migration, store zero-conf, scid-alias bits 2022-08-12 16:58:16 -07:00
config_builder.go config_builder: use correct birthday when creating watch-only wallet 2022-11-22 17:19:26 +01:00
config.go config: allow independent rpccookie config 2022-08-12 17:07:08 -07:00
dev.Dockerfile build: update all Dockerfiles to build w/ Go 1.18.2 2022-06-10 11:32:39 -07:00
doc.go lnd: rename package main->lnd 2019-04-23 20:57:33 +02:00
Dockerfile build: update all Dockerfiles to build w/ Go 1.18.2 2022-06-10 11:32:39 -07:00
go.mod build: update to latest version of btcutil+btcwallet 2022-11-22 17:15:46 +01:00
go.sum build: update to latest version of btcutil+btcwallet 2022-11-22 17:15:46 +01:00
intercepted_forward.go contractcourt: add onchain interception 2022-04-13 11:31:33 +02:00
LICENSE multi: Update Licenses to 2022 [skip ci] 2022-02-09 00:25:20 +02:00
lnd.go multi: add zeroconfacceptor that default rejects if no rpc acceptors 2022-08-12 17:11:19 -07:00
log.go multi: add sub-server dep 2022-04-30 08:55:49 +02:00
logo.png README: add logo to top portion of page 2017-09-29 14:06:31 -07:00
Makefile Makefile: Mobile builds: expose main sub-servers + set SUBSERVER_PREFIX flag by default 2022-05-11 13:18:17 -04:00
pilot.go multi: use btcd's btcec/v2 and btcutil modules 2022-03-09 19:02:37 +01:00
README.md trivial: link from readme to builder's guide 2021-09-10 05:42:26 +08:00
rpcserver_test.go Rpcserver: Add GetAllPermissions function for retrieving permissions for external macaroon baking 2021-10-01 16:51:16 -05:00
rpcserver.go rpcserver+docs: add default case to addr type switch 2022-08-22 18:03:42 -05:00
sample-lnd.conf feature+lncfg: add config option to turn of anysegwit 2022-08-12 17:10:21 -07:00
server_test.go multi: move many t.Fatalf calls to require.NoError 2022-06-17 04:26:55 +00:00
server.go server.go: add peerChan to peerConnectedListeners in NotifyWhenOnline 2022-10-10 18:57:55 -07:00
subrpcserver_config.go rpcserver+invoicesrpc: alias-aware AddInvoice,AddHoldInvoice rpc 2022-08-12 16:58:16 -07:00
witness_beacon_test.go contractcourt: add onchain interception 2022-04-13 11:31:33 +02:00
witness_beacon.go contractcourt: add onchain interception 2022-04-13 11:31:33 +02:00

Lightning Network Daemon

Build Status MIT licensed Irc Godoc

The Lightning Network Daemon (lnd) - is a complete implementation of a Lightning Network node. lnd has several pluggable back-end chain services including btcd (a full-node), bitcoind, and neutrino (a new experimental light client). The project's codebase uses the btcsuite set of Bitcoin libraries, and also exports a large set of isolated re-usable Lightning Network related libraries within it. In the current state lnd is capable of:

  • Creating channels.
  • Closing channels.
  • Completely managing all channel states (including the exceptional ones!).
  • Maintaining a fully authenticated+validated channel graph.
  • Performing path finding within the network, passively forwarding incoming payments.
  • Sending outgoing onion-encrypted payments through the network.
  • Updating advertised fee schedules.
  • Automatic channel management (autopilot).

Lightning Network Specification Compliance

lnd fully conforms to the Lightning Network specification (BOLTs). BOLT stands for: Basis of Lightning Technology. The specifications are currently being drafted by several groups of implementers based around the world including the developers of lnd. The set of specification documents as well as our implementation of the specification are still a work-in-progress. With that said, the current status of lnd's BOLT compliance is:

  • BOLT 1: Base Protocol
  • BOLT 2: Peer Protocol for Channel Management
  • BOLT 3: Bitcoin Transaction and Script Formats
  • BOLT 4: Onion Routing Protocol
  • BOLT 5: Recommendations for On-chain Transaction Handling
  • BOLT 7: P2P Node and Channel Discovery
  • BOLT 8: Encrypted and Authenticated Transport
  • BOLT 9: Assigned Feature Flags
  • BOLT 10: DNS Bootstrap and Assisted Node Location
  • BOLT 11: Invoice Protocol for Lightning Payments

Developer Resources

The daemon has been designed to be as developer friendly as possible in order to facilitate application development on top of lnd. Two primary RPC interfaces are exported: an HTTP REST API, and a gRPC service. The exported API's are not yet stable, so be warned: they may change drastically in the near future.

An automatically generated set of documentation for the RPC APIs can be found at api.lightning.community. A set of developer resources including guides, articles, example applications and community resources can be found at: docs.lightning.engineering.

Finally, we also have an active Slack where protocol developers, application developers, testers and users gather to discuss various aspects of lnd and also Lightning in general.

Installation

In order to build from source, please see the installation instructions.

Docker

To run lnd from Docker, please see the main Docker instructions

IRC

  • irc.libera.chat
  • channel #lnd
  • webchat

Safety

When operating a mainnet lnd node, please refer to our operational safety guidelines. It is important to note that lnd is still beta software and that ignoring these operational guidelines can lead to loss of funds.

Security

The developers of lnd take security very seriously. The disclosure of security vulnerabilities helps us secure the health of lnd, privacy of our users, and also the health of the Lightning Network as a whole. If you find any issues regarding security or privacy, please disclose the information responsibly by sending an email to security at lightning dot engineering, preferably encrypted using our designated PGP key (91FE464CD75101DA6B6BAB60555C6465E5BCB3AF) which can be found here.

Further reading