github.com/bloxroute-labs/bor@v0.1.4/accounts/usbwallet/ledger.go (about) 1 // Copyright 2017 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 // This file contains the implementation for interacting with the Ledger hardware 18 // wallets. The wire protocol spec can be found in the Ledger Blue GitHub repo: 19 // https://raw.githubusercontent.com/LedgerHQ/blue-app-eth/master/doc/ethapp.asc 20 21 package usbwallet 22 23 import ( 24 "encoding/binary" 25 "encoding/hex" 26 "errors" 27 "fmt" 28 "io" 29 "math/big" 30 31 "github.com/maticnetwork/bor/accounts" 32 "github.com/maticnetwork/bor/common" 33 "github.com/maticnetwork/bor/common/hexutil" 34 "github.com/maticnetwork/bor/core/types" 35 "github.com/maticnetwork/bor/log" 36 "github.com/maticnetwork/bor/rlp" 37 ) 38 39 // ledgerOpcode is an enumeration encoding the supported Ledger opcodes. 40 type ledgerOpcode byte 41 42 // ledgerParam1 is an enumeration encoding the supported Ledger parameters for 43 // specific opcodes. The same parameter values may be reused between opcodes. 44 type ledgerParam1 byte 45 46 // ledgerParam2 is an enumeration encoding the supported Ledger parameters for 47 // specific opcodes. The same parameter values may be reused between opcodes. 48 type ledgerParam2 byte 49 50 const ( 51 ledgerOpRetrieveAddress ledgerOpcode = 0x02 // Returns the public key and Ethereum address for a given BIP 32 path 52 ledgerOpSignTransaction ledgerOpcode = 0x04 // Signs an Ethereum transaction after having the user validate the parameters 53 ledgerOpGetConfiguration ledgerOpcode = 0x06 // Returns specific wallet application configuration 54 55 ledgerP1DirectlyFetchAddress ledgerParam1 = 0x00 // Return address directly from the wallet 56 ledgerP1InitTransactionData ledgerParam1 = 0x00 // First transaction data block for signing 57 ledgerP1ContTransactionData ledgerParam1 = 0x80 // Subsequent transaction data block for signing 58 ledgerP2DiscardAddressChainCode ledgerParam2 = 0x00 // Do not return the chain code along with the address 59 ) 60 61 // errLedgerReplyInvalidHeader is the error message returned by a Ledger data exchange 62 // if the device replies with a mismatching header. This usually means the device 63 // is in browser mode. 64 var errLedgerReplyInvalidHeader = errors.New("ledger: invalid reply header") 65 66 // errLedgerInvalidVersionReply is the error message returned by a Ledger version retrieval 67 // when a response does arrive, but it does not contain the expected data. 68 var errLedgerInvalidVersionReply = errors.New("ledger: invalid version reply") 69 70 // ledgerDriver implements the communication with a Ledger hardware wallet. 71 type ledgerDriver struct { 72 device io.ReadWriter // USB device connection to communicate through 73 version [3]byte // Current version of the Ledger firmware (zero if app is offline) 74 browser bool // Flag whether the Ledger is in browser mode (reply channel mismatch) 75 failure error // Any failure that would make the device unusable 76 log log.Logger // Contextual logger to tag the ledger with its id 77 } 78 79 // newLedgerDriver creates a new instance of a Ledger USB protocol driver. 80 func newLedgerDriver(logger log.Logger) driver { 81 return &ledgerDriver{ 82 log: logger, 83 } 84 } 85 86 // Status implements usbwallet.driver, returning various states the Ledger can 87 // currently be in. 88 func (w *ledgerDriver) Status() (string, error) { 89 if w.failure != nil { 90 return fmt.Sprintf("Failed: %v", w.failure), w.failure 91 } 92 if w.browser { 93 return "Ethereum app in browser mode", w.failure 94 } 95 if w.offline() { 96 return "Ethereum app offline", w.failure 97 } 98 return fmt.Sprintf("Ethereum app v%d.%d.%d online", w.version[0], w.version[1], w.version[2]), w.failure 99 } 100 101 // offline returns whether the wallet and the Ethereum app is offline or not. 102 // 103 // The method assumes that the state lock is held! 104 func (w *ledgerDriver) offline() bool { 105 return w.version == [3]byte{0, 0, 0} 106 } 107 108 // Open implements usbwallet.driver, attempting to initialize the connection to the 109 // Ledger hardware wallet. The Ledger does not require a user passphrase, so that 110 // parameter is silently discarded. 111 func (w *ledgerDriver) Open(device io.ReadWriter, passphrase string) error { 112 w.device, w.failure = device, nil 113 114 _, err := w.ledgerDerive(accounts.DefaultBaseDerivationPath) 115 if err != nil { 116 // Ethereum app is not running or in browser mode, nothing more to do, return 117 if err == errLedgerReplyInvalidHeader { 118 w.browser = true 119 } 120 return nil 121 } 122 // Try to resolve the Ethereum app's version, will fail prior to v1.0.2 123 if w.version, err = w.ledgerVersion(); err != nil { 124 w.version = [3]byte{1, 0, 0} // Assume worst case, can't verify if v1.0.0 or v1.0.1 125 } 126 return nil 127 } 128 129 // Close implements usbwallet.driver, cleaning up and metadata maintained within 130 // the Ledger driver. 131 func (w *ledgerDriver) Close() error { 132 w.browser, w.version = false, [3]byte{} 133 return nil 134 } 135 136 // Heartbeat implements usbwallet.driver, performing a sanity check against the 137 // Ledger to see if it's still online. 138 func (w *ledgerDriver) Heartbeat() error { 139 if _, err := w.ledgerVersion(); err != nil && err != errLedgerInvalidVersionReply { 140 w.failure = err 141 return err 142 } 143 return nil 144 } 145 146 // Derive implements usbwallet.driver, sending a derivation request to the Ledger 147 // and returning the Ethereum address located on that derivation path. 148 func (w *ledgerDriver) Derive(path accounts.DerivationPath) (common.Address, error) { 149 return w.ledgerDerive(path) 150 } 151 152 // SignTx implements usbwallet.driver, sending the transaction to the Ledger and 153 // waiting for the user to confirm or deny the transaction. 154 // 155 // Note, if the version of the Ethereum application running on the Ledger wallet is 156 // too old to sign EIP-155 transactions, but such is requested nonetheless, an error 157 // will be returned opposed to silently signing in Homestead mode. 158 func (w *ledgerDriver) SignTx(path accounts.DerivationPath, tx *types.Transaction, chainID *big.Int) (common.Address, *types.Transaction, error) { 159 // If the Ethereum app doesn't run, abort 160 if w.offline() { 161 return common.Address{}, nil, accounts.ErrWalletClosed 162 } 163 // Ensure the wallet is capable of signing the given transaction 164 if chainID != nil && w.version[0] <= 1 && w.version[1] <= 0 && w.version[2] <= 2 { 165 return common.Address{}, nil, fmt.Errorf("Ledger v%d.%d.%d doesn't support signing this transaction, please update to v1.0.3 at least", w.version[0], w.version[1], w.version[2]) 166 } 167 // All infos gathered and metadata checks out, request signing 168 return w.ledgerSign(path, tx, chainID) 169 } 170 171 // ledgerVersion retrieves the current version of the Ethereum wallet app running 172 // on the Ledger wallet. 173 // 174 // The version retrieval protocol is defined as follows: 175 // 176 // CLA | INS | P1 | P2 | Lc | Le 177 // ----+-----+----+----+----+--- 178 // E0 | 06 | 00 | 00 | 00 | 04 179 // 180 // With no input data, and the output data being: 181 // 182 // Description | Length 183 // ---------------------------------------------------+-------- 184 // Flags 01: arbitrary data signature enabled by user | 1 byte 185 // Application major version | 1 byte 186 // Application minor version | 1 byte 187 // Application patch version | 1 byte 188 func (w *ledgerDriver) ledgerVersion() ([3]byte, error) { 189 // Send the request and wait for the response 190 reply, err := w.ledgerExchange(ledgerOpGetConfiguration, 0, 0, nil) 191 if err != nil { 192 return [3]byte{}, err 193 } 194 if len(reply) != 4 { 195 return [3]byte{}, errLedgerInvalidVersionReply 196 } 197 // Cache the version for future reference 198 var version [3]byte 199 copy(version[:], reply[1:]) 200 return version, nil 201 } 202 203 // ledgerDerive retrieves the currently active Ethereum address from a Ledger 204 // wallet at the specified derivation path. 205 // 206 // The address derivation protocol is defined as follows: 207 // 208 // CLA | INS | P1 | P2 | Lc | Le 209 // ----+-----+----+----+-----+--- 210 // E0 | 02 | 00 return address 211 // 01 display address and confirm before returning 212 // | 00: do not return the chain code 213 // | 01: return the chain code 214 // | var | 00 215 // 216 // Where the input data is: 217 // 218 // Description | Length 219 // -------------------------------------------------+-------- 220 // Number of BIP 32 derivations to perform (max 10) | 1 byte 221 // First derivation index (big endian) | 4 bytes 222 // ... | 4 bytes 223 // Last derivation index (big endian) | 4 bytes 224 // 225 // And the output data is: 226 // 227 // Description | Length 228 // ------------------------+------------------- 229 // Public Key length | 1 byte 230 // Uncompressed Public Key | arbitrary 231 // Ethereum address length | 1 byte 232 // Ethereum address | 40 bytes hex ascii 233 // Chain code if requested | 32 bytes 234 func (w *ledgerDriver) ledgerDerive(derivationPath []uint32) (common.Address, error) { 235 // Flatten the derivation path into the Ledger request 236 path := make([]byte, 1+4*len(derivationPath)) 237 path[0] = byte(len(derivationPath)) 238 for i, component := range derivationPath { 239 binary.BigEndian.PutUint32(path[1+4*i:], component) 240 } 241 // Send the request and wait for the response 242 reply, err := w.ledgerExchange(ledgerOpRetrieveAddress, ledgerP1DirectlyFetchAddress, ledgerP2DiscardAddressChainCode, path) 243 if err != nil { 244 return common.Address{}, err 245 } 246 // Discard the public key, we don't need that for now 247 if len(reply) < 1 || len(reply) < 1+int(reply[0]) { 248 return common.Address{}, errors.New("reply lacks public key entry") 249 } 250 reply = reply[1+int(reply[0]):] 251 252 // Extract the Ethereum hex address string 253 if len(reply) < 1 || len(reply) < 1+int(reply[0]) { 254 return common.Address{}, errors.New("reply lacks address entry") 255 } 256 hexstr := reply[1 : 1+int(reply[0])] 257 258 // Decode the hex sting into an Ethereum address and return 259 var address common.Address 260 if _, err = hex.Decode(address[:], hexstr); err != nil { 261 return common.Address{}, err 262 } 263 return address, nil 264 } 265 266 // ledgerSign sends the transaction to the Ledger wallet, and waits for the user 267 // to confirm or deny the transaction. 268 // 269 // The transaction signing protocol is defined as follows: 270 // 271 // CLA | INS | P1 | P2 | Lc | Le 272 // ----+-----+----+----+-----+--- 273 // E0 | 04 | 00: first transaction data block 274 // 80: subsequent transaction data block 275 // | 00 | variable | variable 276 // 277 // Where the input for the first transaction block (first 255 bytes) is: 278 // 279 // Description | Length 280 // -------------------------------------------------+---------- 281 // Number of BIP 32 derivations to perform (max 10) | 1 byte 282 // First derivation index (big endian) | 4 bytes 283 // ... | 4 bytes 284 // Last derivation index (big endian) | 4 bytes 285 // RLP transaction chunk | arbitrary 286 // 287 // And the input for subsequent transaction blocks (first 255 bytes) are: 288 // 289 // Description | Length 290 // ----------------------+---------- 291 // RLP transaction chunk | arbitrary 292 // 293 // And the output data is: 294 // 295 // Description | Length 296 // ------------+--------- 297 // signature V | 1 byte 298 // signature R | 32 bytes 299 // signature S | 32 bytes 300 func (w *ledgerDriver) ledgerSign(derivationPath []uint32, tx *types.Transaction, chainID *big.Int) (common.Address, *types.Transaction, error) { 301 // Flatten the derivation path into the Ledger request 302 path := make([]byte, 1+4*len(derivationPath)) 303 path[0] = byte(len(derivationPath)) 304 for i, component := range derivationPath { 305 binary.BigEndian.PutUint32(path[1+4*i:], component) 306 } 307 // Create the transaction RLP based on whether legacy or EIP155 signing was requested 308 var ( 309 txrlp []byte 310 err error 311 ) 312 if chainID == nil { 313 if txrlp, err = rlp.EncodeToBytes([]interface{}{tx.Nonce(), tx.GasPrice(), tx.Gas(), tx.To(), tx.Value(), tx.Data()}); err != nil { 314 return common.Address{}, nil, err 315 } 316 } else { 317 if txrlp, err = rlp.EncodeToBytes([]interface{}{tx.Nonce(), tx.GasPrice(), tx.Gas(), tx.To(), tx.Value(), tx.Data(), chainID, big.NewInt(0), big.NewInt(0)}); err != nil { 318 return common.Address{}, nil, err 319 } 320 } 321 payload := append(path, txrlp...) 322 323 // Send the request and wait for the response 324 var ( 325 op = ledgerP1InitTransactionData 326 reply []byte 327 ) 328 for len(payload) > 0 { 329 // Calculate the size of the next data chunk 330 chunk := 255 331 if chunk > len(payload) { 332 chunk = len(payload) 333 } 334 // Send the chunk over, ensuring it's processed correctly 335 reply, err = w.ledgerExchange(ledgerOpSignTransaction, op, 0, payload[:chunk]) 336 if err != nil { 337 return common.Address{}, nil, err 338 } 339 // Shift the payload and ensure subsequent chunks are marked as such 340 payload = payload[chunk:] 341 op = ledgerP1ContTransactionData 342 } 343 // Extract the Ethereum signature and do a sanity validation 344 if len(reply) != 65 { 345 return common.Address{}, nil, errors.New("reply lacks signature") 346 } 347 signature := append(reply[1:], reply[0]) 348 349 // Create the correct signer and signature transform based on the chain ID 350 var signer types.Signer 351 if chainID == nil { 352 signer = new(types.HomesteadSigner) 353 } else { 354 signer = types.NewEIP155Signer(chainID) 355 signature[64] -= byte(chainID.Uint64()*2 + 35) 356 } 357 signed, err := tx.WithSignature(signer, signature) 358 if err != nil { 359 return common.Address{}, nil, err 360 } 361 sender, err := types.Sender(signer, signed) 362 if err != nil { 363 return common.Address{}, nil, err 364 } 365 return sender, signed, nil 366 } 367 368 // ledgerExchange performs a data exchange with the Ledger wallet, sending it a 369 // message and retrieving the response. 370 // 371 // The common transport header is defined as follows: 372 // 373 // Description | Length 374 // --------------------------------------+---------- 375 // Communication channel ID (big endian) | 2 bytes 376 // Command tag | 1 byte 377 // Packet sequence index (big endian) | 2 bytes 378 // Payload | arbitrary 379 // 380 // The Communication channel ID allows commands multiplexing over the same 381 // physical link. It is not used for the time being, and should be set to 0101 382 // to avoid compatibility issues with implementations ignoring a leading 00 byte. 383 // 384 // The Command tag describes the message content. Use TAG_APDU (0x05) for standard 385 // APDU payloads, or TAG_PING (0x02) for a simple link test. 386 // 387 // The Packet sequence index describes the current sequence for fragmented payloads. 388 // The first fragment index is 0x00. 389 // 390 // APDU Command payloads are encoded as follows: 391 // 392 // Description | Length 393 // ----------------------------------- 394 // APDU length (big endian) | 2 bytes 395 // APDU CLA | 1 byte 396 // APDU INS | 1 byte 397 // APDU P1 | 1 byte 398 // APDU P2 | 1 byte 399 // APDU length | 1 byte 400 // Optional APDU data | arbitrary 401 func (w *ledgerDriver) ledgerExchange(opcode ledgerOpcode, p1 ledgerParam1, p2 ledgerParam2, data []byte) ([]byte, error) { 402 // Construct the message payload, possibly split into multiple chunks 403 apdu := make([]byte, 2, 7+len(data)) 404 405 binary.BigEndian.PutUint16(apdu, uint16(5+len(data))) 406 apdu = append(apdu, []byte{0xe0, byte(opcode), byte(p1), byte(p2), byte(len(data))}...) 407 apdu = append(apdu, data...) 408 409 // Stream all the chunks to the device 410 header := []byte{0x01, 0x01, 0x05, 0x00, 0x00} // Channel ID and command tag appended 411 chunk := make([]byte, 64) 412 space := len(chunk) - len(header) 413 414 for i := 0; len(apdu) > 0; i++ { 415 // Construct the new message to stream 416 chunk = append(chunk[:0], header...) 417 binary.BigEndian.PutUint16(chunk[3:], uint16(i)) 418 419 if len(apdu) > space { 420 chunk = append(chunk, apdu[:space]...) 421 apdu = apdu[space:] 422 } else { 423 chunk = append(chunk, apdu...) 424 apdu = nil 425 } 426 // Send over to the device 427 w.log.Trace("Data chunk sent to the Ledger", "chunk", hexutil.Bytes(chunk)) 428 if _, err := w.device.Write(chunk); err != nil { 429 return nil, err 430 } 431 } 432 // Stream the reply back from the wallet in 64 byte chunks 433 var reply []byte 434 chunk = chunk[:64] // Yeah, we surely have enough space 435 for { 436 // Read the next chunk from the Ledger wallet 437 if _, err := io.ReadFull(w.device, chunk); err != nil { 438 return nil, err 439 } 440 w.log.Trace("Data chunk received from the Ledger", "chunk", hexutil.Bytes(chunk)) 441 442 // Make sure the transport header matches 443 if chunk[0] != 0x01 || chunk[1] != 0x01 || chunk[2] != 0x05 { 444 return nil, errLedgerReplyInvalidHeader 445 } 446 // If it's the first chunk, retrieve the total message length 447 var payload []byte 448 449 if chunk[3] == 0x00 && chunk[4] == 0x00 { 450 reply = make([]byte, 0, int(binary.BigEndian.Uint16(chunk[5:7]))) 451 payload = chunk[7:] 452 } else { 453 payload = chunk[5:] 454 } 455 // Append to the reply and stop when filled up 456 if left := cap(reply) - len(reply); left > len(payload) { 457 reply = append(reply, payload...) 458 } else { 459 reply = append(reply, payload[:left]...) 460 break 461 } 462 } 463 return reply[:len(reply)-2], nil 464 }