2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 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
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-04-08 13:43:55 +00:00
|
|
|
package utils
|
2015-04-09 08:26:26 +00:00
|
|
|
|
2015-04-08 13:43:55 +00:00
|
|
|
import (
|
2017-04-12 14:27:23 +00:00
|
|
|
"encoding"
|
common: move big integer math to common/math (#3699)
* common: remove CurrencyToString
Move denomination values to params instead.
* common: delete dead code
* common: move big integer operations to common/math
This commit consolidates all big integer operations into common/math and
adds tests and documentation.
There should be no change in semantics for BigPow, BigMin, BigMax, S256,
U256, Exp and their behaviour is now locked in by tests.
The BigD, BytesToBig and Bytes2Big functions don't provide additional
value, all uses are replaced by new(big.Int).SetBytes().
BigToBytes is now called PaddedBigBytes, its minimum output size
parameter is now specified as the number of bytes instead of bits. The
single use of this function is in the EVM's MSTORE instruction.
Big and String2Big are replaced by ParseBig, which is slightly stricter.
It previously accepted leading zeros for hexadecimal inputs but treated
decimal inputs as octal if a leading zero digit was present.
ParseUint64 is used in places where String2Big was used to decode a
uint64.
The new functions MustParseBig and MustParseUint64 are now used in many
places where parsing errors were previously ignored.
* common: delete unused big integer variables
* accounts/abi: replace uses of BytesToBig with use of encoding/binary
* common: remove BytesToBig
* common: remove Bytes2Big
* common: remove BigTrue
* cmd/utils: add BigFlag and use it for error-checked integer flags
While here, remove environment variable processing for DirectoryFlag
because we don't use it.
* core: add missing error checks in genesis block parser
* common: remove String2Big
* cmd/evm: use utils.BigFlag
* common/math: check for 256 bit overflow in ParseBig
This is supposed to prevent silent overflow/truncation of values in the
genesis block JSON. Without this check, a genesis block that set a
balance larger than 256 bits would lead to weird behaviour in the VM.
* cmd/utils: fixup import
2017-02-26 21:21:51 +00:00
|
|
|
"errors"
|
2015-04-09 08:26:26 +00:00
|
|
|
"flag"
|
common: move big integer math to common/math (#3699)
* common: remove CurrencyToString
Move denomination values to params instead.
* common: delete dead code
* common: move big integer operations to common/math
This commit consolidates all big integer operations into common/math and
adds tests and documentation.
There should be no change in semantics for BigPow, BigMin, BigMax, S256,
U256, Exp and their behaviour is now locked in by tests.
The BigD, BytesToBig and Bytes2Big functions don't provide additional
value, all uses are replaced by new(big.Int).SetBytes().
BigToBytes is now called PaddedBigBytes, its minimum output size
parameter is now specified as the number of bytes instead of bits. The
single use of this function is in the EVM's MSTORE instruction.
Big and String2Big are replaced by ParseBig, which is slightly stricter.
It previously accepted leading zeros for hexadecimal inputs but treated
decimal inputs as octal if a leading zero digit was present.
ParseUint64 is used in places where String2Big was used to decode a
uint64.
The new functions MustParseBig and MustParseUint64 are now used in many
places where parsing errors were previously ignored.
* common: delete unused big integer variables
* accounts/abi: replace uses of BytesToBig with use of encoding/binary
* common: remove BytesToBig
* common: remove Bytes2Big
* common: remove BigTrue
* cmd/utils: add BigFlag and use it for error-checked integer flags
While here, remove environment variable processing for DirectoryFlag
because we don't use it.
* core: add missing error checks in genesis block parser
* common: remove String2Big
* cmd/evm: use utils.BigFlag
* common/math: check for 256 bit overflow in ParseBig
This is supposed to prevent silent overflow/truncation of values in the
genesis block JSON. Without this check, a genesis block that set a
balance larger than 256 bits would lead to weird behaviour in the VM.
* cmd/utils: fixup import
2017-02-26 21:21:51 +00:00
|
|
|
"math/big"
|
2015-04-09 08:26:26 +00:00
|
|
|
"os"
|
|
|
|
"os/user"
|
2015-08-06 14:18:32 +00:00
|
|
|
"path"
|
2015-04-09 08:26:26 +00:00
|
|
|
"strings"
|
common: move big integer math to common/math (#3699)
* common: remove CurrencyToString
Move denomination values to params instead.
* common: delete dead code
* common: move big integer operations to common/math
This commit consolidates all big integer operations into common/math and
adds tests and documentation.
There should be no change in semantics for BigPow, BigMin, BigMax, S256,
U256, Exp and their behaviour is now locked in by tests.
The BigD, BytesToBig and Bytes2Big functions don't provide additional
value, all uses are replaced by new(big.Int).SetBytes().
BigToBytes is now called PaddedBigBytes, its minimum output size
parameter is now specified as the number of bytes instead of bits. The
single use of this function is in the EVM's MSTORE instruction.
Big and String2Big are replaced by ParseBig, which is slightly stricter.
It previously accepted leading zeros for hexadecimal inputs but treated
decimal inputs as octal if a leading zero digit was present.
ParseUint64 is used in places where String2Big was used to decode a
uint64.
The new functions MustParseBig and MustParseUint64 are now used in many
places where parsing errors were previously ignored.
* common: delete unused big integer variables
* accounts/abi: replace uses of BytesToBig with use of encoding/binary
* common: remove BytesToBig
* common: remove Bytes2Big
* common: remove BigTrue
* cmd/utils: add BigFlag and use it for error-checked integer flags
While here, remove environment variable processing for DirectoryFlag
because we don't use it.
* core: add missing error checks in genesis block parser
* common: remove String2Big
* cmd/evm: use utils.BigFlag
* common/math: check for 256 bit overflow in ParseBig
This is supposed to prevent silent overflow/truncation of values in the
genesis block JSON. Without this check, a genesis block that set a
balance larger than 256 bits would lead to weird behaviour in the VM.
* cmd/utils: fixup import
2017-02-26 21:21:51 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common/math"
|
|
|
|
"gopkg.in/urfave/cli.v1"
|
2015-04-08 13:43:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Custom type which is registered in the flags library which cli uses for
|
|
|
|
// argument parsing. This allows us to expand Value to an absolute path when
|
|
|
|
// the argument is parsed
|
2019-08-22 11:32:26 +00:00
|
|
|
type DirectoryString string
|
2015-04-08 13:43:55 +00:00
|
|
|
|
2019-08-22 11:32:26 +00:00
|
|
|
func (s *DirectoryString) String() string {
|
|
|
|
return string(*s)
|
2015-04-08 13:43:55 +00:00
|
|
|
}
|
|
|
|
|
2019-08-22 11:32:26 +00:00
|
|
|
func (s *DirectoryString) Set(value string) error {
|
|
|
|
*s = DirectoryString(expandPath(value))
|
2015-04-09 08:26:26 +00:00
|
|
|
return nil
|
2015-04-08 13:43:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Custom cli.Flag type which expand the received string to an absolute path.
|
|
|
|
// e.g. ~/.ethereum -> /home/username/.ethereum
|
|
|
|
type DirectoryFlag struct {
|
2019-08-22 11:32:26 +00:00
|
|
|
Name string
|
|
|
|
Value DirectoryString
|
|
|
|
Usage string
|
|
|
|
EnvVar string
|
2015-04-08 13:43:55 +00:00
|
|
|
}
|
|
|
|
|
2019-08-22 11:32:26 +00:00
|
|
|
func (f DirectoryFlag) String() string {
|
|
|
|
return cli.FlagStringer(f)
|
|
|
|
}
|
|
|
|
|
|
|
|
// called by cli library, grabs variable from environment (if in env)
|
|
|
|
// and adds variable to flag set for parsing.
|
|
|
|
func (f DirectoryFlag) Apply(set *flag.FlagSet) {
|
|
|
|
eachName(f.Name, func(name string) {
|
|
|
|
set.Var(&f.Value, f.Name, f.Usage)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f DirectoryFlag) GetName() string {
|
|
|
|
return f.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *DirectoryFlag) Set(value string) {
|
|
|
|
f.Value.Set(value)
|
2015-04-08 13:43:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func eachName(longName string, fn func(string)) {
|
2015-04-09 08:26:26 +00:00
|
|
|
parts := strings.Split(longName, ",")
|
|
|
|
for _, name := range parts {
|
|
|
|
name = strings.Trim(name, " ")
|
|
|
|
fn(name)
|
|
|
|
}
|
2015-04-08 13:43:55 +00:00
|
|
|
}
|
2015-04-09 08:26:26 +00:00
|
|
|
|
2017-04-12 14:27:23 +00:00
|
|
|
type TextMarshaler interface {
|
|
|
|
encoding.TextMarshaler
|
|
|
|
encoding.TextUnmarshaler
|
|
|
|
}
|
|
|
|
|
|
|
|
// textMarshalerVal turns a TextMarshaler into a flag.Value
|
|
|
|
type textMarshalerVal struct {
|
|
|
|
v TextMarshaler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v textMarshalerVal) String() string {
|
|
|
|
if v.v == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
text, _ := v.v.MarshalText()
|
|
|
|
return string(text)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v textMarshalerVal) Set(s string) error {
|
|
|
|
return v.v.UnmarshalText([]byte(s))
|
|
|
|
}
|
|
|
|
|
|
|
|
// TextMarshalerFlag wraps a TextMarshaler value.
|
|
|
|
type TextMarshalerFlag struct {
|
2019-08-22 11:32:26 +00:00
|
|
|
Name string
|
|
|
|
Value TextMarshaler
|
|
|
|
Usage string
|
|
|
|
EnvVar string
|
2017-04-12 14:27:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f TextMarshalerFlag) GetName() string {
|
|
|
|
return f.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f TextMarshalerFlag) String() string {
|
2019-08-22 11:32:26 +00:00
|
|
|
return cli.FlagStringer(f)
|
2017-04-12 14:27:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f TextMarshalerFlag) Apply(set *flag.FlagSet) {
|
|
|
|
eachName(f.Name, func(name string) {
|
|
|
|
set.Var(textMarshalerVal{f.Value}, f.Name, f.Usage)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// GlobalTextMarshaler returns the value of a TextMarshalerFlag from the global flag set.
|
|
|
|
func GlobalTextMarshaler(ctx *cli.Context, name string) TextMarshaler {
|
|
|
|
val := ctx.GlobalGeneric(name)
|
|
|
|
if val == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return val.(textMarshalerVal).v
|
|
|
|
}
|
|
|
|
|
common: move big integer math to common/math (#3699)
* common: remove CurrencyToString
Move denomination values to params instead.
* common: delete dead code
* common: move big integer operations to common/math
This commit consolidates all big integer operations into common/math and
adds tests and documentation.
There should be no change in semantics for BigPow, BigMin, BigMax, S256,
U256, Exp and their behaviour is now locked in by tests.
The BigD, BytesToBig and Bytes2Big functions don't provide additional
value, all uses are replaced by new(big.Int).SetBytes().
BigToBytes is now called PaddedBigBytes, its minimum output size
parameter is now specified as the number of bytes instead of bits. The
single use of this function is in the EVM's MSTORE instruction.
Big and String2Big are replaced by ParseBig, which is slightly stricter.
It previously accepted leading zeros for hexadecimal inputs but treated
decimal inputs as octal if a leading zero digit was present.
ParseUint64 is used in places where String2Big was used to decode a
uint64.
The new functions MustParseBig and MustParseUint64 are now used in many
places where parsing errors were previously ignored.
* common: delete unused big integer variables
* accounts/abi: replace uses of BytesToBig with use of encoding/binary
* common: remove BytesToBig
* common: remove Bytes2Big
* common: remove BigTrue
* cmd/utils: add BigFlag and use it for error-checked integer flags
While here, remove environment variable processing for DirectoryFlag
because we don't use it.
* core: add missing error checks in genesis block parser
* common: remove String2Big
* cmd/evm: use utils.BigFlag
* common/math: check for 256 bit overflow in ParseBig
This is supposed to prevent silent overflow/truncation of values in the
genesis block JSON. Without this check, a genesis block that set a
balance larger than 256 bits would lead to weird behaviour in the VM.
* cmd/utils: fixup import
2017-02-26 21:21:51 +00:00
|
|
|
// BigFlag is a command line flag that accepts 256 bit big integers in decimal or
|
|
|
|
// hexadecimal syntax.
|
|
|
|
type BigFlag struct {
|
2019-08-22 11:32:26 +00:00
|
|
|
Name string
|
|
|
|
Value *big.Int
|
|
|
|
Usage string
|
|
|
|
EnvVar string
|
common: move big integer math to common/math (#3699)
* common: remove CurrencyToString
Move denomination values to params instead.
* common: delete dead code
* common: move big integer operations to common/math
This commit consolidates all big integer operations into common/math and
adds tests and documentation.
There should be no change in semantics for BigPow, BigMin, BigMax, S256,
U256, Exp and their behaviour is now locked in by tests.
The BigD, BytesToBig and Bytes2Big functions don't provide additional
value, all uses are replaced by new(big.Int).SetBytes().
BigToBytes is now called PaddedBigBytes, its minimum output size
parameter is now specified as the number of bytes instead of bits. The
single use of this function is in the EVM's MSTORE instruction.
Big and String2Big are replaced by ParseBig, which is slightly stricter.
It previously accepted leading zeros for hexadecimal inputs but treated
decimal inputs as octal if a leading zero digit was present.
ParseUint64 is used in places where String2Big was used to decode a
uint64.
The new functions MustParseBig and MustParseUint64 are now used in many
places where parsing errors were previously ignored.
* common: delete unused big integer variables
* accounts/abi: replace uses of BytesToBig with use of encoding/binary
* common: remove BytesToBig
* common: remove Bytes2Big
* common: remove BigTrue
* cmd/utils: add BigFlag and use it for error-checked integer flags
While here, remove environment variable processing for DirectoryFlag
because we don't use it.
* core: add missing error checks in genesis block parser
* common: remove String2Big
* cmd/evm: use utils.BigFlag
* common/math: check for 256 bit overflow in ParseBig
This is supposed to prevent silent overflow/truncation of values in the
genesis block JSON. Without this check, a genesis block that set a
balance larger than 256 bits would lead to weird behaviour in the VM.
* cmd/utils: fixup import
2017-02-26 21:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// bigValue turns *big.Int into a flag.Value
|
|
|
|
type bigValue big.Int
|
|
|
|
|
|
|
|
func (b *bigValue) String() string {
|
|
|
|
if b == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return (*big.Int)(b).String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bigValue) Set(s string) error {
|
|
|
|
int, ok := math.ParseBig256(s)
|
|
|
|
if !ok {
|
|
|
|
return errors.New("invalid integer syntax")
|
|
|
|
}
|
|
|
|
*b = (bigValue)(*int)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f BigFlag) GetName() string {
|
|
|
|
return f.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f BigFlag) String() string {
|
2019-08-22 11:32:26 +00:00
|
|
|
return cli.FlagStringer(f)
|
common: move big integer math to common/math (#3699)
* common: remove CurrencyToString
Move denomination values to params instead.
* common: delete dead code
* common: move big integer operations to common/math
This commit consolidates all big integer operations into common/math and
adds tests and documentation.
There should be no change in semantics for BigPow, BigMin, BigMax, S256,
U256, Exp and their behaviour is now locked in by tests.
The BigD, BytesToBig and Bytes2Big functions don't provide additional
value, all uses are replaced by new(big.Int).SetBytes().
BigToBytes is now called PaddedBigBytes, its minimum output size
parameter is now specified as the number of bytes instead of bits. The
single use of this function is in the EVM's MSTORE instruction.
Big and String2Big are replaced by ParseBig, which is slightly stricter.
It previously accepted leading zeros for hexadecimal inputs but treated
decimal inputs as octal if a leading zero digit was present.
ParseUint64 is used in places where String2Big was used to decode a
uint64.
The new functions MustParseBig and MustParseUint64 are now used in many
places where parsing errors were previously ignored.
* common: delete unused big integer variables
* accounts/abi: replace uses of BytesToBig with use of encoding/binary
* common: remove BytesToBig
* common: remove Bytes2Big
* common: remove BigTrue
* cmd/utils: add BigFlag and use it for error-checked integer flags
While here, remove environment variable processing for DirectoryFlag
because we don't use it.
* core: add missing error checks in genesis block parser
* common: remove String2Big
* cmd/evm: use utils.BigFlag
* common/math: check for 256 bit overflow in ParseBig
This is supposed to prevent silent overflow/truncation of values in the
genesis block JSON. Without this check, a genesis block that set a
balance larger than 256 bits would lead to weird behaviour in the VM.
* cmd/utils: fixup import
2017-02-26 21:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f BigFlag) Apply(set *flag.FlagSet) {
|
|
|
|
eachName(f.Name, func(name string) {
|
|
|
|
set.Var((*bigValue)(f.Value), f.Name, f.Usage)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// GlobalBig returns the value of a BigFlag from the global flag set.
|
|
|
|
func GlobalBig(ctx *cli.Context, name string) *big.Int {
|
|
|
|
val := ctx.GlobalGeneric(name)
|
|
|
|
if val == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return (*big.Int)(val.(*bigValue))
|
|
|
|
}
|
|
|
|
|
2015-04-08 13:43:55 +00:00
|
|
|
// Expands a file path
|
|
|
|
// 1. replace tilde with users home dir
|
|
|
|
// 2. expands embedded environment variables
|
|
|
|
// 3. cleans the path, e.g. /a/b/../c -> /a/c
|
|
|
|
// Note, it has limitations, e.g. ~someuser/tmp will not be expanded
|
|
|
|
func expandPath(p string) string {
|
2015-04-09 08:26:26 +00:00
|
|
|
if strings.HasPrefix(p, "~/") || strings.HasPrefix(p, "~\\") {
|
2020-09-22 21:22:54 +00:00
|
|
|
if home := HomeDir(); home != "" {
|
2016-09-16 09:53:50 +00:00
|
|
|
p = home + p[1:]
|
2015-04-09 08:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-06 14:18:32 +00:00
|
|
|
return path.Clean(os.ExpandEnv(p))
|
2015-04-08 13:43:55 +00:00
|
|
|
}
|
2016-09-16 09:53:50 +00:00
|
|
|
|
2020-09-22 21:22:54 +00:00
|
|
|
func HomeDir() string {
|
2016-09-16 09:53:50 +00:00
|
|
|
if home := os.Getenv("HOME"); home != "" {
|
|
|
|
return home
|
|
|
|
}
|
|
|
|
if usr, err := user.Current(); err == nil {
|
|
|
|
return usr.HomeDir
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|