lighthouse/beacon_node
Mac L a73d698e30 Add TLS capability to the beacon node HTTP API (#2668)
Currently, the beacon node has no ability to serve the HTTP API over TLS.
Adding this functionality would be helpful for certain use cases, such as when you need a validator client to connect to a backup beacon node which is outside your local network, and the use of an SSH tunnel or reverse proxy would be inappropriate.

## Proposed Changes

- Add three new CLI flags to the beacon node
  - `--http-enable-tls`: enables TLS
  - `--http-tls-cert`: to specify the path to the certificate file
  - `--http-tls-key`: to specify the path to the key file
- Update the HTTP API to optionally use `warp`'s [`TlsServer`](https://docs.rs/warp/0.3.1/warp/struct.TlsServer.html) depending on the presence of the `--http-enable-tls` flag
- Update tests and docs
- Use a custom branch for `warp` to ensure proper error handling

## Additional Info

Serving the API over TLS should currently be considered experimental. The reason for this is that it uses code from an [unmerged PR](https://github.com/seanmonstar/warp/pull/717). This commit provides the `try_bind_with_graceful_shutdown` method to `warp`, which is helpful for controlling error flow when the TLS configuration is invalid (cert/key files don't exist, incorrect permissions, etc). 
I've implemented the same code in my [branch here](https://github.com/macladson/warp/tree/tls).

Once the code has been reviewed and merged upstream into `warp`, we can remove the dependency on my branch and the feature can be considered more stable.

Currently, the private key file must not be password-protected in order to be read into Lighthouse.
2021-10-12 03:35:49 +00:00
..
beacon_chain Add test_logger as feature to logging (#2586) 2021-10-06 00:46:07 +00:00
client Fix cargo audit warns for nix, psutil, time (#2699) 2021-10-11 00:10:35 +00:00
eth1 Remove unused deps (#2592) 2021-09-30 04:31:42 +00:00
eth2_libp2p Refactor Peerdb and PeerManager (#2660) 2021-10-11 02:45:06 +00:00
genesis Remove unused deps (#2592) 2021-09-30 04:31:42 +00:00
http_api Add TLS capability to the beacon node HTTP API (#2668) 2021-10-12 03:35:49 +00:00
http_metrics Add TLS capability to the beacon node HTTP API (#2668) 2021-10-12 03:35:49 +00:00
network Refactor Peerdb and PeerManager (#2660) 2021-10-11 02:45:06 +00:00
operation_pool Remove unused deps (#2592) 2021-09-30 04:31:42 +00:00
src Add TLS capability to the beacon node HTTP API (#2668) 2021-10-12 03:35:49 +00:00
store Fix I/O atomicity issues with checkpoint sync (#2671) 2021-10-05 03:53:17 +00:00
tests Altair consensus changes and refactors (#2279) 2021-07-09 06:15:32 +00:00
timer Remove unused deps (#2592) 2021-09-30 04:31:42 +00:00
websocket_server Server sent events (#1920) 2020-12-04 00:18:58 +00:00
Cargo.toml Add TLS capability to the beacon node HTTP API (#2668) 2021-10-12 03:35:49 +00:00