Remove Faucet Protos (#9252)

* rem faucet protos

* tidy
This commit is contained in:
Raul Jordan
2021-07-22 13:27:31 -05:00
committed by GitHub
parent b35c3ab2e7
commit ceb1ec451a
7 changed files with 0 additions and 677 deletions

View File

@@ -1,64 +0,0 @@
# gazelle:ignore
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle")
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
IMPORT_PATH = "github.com/prysmaticlabs/prysm/tools/faucet"
SRCS = [
"main.go",
"server.go",
]
DEPS = [
"//proto/faucet:faucet_go_proto",
"//shared/timeutils:go_default_library",
"//shared/maxprocs:go_default_library",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//peer:go_default_library",
"@org_golang_google_grpc//metadata:go_default_library",
"@org_golang_google_grpc//reflection:go_default_library",
"@com_github_prestonvanloon_go_recaptcha//:go_default_library",
"@com_github_ethereum_go_ethereum//ethclient:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
"@com_github_ethereum_go_ethereum//params:go_default_library",
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
]
go_library(
name = "go_default_library",
srcs = SRCS,
importpath = IMPORT_PATH,
visibility = ["//visibility:private"],
deps = DEPS,
)
go_binary(
name = "faucet",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)
go_image(
name = "image",
base = "//tools:go_image",
binary = ":faucet",
tags = ["manual"],
)
container_bundle(
name = "image_bundle",
images = {
"gcr.io/prysmaticlabs/prysm/faucet:latest": ":image",
"gcr.io/prysmaticlabs/prysm/faucet:{DOCKER_TAG}": ":image",
},
tags = ["manual"],
)
docker_push(
name = "push_images",
bundle = ":image_bundle",
tags = ["manual"],
)

View File

@@ -1,48 +0,0 @@
package main
import (
"flag"
"fmt"
"net"
"github.com/prestonvanloon/go-recaptcha"
faucetpb "github.com/prysmaticlabs/prysm/proto/faucet"
_ "github.com/prysmaticlabs/prysm/shared/maxprocs"
"google.golang.org/grpc"
"google.golang.org/grpc/reflection"
)
var (
port = flag.Int("port", 8000, "Port to server gRPC service")
recaptchaSecret = flag.String("recaptcha_secret", "", "Secret to verify recaptcha")
rpcPath = flag.String("rpc", "", "RPC address of a running geth node")
privateKey = flag.String("private-key", "", "The private key of funder")
minScore = flag.Float64("min-score", 0.9, "Minimum captcha score.")
)
func main() {
flag.Parse()
lis, err := net.Listen("tcp", fmt.Sprintf(":%d", *port))
if err != nil {
panic(err)
}
s := grpc.NewServer()
fmt.Println("recaptcha = " + *recaptchaSecret)
faucetpb.RegisterFaucetServiceServer(s,
newFaucetServer(
recaptcha.Recaptcha{RecaptchaPrivateKey: *recaptchaSecret},
*rpcPath,
*privateKey,
*minScore,
),
)
reflection.Register(s)
go counterWatcher()
fmt.Printf("Serving gRPC requests on port %d\n", *port)
if err := s.Serve(lis); err != nil {
fmt.Printf("Error: %v", err)
}
}

View File

@@ -1,208 +0,0 @@
package main
import (
"context"
"crypto/ecdsa"
"errors"
"fmt"
"log"
"math/big"
"strings"
"sync"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/params"
"github.com/prestonvanloon/go-recaptcha"
faucetpb "github.com/prysmaticlabs/prysm/proto/faucet"
"github.com/prysmaticlabs/prysm/shared/timeutils"
"google.golang.org/grpc/metadata"
)
const ipLimit = 5
var fundingAmount *big.Int
var funded = make(map[string]bool)
var ipCounter = make(map[string]int)
var fundingLock sync.Mutex
var pruneDuration = time.Hour * 4
const txGasLimit = 40000
const fundingAmountWei = "32500000000000000000" // 32.5 ETH in Wei.
type faucetServer struct {
r recaptcha.Recaptcha
client *ethclient.Client
funder common.Address
pk *ecdsa.PrivateKey
minScore float64
}
func init() {
var ok bool
fundingAmount, ok = new(big.Int).SetString(fundingAmountWei, 10)
if !ok {
log.Fatal("could not set funding amount")
}
}
func newFaucetServer(
r recaptcha.Recaptcha,
rpcPath,
funderPrivateKey string,
minScore float64,
) *faucetServer {
client, err := ethclient.DialContext(context.Background(), rpcPath)
if err != nil {
panic(err)
}
pk, err := crypto.HexToECDSA(funderPrivateKey)
if err != nil {
panic(err)
}
funder := crypto.PubkeyToAddress(pk.PublicKey)
bal, err := client.BalanceAt(context.Background(), funder, nil)
if err != nil {
panic(err)
}
fmt.Printf("Funder is %s\n", funder.Hex())
fmt.Printf("Funder has %d\n", bal)
return &faucetServer{
r: r,
client: client,
funder: funder,
pk: pk,
minScore: minScore,
}
}
func (s *faucetServer) verifyRecaptcha(peer string, req *faucetpb.FundingRequest) error {
fmt.Printf("Sending captcha request for peer %s\n", peer)
rr, err := s.r.Check(peer, req.RecaptchaResponse)
if err != nil {
return err
}
if !rr.Success {
fmt.Printf("Unsuccessful recaptcha request. Error codes: %+v\n", rr.ErrorCodes)
return errors.New("failed")
}
if rr.Score < s.minScore {
return fmt.Errorf("recaptcha score too low (%f)", rr.Score)
}
if timeutils.Now().After(rr.ChallengeTS.Add(2 * time.Minute)) {
return errors.New("captcha challenge too old")
}
if rr.Action != req.WalletAddress {
return fmt.Errorf("action was %s, wanted %s", rr.Action, req.WalletAddress)
}
if !strings.HasSuffix(rr.Hostname, "prylabs.net") && !strings.HasSuffix(rr.Hostname, "prylabs.network") {
return fmt.Errorf("expected hostname (%s) to end in prylabs.net", rr.Hostname)
}
return nil
}
// RequestFunds from the ethereum 1.x faucet. Requires a valid captcha
// response.
func (s *faucetServer) RequestFunds(ctx context.Context, req *faucetpb.FundingRequest) (*faucetpb.FundingResponse, error) {
peer, err := s.getPeer(ctx)
if err != nil {
fmt.Printf("peer failure %v\n", err)
return &faucetpb.FundingResponse{Error: "peer error"}, nil
}
if err := s.verifyRecaptcha(peer, req); err != nil {
fmt.Printf("Recaptcha failure %v\n", err)
return &faucetpb.FundingResponse{Error: "recaptcha error"}, nil
}
fundingLock.Lock()
exceedPeerLimit := ipCounter[peer] >= ipLimit
if funded[req.WalletAddress] || exceedPeerLimit {
if exceedPeerLimit {
fmt.Printf("peer %s trying to get funded despite being over peer limit\n", peer)
}
fundingLock.Unlock()
return &faucetpb.FundingResponse{Error: "funded too recently"}, nil
}
funded[req.WalletAddress] = true
fundingLock.Unlock()
txHash, err := s.fundAndWait(common.HexToAddress(req.WalletAddress))
if err != nil {
return &faucetpb.FundingResponse{Error: fmt.Sprintf("Failed to send transaction %v", err)}, nil
}
fundingLock.Lock()
ipCounter[peer]++
fundingLock.Unlock()
fmt.Printf("Funded with TX %s\n", txHash)
return &faucetpb.FundingResponse{
Amount: fundingAmount.String(),
TransactionHash: txHash,
}, nil
}
func (s *faucetServer) fundAndWait(to common.Address) (string, error) {
nonce := uint64(0)
nonce, err := s.client.PendingNonceAt(context.Background(), s.funder)
if err != nil {
return "", err
}
tx := types.NewTransaction(nonce, to, fundingAmount, txGasLimit, big.NewInt(1*params.GWei), nil /*data*/)
tx, err = types.SignTx(tx, types.NewEIP155Signer(big.NewInt(5)), s.pk)
if err != nil {
return "", err
}
if err := s.client.SendTransaction(context.Background(), tx); err != nil {
return "", err
}
// Wait for contract to mine
for pending := true; pending; _, pending, err = s.client.TransactionByHash(context.Background(), tx.Hash()) {
if err != nil {
log.Fatal(err)
}
time.Sleep(1 * time.Second)
}
return tx.Hash().Hex(), nil
}
func (s *faucetServer) getPeer(ctx context.Context) (string, error) {
md, ok := metadata.FromIncomingContext(ctx)
if !ok || len(md.Get("x-forwarded-for")) < 1 {
return "", errors.New("metadata not ok")
}
peer := md.Get("x-forwarded-for")[0]
return peer, nil
}
// reduce the counter for each ip every few hours.
func counterWatcher() {
ticker := time.NewTicker(pruneDuration)
for {
<-ticker.C
fundingLock.Lock()
for ip, ctr := range ipCounter {
if ctr == 0 {
continue
}
ipCounter[ip] = ctr - 1
}
fundingLock.Unlock()
}
}