| 
									
										
										
										
											2017-04-14 10:29:00 +02:00
										 |  |  | // Copyright 2017 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // This file is part of the go-ethereum library. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-23 18:35:11 +02:00
										 |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // it under the terms of the GNU Lesser General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // GNU Lesser General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Lesser General Public License | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | package keystore | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | 	"io/ioutil" | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 	"math/rand" | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 	"sort" | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2020-04-22 11:52:29 +02:00
										 |  |  | 	"sync" | 
					
						
							|  |  |  | 	"sync/atomic" | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2015-03-08 00:18:13 +01:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/accounts" | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2020-04-22 11:52:29 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/crypto" | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/event" | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-20 17:42:14 +02:00
										 |  |  | var testSigData = make([]byte, 32) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | func TestKeyStore(t *testing.T) { | 
					
						
							|  |  |  | 	dir, ks := tmpKeyStore(t, true) | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	a, err := ks.NewAccount("foo") | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-08 15:53:02 +02:00
										 |  |  | 	if !strings.HasPrefix(a.URL.Path, dir) { | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 		t.Errorf("account file %s doesn't have dir prefix", a.URL) | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-08 15:53:02 +02:00
										 |  |  | 	stat, err := os.Stat(a.URL.Path) | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 		t.Fatalf("account file %s doesn't exist (%v)", a.URL, err) | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if runtime.GOOS != "windows" && stat.Mode() != 0600 { | 
					
						
							|  |  |  | 		t.Fatalf("account file has wrong mode: got %o, want %o", stat.Mode(), 0600) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if !ks.HasAddress(a.Address) { | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 		t.Errorf("HasAccount(%x) should've returned true", a.Address) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if err := ks.Update(a, "foo", "bar"); err != nil { | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 		t.Errorf("Update error: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if err := ks.Delete(a, "bar"); err != nil { | 
					
						
							| 
									
										
										
										
											2017-01-17 13:25:36 +02:00
										 |  |  | 		t.Errorf("Delete error: %v", err) | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-02-08 15:53:02 +02:00
										 |  |  | 	if common.FileExist(a.URL.Path) { | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 		t.Errorf("account file %s should be gone after Delete", a.URL) | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if ks.HasAddress(a.Address) { | 
					
						
							| 
									
										
										
										
											2017-01-17 13:25:36 +02:00
										 |  |  | 		t.Errorf("HasAccount(%x) should've returned true after Delete", a.Address) | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | func TestSign(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	dir, ks := tmpKeyStore(t, true) | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 	pass := "" // not used but required by API | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	a1, err := ks.NewAccount(pass) | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if err := ks.Unlock(a1, ""); err != nil { | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if _, err := ks.SignHash(accounts.Account{Address: a1.Address}, testSigData); err != nil { | 
					
						
							| 
									
										
										
										
											2016-03-03 01:15:42 +01:00
										 |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-12 19:32:04 +02:00
										 |  |  | func TestSignWithPassphrase(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	dir, ks := tmpKeyStore(t, true) | 
					
						
							| 
									
										
										
										
											2016-05-12 19:32:04 +02:00
										 |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pass := "passwd" | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	acc, err := ks.NewAccount(pass) | 
					
						
							| 
									
										
										
										
											2016-05-12 19:32:04 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if _, unlocked := ks.unlocked[acc.Address]; unlocked { | 
					
						
							| 
									
										
										
										
											2016-05-12 19:32:04 +02:00
										 |  |  | 		t.Fatal("expected account to be locked") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	_, err = ks.SignHashWithPassphrase(acc, pass, testSigData) | 
					
						
							| 
									
										
										
										
											2016-05-12 19:32:04 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if _, unlocked := ks.unlocked[acc.Address]; unlocked { | 
					
						
							| 
									
										
										
										
											2016-05-12 19:32:04 +02:00
										 |  |  | 		t.Fatal("expected account to be locked") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if _, err = ks.SignHashWithPassphrase(acc, "invalid passwd", testSigData); err == nil { | 
					
						
							|  |  |  | 		t.Fatal("expected SignHashWithPassphrase to fail with invalid password") | 
					
						
							| 
									
										
										
										
											2016-05-12 19:32:04 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | func TestTimedUnlock(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	dir, ks := tmpKeyStore(t, true) | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 	pass := "foo" | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	a1, err := ks.NewAccount(pass) | 
					
						
							| 
									
										
										
										
											2017-01-09 11:16:06 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Signing without passphrase fails because account is locked | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	_, err = ks.SignHash(accounts.Account{Address: a1.Address}, testSigData) | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 	if err != ErrLocked { | 
					
						
							|  |  |  | 		t.Fatal("Signing should've failed with ErrLocked before unlocking, got ", err) | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Signing with passphrase works | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if err = ks.TimedUnlock(a1, pass, 100*time.Millisecond); err != nil { | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Signing without passphrase works because account is temp unlocked | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	_, err = ks.SignHash(accounts.Account{Address: a1.Address}, testSigData) | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | 		t.Fatal("Signing shouldn't return an error after unlocking, got ", err) | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | 	// Signing fails again after automatic locking | 
					
						
							| 
									
										
										
										
											2016-04-05 01:08:50 +02:00
										 |  |  | 	time.Sleep(250 * time.Millisecond) | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	_, err = ks.SignHash(accounts.Account{Address: a1.Address}, testSigData) | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 	if err != ErrLocked { | 
					
						
							|  |  |  | 		t.Fatal("Signing should've failed with ErrLocked timeout expired, got ", err) | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-18 15:12:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestOverrideUnlock(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	dir, ks := tmpKeyStore(t, false) | 
					
						
							| 
									
										
										
										
											2015-06-18 15:12:39 +01:00
										 |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pass := "foo" | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	a1, err := ks.NewAccount(pass) | 
					
						
							| 
									
										
										
										
											2017-01-09 11:16:06 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-18 15:12:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-07 17:00:34 +02:00
										 |  |  | 	// Unlock indefinitely. | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if err = ks.TimedUnlock(a1, pass, 5*time.Minute); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-18 15:12:39 +01:00
										 |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Signing without passphrase works because account is temp unlocked | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	_, err = ks.SignHash(accounts.Account{Address: a1.Address}, testSigData) | 
					
						
							| 
									
										
										
										
											2015-06-18 15:12:39 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Signing shouldn't return an error after unlocking, got ", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// reset unlock to a shorter period, invalidates the previous unlock | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if err = ks.TimedUnlock(a1, pass, 100*time.Millisecond); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-18 15:12:39 +01:00
										 |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Signing without passphrase still works because account is temp unlocked | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	_, err = ks.SignHash(accounts.Account{Address: a1.Address}, testSigData) | 
					
						
							| 
									
										
										
										
											2015-06-18 15:12:39 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("Signing shouldn't return an error after unlocking, got ", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Signing fails again after automatic locking | 
					
						
							| 
									
										
										
										
											2016-04-05 01:08:50 +02:00
										 |  |  | 	time.Sleep(250 * time.Millisecond) | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	_, err = ks.SignHash(accounts.Account{Address: a1.Address}, testSigData) | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 	if err != ErrLocked { | 
					
						
							|  |  |  | 		t.Fatal("Signing should've failed with ErrLocked timeout expired, got ", err) | 
					
						
							| 
									
										
										
										
											2015-06-18 15:12:39 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-02-25 17:29:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-20 17:42:14 +02:00
										 |  |  | // This test should fail under -race if signing races the expiration goroutine. | 
					
						
							|  |  |  | func TestSignRace(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	dir, ks := tmpKeyStore(t, false) | 
					
						
							| 
									
										
										
										
											2015-07-20 17:42:14 +02:00
										 |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Create a test account. | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	a1, err := ks.NewAccount("") | 
					
						
							| 
									
										
										
										
											2015-07-20 17:42:14 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal("could not create the test account", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | 	if err := ks.TimedUnlock(a1, "", 15*time.Millisecond); err != nil { | 
					
						
							| 
									
										
										
										
											2016-03-03 00:46:56 +01:00
										 |  |  | 		t.Fatal("could not unlock the test account", err) | 
					
						
							| 
									
										
										
										
											2015-07-20 17:42:14 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-07-29 18:12:55 +02:00
										 |  |  | 	end := time.Now().Add(500 * time.Millisecond) | 
					
						
							| 
									
										
										
										
											2015-07-20 17:42:14 +02:00
										 |  |  | 	for time.Now().Before(end) { | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 		if _, err := ks.SignHash(accounts.Account{Address: a1.Address}, testSigData); err == ErrLocked { | 
					
						
							| 
									
										
										
										
											2015-07-20 17:42:14 +02:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} else if err != nil { | 
					
						
							|  |  |  | 			t.Errorf("Sign error: %v", err) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-07-29 18:12:55 +02:00
										 |  |  | 		time.Sleep(1 * time.Millisecond) | 
					
						
							| 
									
										
										
										
											2015-07-20 17:42:14 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	t.Errorf("Account did not lock within the timeout") | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-07-02 22:58:00 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | // Tests that the wallet notifier loop starts and stops correctly based on the | 
					
						
							|  |  |  | // addition and removal of wallet event subscriptions. | 
					
						
							|  |  |  | func TestWalletNotifierLifecycle(t *testing.T) { | 
					
						
							|  |  |  | 	// Create a temporary kesytore to test with | 
					
						
							|  |  |  | 	dir, ks := tmpKeyStore(t, false) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Ensure that the notification updater is not running yet | 
					
						
							|  |  |  | 	time.Sleep(250 * time.Millisecond) | 
					
						
							|  |  |  | 	ks.mu.RLock() | 
					
						
							|  |  |  | 	updating := ks.updating | 
					
						
							|  |  |  | 	ks.mu.RUnlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if updating { | 
					
						
							|  |  |  | 		t.Errorf("wallet notifier running without subscribers") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Subscribe to the wallet feed and ensure the updater boots up | 
					
						
							|  |  |  | 	updates := make(chan accounts.WalletEvent) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	subs := make([]event.Subscription, 2) | 
					
						
							|  |  |  | 	for i := 0; i < len(subs); i++ { | 
					
						
							|  |  |  | 		// Create a new subscription | 
					
						
							|  |  |  | 		subs[i] = ks.Subscribe(updates) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Ensure the notifier comes online | 
					
						
							|  |  |  | 		time.Sleep(250 * time.Millisecond) | 
					
						
							|  |  |  | 		ks.mu.RLock() | 
					
						
							|  |  |  | 		updating = ks.updating | 
					
						
							|  |  |  | 		ks.mu.RUnlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if !updating { | 
					
						
							|  |  |  | 			t.Errorf("sub %d: wallet notifier not running after subscription", i) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Unsubscribe and ensure the updater terminates eventually | 
					
						
							|  |  |  | 	for i := 0; i < len(subs); i++ { | 
					
						
							|  |  |  | 		// Close an existing subscription | 
					
						
							|  |  |  | 		subs[i].Unsubscribe() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Ensure the notifier shuts down at and only at the last close | 
					
						
							|  |  |  | 		for k := 0; k < int(walletRefreshCycle/(250*time.Millisecond))+2; k++ { | 
					
						
							|  |  |  | 			ks.mu.RLock() | 
					
						
							|  |  |  | 			updating = ks.updating | 
					
						
							|  |  |  | 			ks.mu.RUnlock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if i < len(subs)-1 && !updating { | 
					
						
							|  |  |  | 				t.Fatalf("sub %d: event notifier stopped prematurely", i) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if i == len(subs)-1 && !updating { | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			time.Sleep(250 * time.Millisecond) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	t.Errorf("wallet notifier didn't terminate after unsubscribe") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | type walletEvent struct { | 
					
						
							|  |  |  | 	accounts.WalletEvent | 
					
						
							|  |  |  | 	a accounts.Account | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | // Tests that wallet notifications and correctly fired when accounts are added | 
					
						
							|  |  |  | // or deleted from the keystore. | 
					
						
							|  |  |  | func TestWalletNotifications(t *testing.T) { | 
					
						
							|  |  |  | 	dir, ks := tmpKeyStore(t, false) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 	// Subscribe to the wallet feed and collect events. | 
					
						
							|  |  |  | 	var ( | 
					
						
							|  |  |  | 		events  []walletEvent | 
					
						
							|  |  |  | 		updates = make(chan accounts.WalletEvent) | 
					
						
							|  |  |  | 		sub     = ks.Subscribe(updates) | 
					
						
							|  |  |  | 	) | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 	defer sub.Unsubscribe() | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 	go func() { | 
					
						
							|  |  |  | 		for { | 
					
						
							|  |  |  | 			select { | 
					
						
							|  |  |  | 			case ev := <-updates: | 
					
						
							|  |  |  | 				events = append(events, walletEvent{ev, ev.Wallet.Accounts()[0]}) | 
					
						
							|  |  |  | 			case <-sub.Err(): | 
					
						
							|  |  |  | 				close(updates) | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 	// Randomly add and remove accounts. | 
					
						
							|  |  |  | 	var ( | 
					
						
							|  |  |  | 		live       = make(map[common.Address]accounts.Account) | 
					
						
							|  |  |  | 		wantEvents []walletEvent | 
					
						
							|  |  |  | 	) | 
					
						
							| 
									
										
										
										
											2017-02-11 17:02:00 +02:00
										 |  |  | 	for i := 0; i < 1024; i++ { | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 		if create := len(live) == 0 || rand.Int()%4 > 0; create { | 
					
						
							|  |  |  | 			// Add a new account and ensure wallet notifications arrives | 
					
						
							|  |  |  | 			account, err := ks.NewAccount("") | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				t.Fatalf("failed to create test account: %v", err) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			live[account.Address] = account | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 			wantEvents = append(wantEvents, walletEvent{accounts.WalletEvent{Kind: accounts.WalletArrived}, account}) | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 			// Delete a random account. | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 			var account accounts.Account | 
					
						
							|  |  |  | 			for _, a := range live { | 
					
						
							|  |  |  | 				account = a | 
					
						
							|  |  |  | 				break | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if err := ks.Delete(account, ""); err != nil { | 
					
						
							|  |  |  | 				t.Fatalf("failed to delete test account: %v", err) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			delete(live, account.Address) | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 			wantEvents = append(wantEvents, walletEvent{accounts.WalletEvent{Kind: accounts.WalletDropped}, account}) | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Shut down the event collector and check events. | 
					
						
							|  |  |  | 	sub.Unsubscribe() | 
					
						
							|  |  |  | 	<-updates | 
					
						
							|  |  |  | 	checkAccounts(t, live, ks.Wallets()) | 
					
						
							|  |  |  | 	checkEvents(t, wantEvents, events) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-22 11:52:29 +02:00
										 |  |  | // TestImportExport tests the import functionality of a keystore. | 
					
						
							|  |  |  | func TestImportECDSA(t *testing.T) { | 
					
						
							|  |  |  | 	dir, ks := tmpKeyStore(t, true) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 	key, err := crypto.GenerateKey() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("failed to generate key: %v", key) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, err = ks.ImportECDSA(key, "old"); err != nil { | 
					
						
							|  |  |  | 		t.Errorf("importing failed: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, err = ks.ImportECDSA(key, "old"); err == nil { | 
					
						
							|  |  |  | 		t.Errorf("importing same key twice succeeded") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, err = ks.ImportECDSA(key, "new"); err == nil { | 
					
						
							|  |  |  | 		t.Errorf("importing same key twice succeeded") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // TestImportECDSA tests the import and export functionality of a keystore. | 
					
						
							|  |  |  | func TestImportExport(t *testing.T) { | 
					
						
							|  |  |  | 	dir, ks := tmpKeyStore(t, true) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 	acc, err := ks.NewAccount("old") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("failed to create account: %v", acc) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	json, err := ks.Export(acc, "old", "new") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("failed to export account: %v", acc) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dir2, ks2 := tmpKeyStore(t, true) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir2) | 
					
						
							|  |  |  | 	if _, err = ks2.Import(json, "old", "old"); err == nil { | 
					
						
							|  |  |  | 		t.Errorf("importing with invalid password succeeded") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	acc2, err := ks2.Import(json, "new", "new") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Errorf("importing failed: %v", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if acc.Address != acc2.Address { | 
					
						
							|  |  |  | 		t.Error("imported account does not match exported account") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if _, err = ks2.Import(json, "new", "new"); err == nil { | 
					
						
							|  |  |  | 		t.Errorf("importing a key twice succeeded") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // TestImportRace tests the keystore on races. | 
					
						
							|  |  |  | // This test should fail under -race if importing races. | 
					
						
							|  |  |  | func TestImportRace(t *testing.T) { | 
					
						
							|  |  |  | 	dir, ks := tmpKeyStore(t, true) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir) | 
					
						
							|  |  |  | 	acc, err := ks.NewAccount("old") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("failed to create account: %v", acc) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	json, err := ks.Export(acc, "old", "new") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatalf("failed to export account: %v", acc) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dir2, ks2 := tmpKeyStore(t, true) | 
					
						
							|  |  |  | 	defer os.RemoveAll(dir2) | 
					
						
							|  |  |  | 	var atom uint32 | 
					
						
							|  |  |  | 	var wg sync.WaitGroup | 
					
						
							|  |  |  | 	wg.Add(2) | 
					
						
							|  |  |  | 	for i := 0; i < 2; i++ { | 
					
						
							|  |  |  | 		go func() { | 
					
						
							|  |  |  | 			defer wg.Done() | 
					
						
							|  |  |  | 			if _, err := ks2.Import(json, "new", "new"); err != nil { | 
					
						
							|  |  |  | 				atomic.AddUint32(&atom, 1) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		}() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	wg.Wait() | 
					
						
							|  |  |  | 	if atom != 1 { | 
					
						
							|  |  |  | 		t.Errorf("Import is racy") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | // checkAccounts checks that all known live accounts are present in the wallet list. | 
					
						
							|  |  |  | func checkAccounts(t *testing.T, live map[common.Address]accounts.Account, wallets []accounts.Wallet) { | 
					
						
							|  |  |  | 	if len(live) != len(wallets) { | 
					
						
							|  |  |  | 		t.Errorf("wallet list doesn't match required accounts: have %d, want %d", len(wallets), len(live)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	liveList := make([]accounts.Account, 0, len(live)) | 
					
						
							|  |  |  | 	for _, account := range live { | 
					
						
							|  |  |  | 		liveList = append(liveList, account) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	sort.Sort(accountsByURL(liveList)) | 
					
						
							|  |  |  | 	for j, wallet := range wallets { | 
					
						
							|  |  |  | 		if accs := wallet.Accounts(); len(accs) != 1 { | 
					
						
							|  |  |  | 			t.Errorf("wallet %d: contains invalid number of accounts: have %d, want 1", j, len(accs)) | 
					
						
							|  |  |  | 		} else if accs[0] != liveList[j] { | 
					
						
							|  |  |  | 			t.Errorf("wallet %d: account mismatch: have %v, want %v", j, accs[0], liveList[j]) | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | // checkEvents checks that all events in 'want' are present in 'have'. Events may be present multiple times. | 
					
						
							|  |  |  | func checkEvents(t *testing.T, want []walletEvent, have []walletEvent) { | 
					
						
							|  |  |  | 	for _, wantEv := range want { | 
					
						
							|  |  |  | 		nmatch := 0 | 
					
						
							|  |  |  | 		for ; len(have) > 0; nmatch++ { | 
					
						
							|  |  |  | 			if have[0].Kind != wantEv.Kind || have[0].a != wantEv.a { | 
					
						
							|  |  |  | 				break | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-09 12:40:50 +02:00
										 |  |  | 			have = have[1:] | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if nmatch == 0 { | 
					
						
							|  |  |  | 			t.Fatalf("can't find event with Kind=%v for %x", wantEv.Kind, wantEv.a.Address) | 
					
						
							| 
									
										
										
										
											2017-02-07 12:47:34 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 11:49:20 +02:00
										 |  |  | func tmpKeyStore(t *testing.T, encrypted bool) (string, *KeyStore) { | 
					
						
							| 
									
										
										
										
											2015-03-10 00:09:39 +01:00
										 |  |  | 	d, err := ioutil.TempDir("", "eth-keystore-test") | 
					
						
							| 
									
										
										
										
											2015-02-24 18:03:10 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-18 09:46:56 +02:00
										 |  |  | 	newKs := NewPlaintextKeyStore | 
					
						
							| 
									
										
										
										
											2016-03-02 13:57:15 +01:00
										 |  |  | 	if encrypted { | 
					
						
							| 
									
										
										
										
											2019-06-18 09:46:56 +02:00
										 |  |  | 		newKs = func(kd string) *KeyStore { return NewKeyStore(kd, veryLightScryptN, veryLightScryptP) } | 
					
						
							| 
									
										
										
										
											2016-03-02 13:57:15 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-18 09:46:56 +02:00
										 |  |  | 	return d, newKs(d) | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | } |