forked from immutability-io/vault-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
path_config.go
266 lines (240 loc) · 7.38 KB
/
path_config.go
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
258
259
260
261
262
263
264
265
266
// Copyright © 2018 Immutability, LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"fmt"
"github.com/hashicorp/errwrap"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/helper/cidrutil"
"github.com/hashicorp/vault/sdk/logical"
)
const (
// EthereumMainnet Chain ID
EthereumMainnet string = "1"
// Morden Chain ID
Morden string = "2"
// Ropsten Chain ID
Ropsten string = "3"
// Rinkeby Chain ID
Rinkeby string = "4"
// RootstockMainnet Chain ID
RootstockMainnet string = "30"
// RootstockTestnet Chain ID
RootstockTestnet string = "31"
// Kovan Chain ID
Kovan string = "42"
// EthereumClassicMainnet Chain ID
EthereumClassicMainnet string = "61"
// EthereumClassicTestnet Chain ID
EthereumClassicTestnet string = "62"
// GethPrivateChains Chain ID
GethPrivateChains string = "1337"
)
const (
// InfuraMainnet is the default for EthereumMainnet
InfuraMainnet string = "https://mainnet.infura.io"
// InfuraRopsten is the default for Ropsten
InfuraRopsten string = "https://ropsten.infura.io"
// InfuraKovan is the default for Kovan
InfuraKovan string = "https://kovan.infura.io"
// InfuraRinkeby is the default for Rinkeby
InfuraRinkeby string = "https://rinkeby.infura.io"
// Local is the default for localhost
Local string = "http://localhost:8545"
)
// Config contains the configuration for each mount
type Config struct {
BoundCIDRList []string `json:"bound_cidr_list_list" structs:"bound_cidr_list" mapstructure:"bound_cidr_list"`
RPC string `json:"rpc_url"`
CoinMarketCapAPIKey string `json:"api_key"`
ChainID string `json:"chain_id"`
}
func configPaths(b *EthereumBackend) []*framework.Path {
return []*framework.Path{
&framework.Path{
Pattern: "config",
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.CreateOperation: b.pathWriteConfig,
logical.UpdateOperation: b.pathWriteConfig,
logical.ReadOperation: b.pathReadConfig,
},
HelpSynopsis: "Configure the trustee plugin.",
HelpDescription: `
Configure the trustee plugin.
`,
Fields: map[string]*framework.FieldSchema{
"chain_id": &framework.FieldSchema{
Type: framework.TypeString,
Description: `Ethereum network - can be one of the following values:
1 - Ethereum mainnet
2 - Morden (disused), Expanse mainnet
3 - Ropsten
4 - Rinkeby
30 - Rootstock mainnet
31 - Rootstock testnet
42 - Kovan
61 - Ethereum Classic mainnet
62 - Ethereum Classic testnet
1337 - Geth private chains (default)`,
Default: Rinkeby,
},
"rpc_url": &framework.FieldSchema{
Type: framework.TypeString,
Description: `The RPC address of the Ethereuem network.`,
},
"api_key": &framework.FieldSchema{
Type: framework.TypeString,
Description: `The Coinmarketcap API Key.`,
},
"bound_cidr_list": &framework.FieldSchema{
Type: framework.TypeCommaStringSlice,
Description: `Comma separated string or list of CIDR blocks. If set, specifies the blocks of
IP addresses which can perform the login operation.`,
},
},
},
}
}
func (config *Config) getRPCURL() string {
return config.RPC
}
func isInfuraNetwork(url string) bool {
switch url {
case InfuraMainnet:
return true
case InfuraRopsten:
return true
case InfuraRinkeby:
return true
case InfuraKovan:
return true
}
return false
}
func getDefaultNetwork(chainID string) string {
switch chainID {
case EthereumMainnet:
return InfuraMainnet
case Ropsten:
return InfuraRopsten
case Rinkeby:
return InfuraRinkeby
case Kovan:
return InfuraKovan
}
return Local
}
func (b *EthereumBackend) pathWriteConfig(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
rpcURL := data.Get("rpc_url").(string)
apiKey := data.Get("api_key").(string)
chainID := data.Get("chain_id").(string)
if rpcURL == "" {
rpcURL = getDefaultNetwork(chainID)
}
var boundCIDRList []string
if boundCIDRListRaw, ok := data.GetOk("bound_cidr_list"); ok {
boundCIDRList = boundCIDRListRaw.([]string)
}
configBundle := Config{
BoundCIDRList: boundCIDRList,
RPC: rpcURL,
ChainID: chainID,
CoinMarketCapAPIKey: apiKey,
}
entry, err := logical.StorageEntryJSON("config", configBundle)
if err != nil {
return nil, err
}
if err := req.Storage.Put(ctx, entry); err != nil {
return nil, err
}
// Return the secret
return &logical.Response{
Data: map[string]interface{}{
"bound_cidr_list": configBundle.BoundCIDRList,
"chain_id": configBundle.ChainID,
"api_key": configBundle.CoinMarketCapAPIKey,
"rpc_url": configBundle.RPC,
},
}, nil
}
func (b *EthereumBackend) pathReadConfig(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
configBundle, err := b.readConfig(ctx, req.Storage)
if err != nil {
return nil, err
}
if configBundle == nil {
return nil, nil
}
// Return the secret
return &logical.Response{
Data: map[string]interface{}{
"bound_cidr_list": configBundle.BoundCIDRList,
"chain_id": configBundle.ChainID,
"api_key": configBundle.CoinMarketCapAPIKey,
"rpc_url": configBundle.RPC,
},
}, nil
}
// Config returns the configuration for this EthereumBackend.
func (b *EthereumBackend) readConfig(ctx context.Context, s logical.Storage) (*Config, error) {
entry, err := s.Get(ctx, "config")
if err != nil {
return nil, err
}
if entry == nil {
return nil, fmt.Errorf("the ethereum backend is not configured properly")
}
var result Config
if entry != nil {
if err := entry.DecodeJSON(&result); err != nil {
return nil, fmt.Errorf("error reading configuration: %s", err)
}
}
return &result, nil
}
func (b *EthereumBackend) configured(ctx context.Context, req *logical.Request) (*Config, error) {
config, err := b.readConfig(ctx, req.Storage)
if err != nil {
return nil, err
}
if validConnection, err := b.validIPConstraints(config, req); !validConnection {
return nil, err
}
return config, nil
}
func (b *EthereumBackend) validIPConstraints(config *Config, req *logical.Request) (bool, error) {
if len(config.BoundCIDRList) != 0 {
if req.Connection == nil || req.Connection.RemoteAddr == "" {
return false, fmt.Errorf("failed to get connection information")
}
belongs, err := cidrutil.IPBelongsToCIDRBlocksSlice(req.Connection.RemoteAddr, config.BoundCIDRList)
if err != nil {
return false, errwrap.Wrapf("failed to verify the CIDR restrictions set on the role: {{err}}", err)
}
if !belongs {
return false, fmt.Errorf("source address %q unauthorized through CIDR restrictions on the role", req.Connection.RemoteAddr)
}
}
return true, nil
}
func contains(stringSlice []string, searchString string) bool {
for _, value := range stringSlice {
if value == searchString {
return true
}
}
return false
}