@@ -4,10 +4,17 @@ import (
4
4
"context"
5
5
"crypto/rand"
6
6
"encoding/hex"
7
+ "fmt"
7
8
"log"
8
9
"os"
10
+ "time"
11
+
12
+ datatransfer "github.com/filecoin-project/go-data-transfer"
13
+
14
+ network2 "github.com/filecoin-project/venus-market/v2/network"
9
15
10
16
"github.com/filecoin-project/venus-market/v2/config"
17
+ "github.com/filecoin-project/venus-market/v2/utils"
11
18
12
19
logging "github.com/ipfs/go-log/v2"
13
20
"github.com/urfave/cli/v2"
@@ -44,57 +51,104 @@ var protocols = []protocol.ID{
44
51
45
52
network .ProtocolGraphsync_1_0_0 ,
46
53
network .ProtocolGraphsync_2_0_0 ,
54
+ datatransfer .ProtocolDataTransfer1_2 ,
47
55
}
48
56
49
57
var mainLog = logging .Logger ("market-proxy" )
50
58
51
59
func main () {
52
60
app := & cli.App {
53
- Name : "venus-market" ,
54
- Usage : "venus-market" ,
61
+ Name : "venus-market-proxy " ,
62
+ Usage : "proxy multiple venus-market backends like nginx " ,
55
63
Version : version .UserVersion (),
56
64
EnableBashCompletion : true ,
65
+ Commands : []* cli.Command {
66
+ {
67
+ Name : "run" ,
68
+ Usage : "start a libp2p proxy" ,
69
+ Flags : []cli.Flag {
70
+ & cli.StringFlag {
71
+ Name : "listen" ,
72
+ Usage : "specify listen address " ,
73
+ Value : "/ip4/0.0.0.0/tcp/11023" ,
74
+ },
75
+ & cli.StringFlag {
76
+ Name : "peer-key" ,
77
+ Usage : "peer key for p2p identify, if not specify, will generate new one" ,
78
+ Value : "" ,
79
+ },
80
+ & cli.StringSliceFlag {
81
+ Name : "backends" ,
82
+ Usage : "a group of backends libp2p backends server" ,
83
+ Required : true ,
84
+ },
85
+ },
86
+ Action : run ,
87
+ },
88
+ {
89
+ Name : "new-peer-key" ,
90
+ Usage : "generate random peer key and corresponding private key " ,
91
+ Flags : []cli.Flag {},
92
+ Action : genKey ,
93
+ },
94
+ },
57
95
}
58
96
59
97
if err := app .Run (os .Args ); err != nil {
60
98
log .Fatal (err )
61
99
}
62
100
}
63
101
64
- type ProxyConfig struct {
65
- ProxyServer string
66
- }
102
+ func run (c * cli.Context ) error {
103
+ ctx := c .Context
104
+ utils .SetupLogLevels ()
105
+ cfg := config.ProxyServer {}
106
+ cfg .Libp2p .ListenAddresses = []string {c .String ("listen" )}
107
+ cfg .Libp2p .PrivateKey = c .String ("peer-key" )
108
+ cfg .Backends = c .StringSlice ("backends" )
67
109
68
- func run (cfg * config.ProxyServer ) error {
69
110
var pkey crypto.PrivKey
70
111
var err error
71
- if len (cfg .PrivateKey ) == 0 {
112
+ if len (cfg .PrivateKey ) > 0 {
72
113
privateKeyBytes , err := hex .DecodeString (cfg .PrivateKey )
73
114
if err != nil {
74
115
return err
75
116
}
76
- crypto .UnmarshalPrivateKey (privateKeyBytes )
117
+ pkey , err = crypto .UnmarshalPrivateKey (privateKeyBytes )
118
+ if err != nil {
119
+ return err
120
+ }
77
121
} else {
78
122
pkey , _ , err = crypto .GenerateEd25519Key (rand .Reader )
79
123
if err != nil {
80
124
return err
81
125
}
126
+
127
+ privateKeyBytes , err := crypto .MarshalPrivateKey (pkey )
128
+ if err != nil {
129
+ return err
130
+ }
131
+
132
+ fmt .Println (hex .EncodeToString (privateKeyBytes ))
82
133
}
83
134
84
135
opts := []libp2p.Option {
136
+ network2 .MakeSmuxTransportOption (),
137
+ libp2p .DefaultTransports ,
85
138
libp2p .ListenAddrStrings (cfg .ListenAddresses ... ),
86
139
libp2p .Identity (pkey ),
140
+ libp2p .WithDialTimeout (time .Second * 5 ),
87
141
libp2p .DefaultPeerstore ,
88
- libp2p .NoListenAddrs ,
142
+ libp2p .DisableRelay () ,
89
143
libp2p .Ping (true ),
144
+
90
145
libp2p .UserAgent ("venus-market-proxy" + version .UserVersion ()),
91
146
}
92
147
93
148
h , err := libp2p .New (opts ... )
94
149
if err != nil {
95
150
return err
96
151
}
97
-
98
152
addrInfo , err := peer .AddrInfoFromString (cfg .Backends [0 ])
99
153
if err != nil {
100
154
return err
@@ -105,8 +159,51 @@ func run(cfg *config.ProxyServer) error {
105
159
if err != nil {
106
160
return err
107
161
}
162
+
108
163
defer proxyHost .Close ()
109
164
110
165
proxyHost .Start (context .Background ())
166
+
167
+ //try to connect backends
168
+ go func () {
169
+ timer := time .NewTicker (time .Minute )
170
+ defer timer .Stop ()
171
+ for {
172
+ err = h .Connect (ctx , * addrInfo )
173
+ if err != nil {
174
+ mainLog .Errorf ("connect to %s %v" , addrInfo , err )
175
+ }
176
+ <- timer .C
177
+ }
178
+ }()
179
+
180
+ var libp2pAddrs []string
181
+ for _ , peer := range h .Addrs () {
182
+ libp2pAddrs = append (libp2pAddrs , fmt .Sprintf ("%s/p2p/%s\n " , peer , h .ID ()))
183
+ }
184
+
185
+ mainLog .Infof ("start listen at %v" , libp2pAddrs )
186
+ shutdownChan := make (chan struct {})
187
+ finishCh := utils .MonitorShutdown (shutdownChan )
188
+ <- finishCh
189
+ return nil
190
+ }
191
+
192
+ func genKey (c * cli.Context ) error {
193
+ pkey , _ , err := crypto .GenerateEd25519Key (rand .Reader )
194
+ if err != nil {
195
+ return err
196
+ }
197
+
198
+ privateKeyBytes , err := crypto .MarshalPrivateKey (pkey )
199
+ if err != nil {
200
+ return err
201
+ }
202
+ peerId , err := peer .IDFromPrivateKey (pkey )
203
+ if err != nil {
204
+ return err
205
+ }
206
+ fmt .Println ("PeerId:" , peerId )
207
+ fmt .Println ("Pkey:" , hex .EncodeToString (privateKeyBytes ))
111
208
return nil
112
209
}
0 commit comments