Commit 2ed4f5c1 authored by pengjun's avatar pengjun Committed by vipwzw

#334 fix gosec error

parent 53997dae
...@@ -74,7 +74,12 @@ func generateUsers(baseDir string, orgName string) { ...@@ -74,7 +74,12 @@ func generateUsers(baseDir string, orgName string) {
fmt.Printf("generateUsers\n") fmt.Printf("generateUsers\n")
fmt.Println(baseDir) fmt.Println(baseDir)
os.RemoveAll(baseDir) err := os.RemoveAll(baseDir)
if err != nil {
fmt.Println("Clean directory %s error", baseDir)
os.Exit(1)
}
caDir := filepath.Join(baseDir, "cacerts") caDir := filepath.Join(baseDir, "cacerts")
signType := types.GetSignType("cert", cfg.SignType) signType := types.GetSignType("cert", cfg.SignType)
......
...@@ -154,12 +154,11 @@ func (ks *fileBasedKeyStore) storePublicKey(alias string, publicKey interface{}) ...@@ -154,12 +154,11 @@ func (ks *fileBasedKeyStore) storePublicKey(alias string, publicKey interface{})
func (ks *fileBasedKeyStore) createKeyStoreIfNotExists() error { func (ks *fileBasedKeyStore) createKeyStoreIfNotExists() error {
ksPath := ks.path ksPath := ks.path
missing, _ := auth.DirMissingOrEmpty(ksPath) missing, _ := auth.DirMissingOrEmpty(ksPath)
if missing { if missing {
err := ks.createKeyStore() err := ks.createKeyStore()
if err != nil { if err != nil {
logger.Error("Failed creating KeyStore At [%s]: [%s]", ksPath, err.Error()) logger.Error("Failed creating KeyStore At [%s]: [%s]", ksPath, err.Error())
return nil return err
} }
} }
...@@ -169,9 +168,8 @@ func (ks *fileBasedKeyStore) createKeyStoreIfNotExists() error { ...@@ -169,9 +168,8 @@ func (ks *fileBasedKeyStore) createKeyStoreIfNotExists() error {
func (ks *fileBasedKeyStore) createKeyStore() error { func (ks *fileBasedKeyStore) createKeyStore() error {
ksPath := ks.path ksPath := ks.path
os.MkdirAll(ksPath, 0755) err := os.MkdirAll(ksPath, 0750)
return err
return nil
} }
func (ks *fileBasedKeyStore) openKeyStore() error { func (ks *fileBasedKeyStore) openKeyStore() error {
......
...@@ -52,7 +52,7 @@ func NewCA(baseDir, name string, signType int) (generator.CAGenerator, error) { ...@@ -52,7 +52,7 @@ func NewCA(baseDir, name string, signType int) (generator.CAGenerator, error) {
} }
func newEcdsaCA(baseDir, name string) (*EcdsaCA, error) { func newEcdsaCA(baseDir, name string) (*EcdsaCA, error) {
err := os.MkdirAll(baseDir, 0755) err := os.MkdirAll(baseDir, 0750)
if err != nil { if err != nil {
return nil, err return nil, err
} }
...@@ -168,8 +168,7 @@ func x509Template() x509.Certificate { ...@@ -168,8 +168,7 @@ func x509Template() x509.Certificate {
} }
func genCertificateECDSA(baseDir, name string, template, parent *x509.Certificate, func genCertificateECDSA(baseDir, name string, template, parent *x509.Certificate, priv interface{}) (*x509.Certificate, error) {
priv interface{}) (*x509.Certificate, error) {
certBytes, err := x509.CreateCertificate(rand.Reader, template, parent, template.PublicKey, priv) certBytes, err := x509.CreateCertificate(rand.Reader, template, parent, template.PublicKey, priv)
if err != nil { if err != nil {
return nil, err return nil, err
...@@ -180,9 +179,9 @@ func genCertificateECDSA(baseDir, name string, template, parent *x509.Certificat ...@@ -180,9 +179,9 @@ func genCertificateECDSA(baseDir, name string, template, parent *x509.Certificat
if err != nil { if err != nil {
return nil, err return nil, err
} }
defer certFile.Close()
err = pem.Encode(certFile, &pem.Block{Type: "CERTIFICATE", Bytes: certBytes}) err = pem.Encode(certFile, &pem.Block{Type: "CERTIFICATE", Bytes: certBytes})
certFile.Close()
if err != nil { if err != nil {
return nil, err return nil, err
} }
...@@ -291,7 +290,10 @@ func genCertificateGMSM2(baseDir, name string, template, parent *sm2.Certificate ...@@ -291,7 +290,10 @@ func genCertificateGMSM2(baseDir, name string, template, parent *sm2.Certificate
fileName := filepath.Join(baseDir, name+"-cert.pem") fileName := filepath.Join(baseDir, name+"-cert.pem")
utils.CreateCertificateToPem(fileName, template, parent, key) err = utils.CreateCertificateToPem(fileName, template, parent, key)
if err != nil {
return nil, err
}
x509Cert, err := sm2.ReadCertificateFromMem(certBytes) x509Cert, err := sm2.ReadCertificateFromMem(certBytes)
if err != nil { if err != nil {
...@@ -310,7 +312,7 @@ func createFolderStructure(rootDir string, local bool) error { ...@@ -310,7 +312,7 @@ func createFolderStructure(rootDir string, local bool) error {
} }
for _, folder := range folders { for _, folder := range folders {
err := os.MkdirAll(folder, 0755) err := os.MkdirAll(folder, 0750)
if err != nil { if err != nil {
return err return err
} }
......
...@@ -27,10 +27,9 @@ func CreateCertificateToMem(template, parent *sm2.Certificate, key csp.Key) (cer ...@@ -27,10 +27,9 @@ func CreateCertificateToMem(template, parent *sm2.Certificate, key csp.Key) (cer
} }
// CreateCertificateToPem 证书转pem // CreateCertificateToPem 证书转pem
func CreateCertificateToPem(FileName string, template, parent *sm2.Certificate, key csp.Key) (bool, error) { func CreateCertificateToPem(FileName string, template, parent *sm2.Certificate, key csp.Key) error {
pk := key.(*csp.SM2PrivateKey).PrivKey pk := key.(*csp.SM2PrivateKey).PrivKey
var result bool
var err error var err error
pub, _ := template.PublicKey.(*sm2.PublicKey) pub, _ := template.PublicKey.(*sm2.PublicKey)
var puk sm2.PublicKey var puk sm2.PublicKey
...@@ -38,12 +37,12 @@ func CreateCertificateToPem(FileName string, template, parent *sm2.Certificate, ...@@ -38,12 +37,12 @@ func CreateCertificateToPem(FileName string, template, parent *sm2.Certificate,
puk.Curve = sm2.P256Sm2() puk.Curve = sm2.P256Sm2()
puk.X = pub.X puk.X = pub.X
puk.Y = pub.Y puk.Y = pub.Y
result, err = sm2.CreateCertificateToPem(FileName, template, parent, &puk, pk) _, err = sm2.CreateCertificateToPem(FileName, template, parent, &puk, pk)
if err != nil { if err != nil {
return false, err return err
} }
return result, err return nil
} }
// ParseX509CertificateToSm2 解析x509格式为sm2格式证书 // ParseX509CertificateToSm2 解析x509格式为sm2格式证书
......
...@@ -14,7 +14,7 @@ import ( ...@@ -14,7 +14,7 @@ import (
// DirMissingOrEmpty 路径是否为空 // DirMissingOrEmpty 路径是否为空
func DirMissingOrEmpty(path string) (bool, error) { func DirMissingOrEmpty(path string) (bool, error) {
dirExists, err := DirExists(path) dirExists, err := dirExists(path)
if err != nil { if err != nil {
return false, err return false, err
} }
...@@ -22,7 +22,7 @@ func DirMissingOrEmpty(path string) (bool, error) { ...@@ -22,7 +22,7 @@ func DirMissingOrEmpty(path string) (bool, error) {
return true, nil return true, nil
} }
dirEmpty, err := DirEmpty(path) dirEmpty, err := dirEmpty(path)
if err != nil { if err != nil {
return false, err return false, err
} }
...@@ -33,7 +33,7 @@ func DirMissingOrEmpty(path string) (bool, error) { ...@@ -33,7 +33,7 @@ func DirMissingOrEmpty(path string) (bool, error) {
} }
// DirExists 目录是否存在 // DirExists 目录是否存在
func DirExists(path string) (bool, error) { func dirExists(path string) (bool, error) {
_, err := os.Stat(path) _, err := os.Stat(path)
if err == nil { if err == nil {
return true, nil return true, nil
...@@ -45,7 +45,7 @@ func DirExists(path string) (bool, error) { ...@@ -45,7 +45,7 @@ func DirExists(path string) (bool, error) {
} }
// DirEmpty 目录是否为空 // DirEmpty 目录是否为空
func DirEmpty(path string) (bool, error) { func dirEmpty(path string) (bool, error) {
f, err := os.Open(path) f, err := os.Open(path)
if err != nil { if err != nil {
return false, err return false, err
...@@ -83,8 +83,3 @@ func ReadPemFile(file string) ([]byte, error) { ...@@ -83,8 +83,3 @@ func ReadPemFile(file string) ([]byte, error) {
return bytes, nil return bytes, nil
} }
// DeleteFile 删除文件
func DeleteFile(file string) error {
return os.Remove(file)
}
...@@ -27,7 +27,10 @@ func Init(name string, sub []byte) { ...@@ -27,7 +27,10 @@ func Init(name string, sub []byte) {
if sub != nil { if sub != nil {
types.MustDecode(sub, &cfg) types.MustDecode(sub, &cfg)
} }
authority.Author.Init(&cfg) err := authority.Author.Init(&cfg)
if err != nil {
clog.Error("error to initialize authority", err)
}
drivers.Register(driverName, newCert, types.GetDappFork(driverName, "Enable")) drivers.Register(driverName, newCert, types.GetDappFork(driverName, "Enable"))
} }
...@@ -69,18 +72,27 @@ func (c *Cert) CheckTx(tx *types.Transaction, index int) error { ...@@ -69,18 +72,27 @@ func (c *Cert) CheckTx(tx *types.Transaction, index int) error {
// 重启 // 重启
if authority.Author.HistoryCertCache.CurHeight == -1 { if authority.Author.HistoryCertCache.CurHeight == -1 {
c.loadHistoryByPrefix() err := c.loadHistoryByPrefix()
if err != nil {
return err
}
} }
// 当前区块<上次证书变更区块,cert回滚 // 当前区块<上次证书变更区块,cert回滚
if c.GetHeight() <= authority.Author.HistoryCertCache.CurHeight { if c.GetHeight() <= authority.Author.HistoryCertCache.CurHeight {
c.loadHistoryByPrefix() err := c.loadHistoryByPrefix()
if err != nil {
return err
}
} }
// 当前区块>上次变更下一区块,下一区块不为-1,即非最新证书变更记录,用于cert回滚时判断是否到了下一变更记录 // 当前区块>上次变更下一区块,下一区块不为-1,即非最新证书变更记录,用于cert回滚时判断是否到了下一变更记录
nxtHeight := authority.Author.HistoryCertCache.NxtHeight nxtHeight := authority.Author.HistoryCertCache.NxtHeight
if nxtHeight != -1 && c.GetHeight() > nxtHeight { if nxtHeight != -1 && c.GetHeight() > nxtHeight {
c.loadHistoryByHeight() err := c.loadHistoryByHeight()
if err != nil {
return err
}
} }
// auth校验 // auth校验
...@@ -111,7 +123,10 @@ func (c *Cert) loadHistoryByPrefix() error { ...@@ -111,7 +123,10 @@ func (c *Cert) loadHistoryByPrefix() error {
// 寻找当前高度使用的证书区间 // 寻找当前高度使用的证书区间
var historyData types.HistoryCertStore var historyData types.HistoryCertStore
for _, v := range result.Values { for _, v := range result.Values {
types.Decode(v, &historyData) err := types.Decode(v, &historyData)
if err != nil {
return err
}
if historyData.CurHeigth < c.GetHeight() && (historyData.NxtHeight >= c.GetHeight() || historyData.NxtHeight == -1) { if historyData.CurHeigth < c.GetHeight() && (historyData.NxtHeight >= c.GetHeight() || historyData.NxtHeight == -1) {
return authority.Author.ReloadCert(&historyData) return authority.Author.ReloadCert(&historyData)
} }
...@@ -132,7 +147,10 @@ func (c *Cert) loadHistoryByHeight() error { ...@@ -132,7 +147,10 @@ func (c *Cert) loadHistoryByHeight() error {
} }
var historyData types.HistoryCertStore var historyData types.HistoryCertStore
for _, v := range result.Values { for _, v := range result.Values {
types.Decode(v, &historyData) err := types.Decode(v, &historyData)
if err != nil {
return err
}
if historyData.CurHeigth < c.GetHeight() && historyData.NxtHeight >= c.GetHeight() { if historyData.CurHeigth < c.GetHeight() && historyData.NxtHeight >= c.GetHeight() {
return authority.Author.ReloadCert(&historyData) return authority.Author.ReloadCert(&historyData)
} }
......
...@@ -65,7 +65,11 @@ func (c *Cert) ExecLocal_Update(payload *ct.CertUpdate, tx *types.Transaction, r ...@@ -65,7 +65,11 @@ func (c *Cert) ExecLocal_Update(payload *ct.CertUpdate, tx *types.Transaction, r
// 证书更新 // 证书更新
historityCertdata = &types.HistoryCertStore{} historityCertdata = &types.HistoryCertStore{}
authority.Author.ReloadCertByHeght(c.GetHeight()) err := authority.Author.ReloadCertByHeght(c.GetHeight())
if err != nil {
return nil, err
}
authority.Author.HistoryCertCache.ToHistoryCertStore(historityCertdata) authority.Author.HistoryCertCache.ToHistoryCertStore(historityCertdata)
setKey := calcCertHeightKey(c.GetHeight()) setKey := calcCertHeightKey(c.GetHeight())
set.KV = append(set.KV, &types.KeyValue{ set.KV = append(set.KV, &types.KeyValue{
......
...@@ -204,9 +204,7 @@ func pokerbullQuery(cmd *cobra.Command, args []string) { ...@@ -204,9 +204,7 @@ func pokerbullQuery(cmd *cobra.Command, args []string) {
gameID, _ := cmd.Flags().GetString("gameID") gameID, _ := cmd.Flags().GetString("gameID")
address, _ := cmd.Flags().GetString("address") address, _ := cmd.Flags().GetString("address")
statusStr, _ := cmd.Flags().GetString("status") statusStr, _ := cmd.Flags().GetString("status")
status, _ := strconv.ParseInt(statusStr, 10, 32)
indexstr, _ := cmd.Flags().GetString("index") indexstr, _ := cmd.Flags().GetString("index")
index, _ := strconv.ParseInt(indexstr, 10, 64)
gameIDs, _ := cmd.Flags().GetString("gameIDs") gameIDs, _ := cmd.Flags().GetString("gameIDs")
round, _ := cmd.Flags().GetString("round") round, _ := cmd.Flags().GetString("round")
...@@ -215,13 +213,21 @@ func pokerbullQuery(cmd *cobra.Command, args []string) { ...@@ -215,13 +213,21 @@ func pokerbullQuery(cmd *cobra.Command, args []string) {
req := &pkt.QueryPBGameInfo{ req := &pkt.QueryPBGameInfo{
GameId: gameID, GameId: gameID,
Addr: address, Addr: address,
Status: int32(status),
Index: index,
} }
params.Payload = types.MustPBToJSON(req) if indexstr != "" {
index, err := strconv.ParseInt(indexstr, 10, 64)
if err != nil {
fmt.Println(err)
cmd.Help()
return
}
req.Index = index
}
if gameID != "" { if gameID != "" {
if round == "" { if round == "" {
params.FuncName = pkt.FuncNameQueryGameByID params.FuncName = pkt.FuncNameQueryGameByID
params.Payload = types.MustPBToJSON(req)
var res pkt.ReplyPBGame var res pkt.ReplyPBGame
ctx := jsonrpc.NewRPCCtx(rpcLaddr, "Chain33.Query", params, &res) ctx := jsonrpc.NewRPCCtx(rpcLaddr, "Chain33.Query", params, &res)
ctx.Run() ctx.Run()
...@@ -243,11 +249,20 @@ func pokerbullQuery(cmd *cobra.Command, args []string) { ...@@ -243,11 +249,20 @@ func pokerbullQuery(cmd *cobra.Command, args []string) {
} }
} else if address != "" { } else if address != "" {
params.FuncName = pkt.FuncNameQueryGameByAddr params.FuncName = pkt.FuncNameQueryGameByAddr
params.Payload = types.MustPBToJSON(req)
var res pkt.PBGameRecords var res pkt.PBGameRecords
ctx := jsonrpc.NewRPCCtx(rpcLaddr, "Chain33.Query", params, &res) ctx := jsonrpc.NewRPCCtx(rpcLaddr, "Chain33.Query", params, &res)
ctx.Run() ctx.Run()
} else if statusStr != "" { } else if statusStr != "" {
status, err := strconv.ParseInt(statusStr, 10, 32)
if err != nil {
fmt.Println(err)
cmd.Help()
return
}
req.Status = int32(status)
params.FuncName = pkt.FuncNameQueryGameByStatus params.FuncName = pkt.FuncNameQueryGameByStatus
params.Payload = types.MustPBToJSON(req)
var res pkt.PBGameRecords var res pkt.PBGameRecords
ctx := jsonrpc.NewRPCCtx(rpcLaddr, "Chain33.Query", params, &res) ctx := jsonrpc.NewRPCCtx(rpcLaddr, "Chain33.Query", params, &res)
ctx.Run() ctx.Run()
......
...@@ -163,11 +163,14 @@ func queryGameListByStatusAndPlayer(db dbm.Lister, stat int32, player int32, val ...@@ -163,11 +163,14 @@ func queryGameListByStatusAndPlayer(db dbm.Lister, stat int32, player int32, val
return gameIds, nil return gameIds, nil
} }
func (action *Action) saveGame(game *pkt.PokerBull) (kvset []*types.KeyValue) { func (action *Action) saveGame(game *pkt.PokerBull) (kvset []*types.KeyValue, err error) {
value := types.Encode(game) value := types.Encode(game)
action.db.Set(Key(game.GetGameId()), value) err = action.db.Set(Key(game.GetGameId()), value)
if err != nil {
return nil,err
}
kvset = append(kvset, &types.KeyValue{Key: Key(game.GameId), Value: value}) kvset = append(kvset, &types.KeyValue{Key: Key(game.GameId), Value: value})
return kvset return kvset, nil
} }
func (action *Action) getIndex(game *pkt.PokerBull) int64 { func (action *Action) getIndex(game *pkt.PokerBull) int64 {
...@@ -588,6 +591,13 @@ func (action *Action) GameStart(start *pkt.PBGameStart) (*types.Receipt, error) ...@@ -588,6 +591,13 @@ func (action *Action) GameStart(start *pkt.PBGameStart) (*types.Receipt, error)
var kv []*types.KeyValue var kv []*types.KeyValue
logger.Info(fmt.Sprintf("Pokerbull game match for %s", action.fromaddr)) logger.Info(fmt.Sprintf("Pokerbull game match for %s", action.fromaddr))
// 参数校验
if start.PlayerNum <= 0 || start.Value < 0 {
logger.Error("GameStart", "addr", action.fromaddr, "execaddr", action.execaddr,
"err", fmt.Sprintf("Invalid parameter"))
return nil, types.ErrInvalidParam
}
if start.PlayerNum > pkt.MaxPlayerNum { if start.PlayerNum > pkt.MaxPlayerNum {
logger.Error("GameStart", "addr", action.fromaddr, "execaddr", action.execaddr, logger.Error("GameStart", "addr", action.fromaddr, "execaddr", action.execaddr,
"err", fmt.Sprintf("The maximum player number is %d", pkt.MaxPlayerNum)) "err", fmt.Sprintf("The maximum player number is %d", pkt.MaxPlayerNum))
...@@ -670,7 +680,12 @@ func (action *Action) GameStart(start *pkt.PBGameStart) (*types.Receipt, error) ...@@ -670,7 +680,12 @@ func (action *Action) GameStart(start *pkt.PBGameStart) (*types.Receipt, error)
} }
receiptLog := action.GetReceiptLog(game) receiptLog := action.GetReceiptLog(game)
logs = append(logs, receiptLog) logs = append(logs, receiptLog)
kv = append(kv, action.saveGame(game)...) gamekv,err := action.saveGame(game)
if err != nil {
logger.Error("GameStart", "addr", action.fromaddr, "execaddr", action.execaddr, "err", "save game to db failed")
return nil, err
}
kv = append(kv, gamekv...)
return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil
} }
...@@ -777,32 +792,38 @@ func (action *Action) GameContinue(pbcontinue *pkt.PBGameContinue) (*types.Recei ...@@ -777,32 +792,38 @@ func (action *Action) GameContinue(pbcontinue *pkt.PBGameContinue) (*types.Recei
receiptLog := action.GetReceiptLog(game) receiptLog := action.GetReceiptLog(game)
logs = append(logs, receiptLog) logs = append(logs, receiptLog)
kv = append(kv, action.saveGame(game)...) gamekv,err := action.saveGame(game)
if err != nil {
logger.Error("GameContinue", "GameID", pbcontinue.GetGameId(), "addr", action.fromaddr, "execaddr",
action.execaddr, "err", "save game to db failed")
return nil, err
}
kv = append(kv, gamekv...)
return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil
} }
// GameQuit 退出游戏 // GameQuit 退出游戏
func (action *Action) GameQuit(pbend *pkt.PBGameQuit) (*types.Receipt, error) { func (action *Action) GameQuit(pbquit *pkt.PBGameQuit) (*types.Receipt, error) {
var logs []*types.ReceiptLog var logs []*types.ReceiptLog
var kv []*types.KeyValue var kv []*types.KeyValue
logger.Info(fmt.Sprintf("Quit pokerbull game %s", pbend.GameId)) logger.Info(fmt.Sprintf("Quit pokerbull game %s", pbquit.GameId))
game, err := action.readGame(pbend.GetGameId()) game, err := action.readGame(pbquit.GetGameId())
if err != nil { if err != nil {
logger.Error("GameEnd", "GameID", pbend.GetGameId(), "addr", action.fromaddr, "execaddr", logger.Error("GameQuit", "GameID", pbquit.GetGameId(), "addr", action.fromaddr, "execaddr",
action.execaddr, "get game failed", "err", err) action.execaddr, "get game failed", "err", err)
return nil, err return nil, err
} }
if game.Status == pkt.PBGameActionQuit { if game.Status == pkt.PBGameActionQuit {
logger.Error("Quit pokerbull game", "GameID", pbend.GetGameId(), "value", game.Value, "err", "already game over") logger.Error("Quit pokerbull game", "GameID", pbquit.GetGameId(), "value", game.Value, "err", "already game over")
return nil, fmt.Errorf("already game over") return nil, fmt.Errorf("already game over")
} }
if !action.checkPlayerAddressExist(game.Players) { if !action.checkPlayerAddressExist(game.Players) {
if action.fromaddr != pkt.PlatformSignAddress { if action.fromaddr != pkt.PlatformSignAddress {
logger.Error("GameEnd", "GameID", pbend.GetGameId(), "addr", action.fromaddr, "execaddr", logger.Error("GameQuit", "GameID", pbquit.GetGameId(), "addr", action.fromaddr, "execaddr",
action.execaddr, "err", "permission denied") action.execaddr, "err", "permission denied")
return nil, fmt.Errorf("permission denied") return nil, fmt.Errorf("permission denied")
} }
...@@ -814,7 +835,7 @@ func (action *Action) GameQuit(pbend *pkt.PBGameQuit) (*types.Receipt, error) { ...@@ -814,7 +835,7 @@ func (action *Action) GameQuit(pbend *pkt.PBGameQuit) (*types.Receipt, error) {
for _, player := range game.Players { for _, player := range game.Players {
receipt, err := action.coinsAccount.ExecActive(player.Address, action.execaddr, game.GetValue()*PokerbullLeverageMax) receipt, err := action.coinsAccount.ExecActive(player.Address, action.execaddr, game.GetValue()*PokerbullLeverageMax)
if err != nil { if err != nil {
logger.Error("GameSettleDealer.ExecActive", "GameID", pbend.GetGameId(), "addr", player.Address, logger.Error("GameSettleDealer.ExecActive", "GameID", pbquit.GetGameId(), "addr", player.Address,
"execaddr", action.execaddr, "amount", game.GetValue(), "err", err) "execaddr", action.execaddr, "amount", game.GetValue(), "err", err)
continue continue
} }
...@@ -829,7 +850,7 @@ func (action *Action) GameQuit(pbend *pkt.PBGameQuit) (*types.Receipt, error) { ...@@ -829,7 +850,7 @@ func (action *Action) GameQuit(pbend *pkt.PBGameQuit) (*types.Receipt, error) {
receipt, err := action.coinsAccount.ExecActive(player.Address, action.execaddr, game.GetValue()*PokerbullLeverageMax) receipt, err := action.coinsAccount.ExecActive(player.Address, action.execaddr, game.GetValue()*PokerbullLeverageMax)
if err != nil { if err != nil {
logger.Error("GameSettleDealer.ExecActive", "GameID", pbend.GetGameId(), "addr", player.Address, logger.Error("GameSettleDealer.ExecActive", "GameID", pbquit.GetGameId(), "addr", player.Address,
"execaddr", action.execaddr, "amount", game.GetValue(), "err", err) "execaddr", action.execaddr, "amount", game.GetValue(), "err", err)
continue continue
} }
...@@ -848,7 +869,13 @@ func (action *Action) GameQuit(pbend *pkt.PBGameQuit) (*types.Receipt, error) { ...@@ -848,7 +869,13 @@ func (action *Action) GameQuit(pbend *pkt.PBGameQuit) (*types.Receipt, error) {
receiptLog := action.GetReceiptLog(game) receiptLog := action.GetReceiptLog(game)
logs = append(logs, receiptLog) logs = append(logs, receiptLog)
kv = append(kv, action.saveGame(game)...) gamekv,err := action.saveGame(game)
if err != nil {
logger.Error("GameQuit", "GameID", pbquit.GetGameId(), "addr", action.fromaddr, "execaddr",
action.execaddr, "err", "save game to db failed")
return nil, err
}
kv = append(kv,gamekv...)
return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil
} }
...@@ -865,6 +892,13 @@ func (action *Action) GamePlay(pbplay *pkt.PBGamePlay) (*types.Receipt, error) { ...@@ -865,6 +892,13 @@ func (action *Action) GamePlay(pbplay *pkt.PBGamePlay) (*types.Receipt, error) {
return nil, fmt.Errorf("game signing address not support") return nil, fmt.Errorf("game signing address not support")
} }
// 参数校验
if pbplay.Round <= 0 || pbplay.Value <= 0 {
logger.Error("GameStart", "addr", action.fromaddr, "execaddr", action.execaddr,
"err", fmt.Sprintf("Invalid parameter"))
return nil, types.ErrInvalidParam
}
// 检查玩家人数 // 检查玩家人数
if len(pbplay.Address) < pkt.MinPlayerNum || len(pbplay.Address) > pkt.MaxPlayerNum { if len(pbplay.Address) < pkt.MinPlayerNum || len(pbplay.Address) > pkt.MaxPlayerNum {
logger.Error("Pokerbull game play", "GameID", pbplay.GetGameId(), "round", pbplay.Round, "value", logger.Error("Pokerbull game play", "GameID", pbplay.GetGameId(), "round", pbplay.Round, "value",
...@@ -964,7 +998,13 @@ func (action *Action) GamePlay(pbplay *pkt.PBGamePlay) (*types.Receipt, error) { ...@@ -964,7 +998,13 @@ func (action *Action) GamePlay(pbplay *pkt.PBGamePlay) (*types.Receipt, error) {
receiptLog := action.GetReceiptLog(game) receiptLog := action.GetReceiptLog(game)
logs = append(logs, receiptLog) logs = append(logs, receiptLog)
kv = append(kv, action.saveGame(game)...) gamekv,err := action.saveGame(game)
if err != nil {
logger.Error("Pokerbull game play", "GameID", pbplay.GetGameId(), "round", pbplay.Round, "value",
pbplay.Value, "players", strings.Join(pbplay.Address, ","), "err", "save game to db failed")
return nil, err
}
kv = append(kv, gamekv...)
return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment