-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignore invalid key files in keystore directory. #4700
Ignore invalid key files in keystore directory. #4700
Conversation
407ec27
to
3d097c5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI wants go fmt ./...
.
1 thing, then LGTM
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
defer os.RemoveAll(tdir)
keystore/keystore_test.go
Outdated
@@ -146,6 +147,7 @@ func TestKeystoreBasics(t *testing.T) { | |||
|
|||
func TestInvalidKeyFiles(t *testing.T) { | |||
tdir, err := ioutil.TempDir("", "keystore-test") | |||
defer os.RemoveAll(tdir) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be after the error check.
326f1c3
to
fbe955d
Compare
@magik6k by the way the formatting error was in a file I haven't touched at all. Also running |
Oh, for some reason un-fmt'ed code got merged to master, pushed a fix in #4701 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couple of small things, otherwise, LGTM.
keystore/keystore.go
Outdated
return nil, err | ||
} | ||
|
||
var list []string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably best to preallocate list := make([]string, 0, len(dirs))
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd leave out the capacity param since we don't know if all the dirs are gonna make it to the list.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Over allocating slightly is better than under allocating, in general (especially when we only over allocate in an error case). Probably not that much of an issue here as this function isn't frequently called but I know it'll continue to bug me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done 👍
keystore/keystore.go
Outdated
} | ||
} | ||
|
||
return list, err |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Returning the error here is a bit confusing. It should always be nil (the go idiom is to just return list, nil
).
keystore/keystore.go
Outdated
|
||
for _, name := range dirs { | ||
err := validateName(name) | ||
if err == nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should probably log the error. You'll need to import the logger and construct it at the top of the file:
import (
// ...
logging "gx/ipfs/QmRb5jh8z2E8hMGN2tkvs1yHynUanqnZ3UeKwgN1i9P1F8/go-log"
)
var log = logging.Logger("keystore")
// ...
LGTM. Thanks! Mind rebasing to make the tests pass? |
…ectory. * Has calls the validateName function before checking if we have the file * List filters the returned list of file names by validateName. License: MIT Signed-off-by: matrushka <barisgumustas@gmail.com>
License: MIT Signed-off-by: matrushka <barisgumustas@gmail.com>
…ments. License: MIT Signed-off-by: matrushka <barisgumustas@gmail.com>
License: MIT Signed-off-by: matrushka <barisgumustas@gmail.com>
d1d1586
to
e338cdf
Compare
Modified keystore to ignore invalid key files inside the keystore directory to address #4681