aboutsummaryrefslogtreecommitdiffstats
path: root/signer/core/cliui.go
blob: cc237612eb48d24fcc88310318066367f056d821 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// Copyright 2018 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.

package core

import (
    "bufio"
    "fmt"
    "os"
    "strings"

    "sync"

    "github.com/davecgh/go-spew/spew"
    "github.com/ethereum/go-ethereum/common/hexutil"
    "github.com/ethereum/go-ethereum/internal/ethapi"
    "github.com/ethereum/go-ethereum/log"
    "golang.org/x/crypto/ssh/terminal"
)

type CommandlineUI struct {
    in *bufio.Reader
    mu sync.Mutex
}

func NewCommandlineUI() *CommandlineUI {
    return &CommandlineUI{in: bufio.NewReader(os.Stdin)}
}

// readString reads a single line from stdin, trimming if from spaces, enforcing
// non-emptyness.
func (ui *CommandlineUI) readString() string {
    for {
        fmt.Printf("> ")
        text, err := ui.in.ReadString('\n')
        if err != nil {
            log.Crit("Failed to read user input", "err", err)
        }
        if text = strings.TrimSpace(text); text != "" {
            return text
        }
    }
}

// readPassword reads a single line from stdin, trimming it from the trailing new
// line and returns it. The input will not be echoed.
func (ui *CommandlineUI) readPassword() string {
    fmt.Printf("Enter password to approve:\n")
    fmt.Printf("> ")

    text, err := terminal.ReadPassword(int(os.Stdin.Fd()))
    if err != nil {
        log.Crit("Failed to read password", "err", err)
    }
    fmt.Println()
    fmt.Println("-----------------------")
    return string(text)
}

// readPassword reads a single line from stdin, trimming it from the trailing new
// line and returns it. The input will not be echoed.
func (ui *CommandlineUI) readPasswordText(inputstring string) string {
    fmt.Printf("Enter %s:\n", inputstring)
    fmt.Printf("> ")
    text, err := terminal.ReadPassword(int(os.Stdin.Fd()))
    if err != nil {
        log.Crit("Failed to read password", "err", err)
    }
    fmt.Println("-----------------------")
    return string(text)
}

// confirm returns true if user enters 'Yes', otherwise false
func (ui *CommandlineUI) confirm() bool {
    fmt.Printf("Approve? [y/N]:\n")
    if ui.readString() == "y" {
        return true
    }
    fmt.Println("-----------------------")
    return false
}

func showMetadata(metadata Metadata) {
    fmt.Printf("Request context:\n\t%v -> %v -> %v\n", metadata.Remote, metadata.Scheme, metadata.Local)
    fmt.Printf("\nAdditional HTTP header data, provided by the external caller:\n")
    fmt.Printf("\tUser-Agent: %v\n\tOrigin: %v\n", metadata.UserAgent, metadata.Origin)
}

// ApproveTx prompt the user for confirmation to request to sign Transaction
func (ui *CommandlineUI) ApproveTx(request *SignTxRequest) (SignTxResponse, error) {
    ui.mu.Lock()
    defer ui.mu.Unlock()
    weival := request.Transaction.Value.ToInt()
    fmt.Printf("--------- Transaction request-------------\n")
    if to := request.Transaction.To; to != nil {
        fmt.Printf("to:    %v\n", to.Original())
        if !to.ValidChecksum() {
            fmt.Printf("\nWARNING: Invalid checksum on to-address!\n\n")
        }
    } else {
        fmt.Printf("to:    <contact creation>\n")
    }
    fmt.Printf("from:     %v\n", request.Transaction.From.String())
    fmt.Printf("value:    %v wei\n", weival)
    fmt.Printf("gas:      %v (%v)\n", request.Transaction.Gas, uint64(request.Transaction.Gas))
    fmt.Printf("gasprice: %v wei\n", request.Transaction.GasPrice.ToInt())
    fmt.Printf("nonce:    %v (%v)\n", request.Transaction.Nonce, uint64(request.Transaction.Nonce))
    if request.Transaction.Data != nil {
        d := *request.Transaction.Data
        if len(d) > 0 {

            fmt.Printf("data:     %v\n", hexutil.Encode(d))
        }
    }
    if request.Callinfo != nil {
        fmt.Printf("\nTransaction validation:\n")
        for _, m := range request.Callinfo {
            fmt.Printf("  * %s : %s\n", m.Typ, m.Message)
        }
        fmt.Println()

    }
    fmt.Printf("\n")
    showMetadata(request.Meta)
    fmt.Printf("-------------------------------------------\n")
    if !ui.confirm() {
        return SignTxResponse{request.Transaction, false, ""}, nil
    }
    return SignTxResponse{request.Transaction, true, ui.readPassword()}, nil
}

// ApproveSignData prompt the user for confirmation to request to sign data
func (ui *CommandlineUI) ApproveSignData(request *SignDataRequest) (SignDataResponse, error) {
    ui.mu.Lock()
    defer ui.mu.Unlock()

    fmt.Printf("-------- Sign data request--------------\n")
    fmt.Printf("Account:  %s\n", request.Address.String())
    fmt.Printf("message:  \n%q\n", request.Message)
    fmt.Printf("raw data: \n%v\n", request.Rawdata)
    fmt.Printf("message hash:  %v\n", request.Hash)
    fmt.Printf("-------------------------------------------\n")
    showMetadata(request.Meta)
    if !ui.confirm() {
        return SignDataResponse{false, ""}, nil
    }
    return SignDataResponse{true, ui.readPassword()}, nil
}

// ApproveExport prompt the user for confirmation to export encrypted Account json
func (ui *CommandlineUI) ApproveExport(request *ExportRequest) (ExportResponse, error) {
    ui.mu.Lock()
    defer ui.mu.Unlock()

    fmt.Printf("-------- Export Account request--------------\n")
    fmt.Printf("A request has been made to export the (encrypted) keyfile\n")
    fmt.Printf("Approving this operation means that the caller obtains the (encrypted) contents\n")
    fmt.Printf("\n")
    fmt.Printf("Account:  %x\n", request.Address)
    //fmt.Printf("keyfile:  \n%v\n", request.file)
    fmt.Printf("-------------------------------------------\n")
    showMetadata(request.Meta)
    return ExportResponse{ui.confirm()}, nil
}

// ApproveImport prompt the user for confirmation to import Account json
func (ui *CommandlineUI) ApproveImport(request *ImportRequest) (ImportResponse, error) {
    ui.mu.Lock()
    defer ui.mu.Unlock()

    fmt.Printf("-------- Import Account request--------------\n")
    fmt.Printf("A request has been made to import an encrypted keyfile\n")
    fmt.Printf("-------------------------------------------\n")
    showMetadata(request.Meta)
    if !ui.confirm() {
        return ImportResponse{false, "", ""}, nil
    }
    return ImportResponse{true, ui.readPasswordText("Old password"), ui.readPasswordText("New password")}, nil
}

// ApproveListing prompt the user for confirmation to list accounts
// the list of accounts to list can be modified by the UI
func (ui *CommandlineUI) ApproveListing(request *ListRequest) (ListResponse, error) {

    ui.mu.Lock()
    defer ui.mu.Unlock()

    fmt.Printf("-------- List Account request--------------\n")
    fmt.Printf("A request has been made to list all accounts. \n")
    fmt.Printf("You can select which accounts the caller can see\n")
    for _, account := range request.Accounts {
        fmt.Printf("  [x] %v\n", account.Address.Hex())
        fmt.Printf("    URL: %v\n", account.URL)
        fmt.Printf("    Type: %v\n", account.Typ)
    }
    fmt.Printf("-------------------------------------------\n")
    showMetadata(request.Meta)
    if !ui.confirm() {
        return ListResponse{nil}, nil
    }
    return ListResponse{request.Accounts}, nil
}

// ApproveNewAccount prompt the user for confirmation to create new Account, and reveal to caller
func (ui *CommandlineUI) ApproveNewAccount(request *NewAccountRequest) (NewAccountResponse, error) {

    ui.mu.Lock()
    defer ui.mu.Unlock()

    fmt.Printf("-------- New Account request--------------\n\n")
    fmt.Printf("A request has been made to create a new account. \n")
    fmt.Printf("Approving this operation means that a new account is created,\n")
    fmt.Printf("and the address is returned to the external caller\n\n")
    showMetadata(request.Meta)
    if !ui.confirm() {
        return NewAccountResponse{false, ""}, nil
    }
    return NewAccountResponse{true, ui.readPassword()}, nil
}

// ShowError displays error message to user
func (ui *CommandlineUI) ShowError(message string) {
    fmt.Printf("-------- Error message from Clef-----------\n")
    fmt.Println(message)
    fmt.Printf("-------------------------------------------\n")
}

// ShowInfo displays info message to user
func (ui *CommandlineUI) ShowInfo(message string) {
    fmt.Printf("Info: %v\n", message)
}

func (ui *CommandlineUI) OnApprovedTx(tx ethapi.SignTransactionResult) {
    fmt.Printf("Transaction signed:\n ")
    spew.Dump(tx.Tx)
}

func (ui *CommandlineUI) OnSignerStartup(info StartupInfo) {

    fmt.Printf("------- Signer info -------\n")
    for k, v := range info.Info {
        fmt.Printf("* %v : %v\n", k, v)
    }
}