-
Notifications
You must be signed in to change notification settings - Fork 18
/
cmd-rpc.go
716 lines (661 loc) · 21.1 KB
/
cmd-rpc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
package main
import (
"context"
"fmt"
"io/fs"
"os"
"path/filepath"
"runtime"
"sort"
"sync"
"sync/atomic"
"time"
"github.com/allegro/bigcache/v3"
"github.com/fsnotify/fsnotify"
hugecache "github.com/rpcpool/yellowstone-faithful/huge-cache"
"github.com/rpcpool/yellowstone-faithful/metrics"
splitcarfetcher "github.com/rpcpool/yellowstone-faithful/split-car-fetcher"
"github.com/ryanuber/go-glob"
"github.com/urfave/cli/v2"
"github.com/ybbus/jsonrpc/v3"
"golang.org/x/sync/errgroup"
"k8s.io/klog/v2"
)
func newCmd_rpc() *cli.Command {
var listenOn string
var gsfaOnlySignatures bool
var includePatterns cli.StringSlice
var excludePatterns cli.StringSlice
var watch bool
var pathForProxyForUnknownRpcMethods string
var epochSearchConcurrency int
var epochLoadConcurrency int
var maxCacheSizeMB int
var grpcListenOn string
var lotusAPIAddress string
return &cli.Command{
Name: "rpc",
Usage: "Start a Solana JSON RPC server.",
Description: "Provide multiple epoch config files, and start a Solana JSON RPC that exposes getTransaction, getBlock, and (optionally) getSignaturesForAddress",
ArgsUsage: "<one or more config files or directories containing config files (nested is fine)>",
Before: func(c *cli.Context) error {
return nil
},
Flags: append(lassieFetchFlags,
&cli.StringFlag{
Name: "listen",
Usage: "Listen address",
Value: "", // If empty, JSON RPC server is not started
Destination: &listenOn,
},
&cli.StringFlag{
Name: "grpc-listen",
Usage: "Listen address for gRPC",
Value: "", // If empty, gRPC server is not started
Destination: &grpcListenOn,
},
&cli.BoolFlag{
Name: "gsfa-only-signatures",
Usage: "gSFA: only return signatures",
Value: false,
Destination: &gsfaOnlySignatures,
},
&cli.StringSliceFlag{
Name: "include",
Usage: "Include files or dirs matching the given glob patterns",
Value: cli.NewStringSlice(),
Destination: &includePatterns,
},
&cli.StringSliceFlag{
Name: "exclude",
Usage: "Exclude files or dirs matching the given glob patterns",
Value: cli.NewStringSlice(".git"),
Destination: &excludePatterns,
},
&cli.BoolFlag{
Name: "watch",
Usage: "Watch the config files and directories for changes, and live-(re)load them",
Value: false,
Destination: &watch,
},
&cli.StringFlag{
Name: "proxy",
Usage: "Path to a config file that will be used to proxy unknown RPC methods",
Value: "",
Destination: &pathForProxyForUnknownRpcMethods,
},
&cli.IntFlag{
Name: "epoch-search-concurrency",
Usage: "How many epochs to search in parallel when searching for a signature",
Value: runtime.NumCPU(),
Destination: &epochSearchConcurrency,
},
&cli.IntFlag{
Name: "epoch-load-concurrency",
Usage: "How many epochs to load in parallel when starting the RPC server",
Value: runtime.NumCPU(),
Destination: &epochLoadConcurrency,
},
&cli.IntFlag{
Name: "max-cache",
Usage: "Maximum size of the cache in MB",
Value: 0,
Destination: &maxCacheSizeMB,
},
&cli.StringFlag{
Name: "filecoin-api-address",
Usage: "Address of the filecoin API to find provider info",
Value: defaultLotusAPIAddress,
Destination: &lotusAPIAddress,
},
),
Action: func(c *cli.Context) error {
if listenOn == "" && grpcListenOn == "" {
return cli.Exit("either --listen or --grpc-listen must be provided (or both)", 1)
}
src := c.Args().Slice()
configFiles, err := GetListOfConfigFiles(
src,
includePatterns.Value(),
excludePatterns.Value(),
)
if err != nil {
return cli.Exit(err.Error(), 1)
}
klog.Infof("Found %d config files:", len(configFiles))
for _, configFile := range configFiles {
klog.V(3).Infof(" - %s", configFile)
}
conf := bigcache.DefaultConfig(5 * time.Minute)
conf.HardMaxCacheSize = maxCacheSizeMB
allCache, err := hugecache.NewWithConfig(c.Context, conf)
if err != nil {
return fmt.Errorf("failed to create cache: %w", err)
}
// Load configs:
configs := make(ConfigSlice, 0)
for _, configFile := range configFiles {
config, err := LoadConfig(configFile)
if err != nil {
return cli.Exit(fmt.Sprintf("failed to load config file %q: %s", configFile, err.Error()), 1)
}
configs = append(configs, config)
}
// Validate configs:
if err := configs.Validate(); err != nil {
return cli.Exit(fmt.Sprintf("error validating configs: %s", err.Error()), 1)
}
configs.SortByEpoch()
klog.Infof("Loaded %d epoch configs", len(configs))
klog.Info("Initializing epochs async...")
cl := jsonrpc.NewClient(lotusAPIAddress)
minerInfo := splitcarfetcher.NewMinerInfo(
cl,
24*time.Hour,
5*time.Second,
)
multi := NewMultiEpoch(&Options{
GsfaOnlySignatures: gsfaOnlySignatures,
EpochSearchConcurrency: epochSearchConcurrency,
})
defer func() {
if err := multi.Close(); err != nil {
klog.Errorf("error closing multi-epoch: %s", err.Error())
}
}()
startedInitiatingEpochsAt := time.Now()
go func() {
// Sort epochs by epoch number:
sort.Slice(configs, func(i, j int) bool {
return *configs[i].Epoch < *configs[j].Epoch
})
numFailed := new(atomic.Int32)
numSucceeded := new(atomic.Int32)
wg := new(errgroup.Group)
wg.SetLimit(epochLoadConcurrency)
for confIndex := range configs {
config := configs[confIndex]
wg.Go(func() error {
epochNum := *config.Epoch
err := func() error {
epoch, err := NewEpochFromConfig(
config,
c,
allCache,
minerInfo,
)
if err != nil {
return fmt.Errorf("failed to create epoch from config %q: %s", config.ConfigFilepath(), err.Error())
}
if err := multi.AddEpoch(epoch.Epoch(), epoch); err != nil {
return fmt.Errorf("failed to add epoch %d: %s", epoch.Epoch(), err.Error())
}
return nil
}()
if err != nil {
metrics.EpochsAvailable.WithLabelValues(fmt.Sprintf("%d", epochNum)).Set(0)
klog.Error(err)
numFailed.Add(1)
// NOTE: DO NOT return the error here, as we want to continue loading other epochs
return nil
}
metrics.EpochsAvailable.WithLabelValues(fmt.Sprintf("%d", epochNum)).Set(1)
numSucceeded.Add(1)
return nil
})
}
if err := wg.Wait(); err != nil {
klog.Errorf("fatal error initializing epochs: %s", err.Error())
}
tookInitializingEpochs := time.Since(startedInitiatingEpochsAt)
klog.Infof("Initialized %d/%d epochs in %s", numSucceeded.Load(), len(configs), tookInitializingEpochs)
}()
if watch {
dirs, err := GetListOfDirectories(
src,
includePatterns.Value(),
excludePatterns.Value(),
)
if err != nil {
return cli.Exit(err.Error(), 1)
}
klog.Infof("Found %d directories; will start watching them for changes ...", len(dirs))
for _, dir := range dirs {
klog.V(3).Infof(" - %s", dir)
}
ctx, cancel := context.WithCancel(c.Context)
defer cancel()
err = onFileChanged(
ctx,
epochLoadConcurrency,
dirs,
func(event fsnotify.Event) {
if !isJSONFile(event.Name) && !isYAMLFile(event.Name) {
klog.V(3).Infof("File %q is not a JSON or YAML file; do nothing", event.Name)
return
}
klog.V(3).Infof("File event: name=%q, op=%q", event.Name, event.Op)
if event.Op != fsnotify.Remove && multi.HasEpochWithSameHashAsFile(event.Name) {
klog.V(3).Infof("Epoch with same hash as file %q is already loaded; do nothing", event.Name)
return
}
switch event.Op {
case fsnotify.Write:
{
startedAt := time.Now()
klog.V(3).Infof("File %q was modified; processing...", event.Name)
// find the config file, load it, and update the epoch (replace)
config, err := LoadConfig(event.Name)
if err != nil {
klog.Errorf("error loading config file %q: %s", event.Name, err.Error())
return
}
epoch, err := NewEpochFromConfig(config, c, allCache, minerInfo)
if err != nil {
klog.Errorf("error creating epoch from config file %q: %s", event.Name, err.Error())
return
}
err = multi.ReplaceOrAddEpoch(epoch.Epoch(), epoch)
if err != nil {
klog.Errorf("error replacing epoch %d: %s", epoch.Epoch(), err.Error())
return
}
klog.V(2).Infof("Epoch %d added/replaced in %s", epoch.Epoch(), time.Since(startedAt))
metrics.EpochsAvailable.WithLabelValues(fmt.Sprintf("%d", epoch.Epoch())).Set(1)
}
case fsnotify.Create:
{
startedAt := time.Now()
klog.V(3).Infof("File %q was created; processing...", event.Name)
// find the config file, load it, and add it to the multi-epoch (if not already added)
config, err := LoadConfig(event.Name)
if err != nil {
klog.Errorf("error loading config file %q: %s", event.Name, err.Error())
return
}
epoch, err := NewEpochFromConfig(config, c, allCache, minerInfo)
if err != nil {
klog.Errorf("error creating epoch from config file %q: %s", event.Name, err.Error())
return
}
err = multi.AddEpoch(epoch.Epoch(), epoch)
if err != nil {
klog.Errorf("error adding epoch %d: %s", epoch.Epoch(), err.Error())
return
}
klog.V(2).Infof("Epoch %d added in %s", epoch.Epoch(), time.Since(startedAt))
metrics.EpochsAvailable.WithLabelValues(fmt.Sprintf("%d", epoch.Epoch())).Set(1)
}
case fsnotify.Remove:
{
startedAt := time.Now()
klog.V(3).Infof("File %q was removed; processing...", event.Name)
// find the epoch that corresponds to this file, and remove it (if any)
epNumber, err := multi.RemoveEpochByConfigFilepath(event.Name)
if err != nil {
klog.Errorf("error removing epoch for config file %q: %s", event.Name, err.Error())
}
klog.V(2).Infof("Epoch %d removed in %s", epNumber, time.Since(startedAt))
metrics.EpochsAvailable.WithLabelValues(fmt.Sprintf("%d", epNumber)).Set(0)
}
case fsnotify.Rename:
klog.V(3).Infof("File %q was renamed; do nothing", event.Name)
case fsnotify.Chmod:
klog.V(3).Infof("File %q had its permissions changed; do nothing", event.Name)
default:
klog.V(3).Infof("File %q had an unknown event %q; do nothing", event.Name, event.Op)
}
})
if err != nil {
return cli.Exit(err.Error(), 1)
}
}
var listenerConfig *ListenerConfig
if pathForProxyForUnknownRpcMethods != "" {
proxyConfig, err := LoadProxyConfig(pathForProxyForUnknownRpcMethods)
if err != nil {
return cli.Exit(fmt.Sprintf("failed to load proxy config file %q: %s", pathForProxyForUnknownRpcMethods, err.Error()), 1)
}
listenerConfig = &ListenerConfig{
ProxyConfig: proxyConfig,
}
}
allListeners := new(errgroup.Group)
if grpcListenOn != "" {
allListeners.Go(func() error {
err := multi.ListenAndServeGRPC(c.Context, grpcListenOn)
if err != nil {
return fmt.Errorf("failed to start gRPC server: %w", err)
}
return nil
})
}
if listenOn != "" {
allListeners.Go(func() error {
err := multi.ListenAndServe(c.Context, listenOn, listenerConfig)
if err != nil {
return fmt.Errorf("failed to start JSON RPC server: %w", err)
}
return nil
})
}
return allListeners.Wait()
},
}
}
// create a map that tracks files that are already being processed because of an event:
// this is to avoid processing the same file multiple times
// (e.g. if a file is create and then modified, we don't want to process it twice)
type fileProcessingTracker struct {
mu sync.Mutex
m map[string]struct{}
}
func newFileProcessingTracker() *fileProcessingTracker {
return &fileProcessingTracker{
m: make(map[string]struct{}),
}
}
func (f *fileProcessingTracker) isBeingProcessedOrAdd(filename string) bool {
f.mu.Lock()
defer f.mu.Unlock()
_, ok := f.m[filename]
if !ok {
f.m[filename] = struct{}{}
}
// if ok is true, then the file is already being processed
return ok
}
func (f *fileProcessingTracker) removeFromList(filename string) {
f.mu.Lock()
defer f.mu.Unlock()
delete(f.m, filename)
}
// - get the list of provided arguments, and distinguish between files and directories
// - load all the config files, etc.
// - start a goroutine that monitors the config files for changes
// - when a config file changes, reload it and update the epoch
// - start a goroutine that monitors the directories and subdirectories for changes (new files, deleted files, etc.)
// - is only watching directories sufficient? or do we need to watch files too?
func onFileChanged(
ctx context.Context,
epochLoadConcurrency int,
dirs []string,
callback func(fsnotify.Event),
) error {
// monitor a directory for file changes
watcher, err := fsnotify.NewWatcher()
if err != nil {
return fmt.Errorf("failed to create watcher: %w", err)
}
// start watching the directories
for _, path := range dirs {
err = watcher.Add(path)
if err != nil {
return fmt.Errorf("failed to add path %q to watcher: %w", path, err)
}
}
// start a goroutine to handle events
go func() {
defer watcher.Close()
tracker := newFileProcessingTracker()
wg := new(errgroup.Group)
wg.SetLimit(epochLoadConcurrency)
defer wg.Wait()
for {
select {
case <-ctx.Done():
return
case event, ok := <-watcher.Events:
if !ok {
return
}
wg.Go(func() error {
if tracker.isBeingProcessedOrAdd(event.Name) {
klog.V(3).Infof("File %q is already being processed; do nothing", event.Name)
return nil
}
defer tracker.removeFromList(event.Name)
callback(event)
return nil
})
case err, ok := <-watcher.Errors:
if !ok {
return
}
klog.Errorf("error watching files: %v", err)
}
}
}()
return nil
}
// GetListOfDirectories returns a list of all the directories in the given directories and subdirectories
// that match one of the given patterns.
// The directories are first matched against the include patterns, and then against the exclude patterns.
// If no include patterns are provided, then all directories are included.
// If no exclude patterns are provided, then no directories are excluded.
// The `.git` directory is always excluded.
func GetListOfDirectories(src []string, includePatterns []string, excludePatterns []string) ([]string, error) {
var allDirs []string
for _, srcItem := range src {
isDir, err := isDirectory(srcItem)
if err != nil {
return nil, err
}
if isDir {
dirs, err := getDeepDirectories(srcItem, includePatterns, excludePatterns)
if err != nil {
return nil, err
}
allDirs = append(allDirs, dirs...)
} else {
if matchesWithIncludeExcludePatterns(srcItem, includePatterns, excludePatterns) {
allDirs = append(allDirs, srcItem)
}
}
}
deduped := deduplicate(allDirs)
return deduped, nil
}
func matchesWithIncludeExcludePatterns(item string, includePatterns []string, excludePatterns []string) bool {
if len(includePatterns) == 0 && len(excludePatterns) == 0 {
return true
}
if len(includePatterns) > 0 {
_, ok := hasMatch(item, includePatterns)
if !ok {
return false
}
}
if len(excludePatterns) > 0 {
_, ok := hasMatch(item, excludePatterns)
if ok {
return false
}
}
return true
}
func getDeepDirectories(dir string, includePatterns []string, excludePatterns []string) ([]string, error) {
ok, err := exists(dir)
if err != nil {
return nil, fmt.Errorf("error checking if path %q exists: %w", dir, err)
}
if !ok {
return nil, fmt.Errorf("path %q does not exist", dir)
}
isDir, err := isDirectory(dir)
if err != nil {
return nil, fmt.Errorf("error checking if path %q is a directory: %w", dir, err)
}
if !isDir {
return nil, fmt.Errorf("path %q is not a directory", dir)
}
dirs, err := walkDirectoryMatchingSubdirectories(dir, includePatterns, excludePatterns)
if err != nil {
return nil, fmt.Errorf("error walking directory %q: %w", dir, err)
}
return dirs, nil
}
// GetListOfConfigFiles returns a list of all the config files in the given directories and subdirectories
// that match one of the given patterns.
// The files are first matched against the file extension patterns, then against the include patterns,
// and finally against the exclude patterns.
func GetListOfConfigFiles(src []string, includePatterns []string, excludePatterns []string) ([]string, error) {
fileExtensionPatterns := []string{"*.yaml", "*.yml", "*.json"}
var allFiles []string
for _, srcItem := range src {
isDir, err := isDirectory(srcItem)
if err != nil {
return nil, err
}
if isDir {
files, err := getDeepFilesFromDirectory(srcItem, func(entry string) bool {
return itemMatchesAnyPattern(entry, fileExtensionPatterns...) && matchesWithIncludeExcludePatterns(entry, includePatterns, excludePatterns)
})
if err != nil {
return nil, err
}
allFiles = append(allFiles, files...)
} else {
if itemMatchesAnyPattern(srcItem, fileExtensionPatterns...) && matchesWithIncludeExcludePatterns(srcItem, includePatterns, excludePatterns) {
allFiles = append(allFiles, srcItem)
}
}
}
return deduplicate(allFiles), nil
}
// getDeepFilesFromDirectory returns a list of all the files in the given directory and its subdirectories
// that match one of the given patterns.
func getDeepFilesFromDirectory(dir string, filter func(string) bool) ([]string, error) {
ok, err := exists(dir)
if err != nil {
return nil, fmt.Errorf("error checking if path %q exists: %w", dir, err)
}
if !ok {
return nil, fmt.Errorf("path %q does not exist", dir)
}
isDir, err := isDirectory(dir)
if err != nil {
return nil, fmt.Errorf("error checking if path %q is a directory: %w", dir, err)
}
if !isDir {
return nil, fmt.Errorf("path %q is not a directory", dir)
}
files, err := walkDirectoryMatchingFiles(dir, filter)
if err != nil {
return nil, fmt.Errorf("error walking directory %q: %w", dir, err)
}
return files, nil
}
// wallk a given directory and return a list of all the files that match the given patterns
func walkDirectoryMatchingFiles(dir string, filter func(string) bool) ([]string, error) {
var matching []string
err := fs.WalkDir(os.DirFS(dir), ".", func(path string, d fs.DirEntry, err error) error {
if err != nil {
klog.Errorf("error walking path %q: %v", path, err)
return err
}
if d.IsDir() {
return nil
}
path, err = filepath.Abs(filepath.Join(dir, path))
if err != nil {
return err
}
matches := filter(path)
if matches {
matching = append(matching, path)
}
return nil
})
if err != nil {
return nil, fmt.Errorf("error walking directory %q: %w", dir, err)
}
return matching, nil
}
func walkDirectoryMatchingSubdirectories(dir string, includePatterns []string, excludePatterns []string) ([]string, error) {
var matching []string
err := fs.WalkDir(os.DirFS(dir), ".", func(path string, d fs.DirEntry, err error) error {
if err != nil {
klog.Errorf("error walking path %q: %v", path, err)
return err
}
if !d.IsDir() {
return nil
}
path, err = filepath.Abs(filepath.Join(dir, path))
if err != nil {
return err
}
{
// if matches `.git` then exclude it
if d.IsDir() && (d.Name() == ".git") {
return filepath.SkipDir
}
}
matches := matchesWithIncludeExcludePatterns(path, includePatterns, excludePatterns)
if matches {
matching = append(matching, path)
}
return nil
})
if err != nil {
return nil, fmt.Errorf("error walking directory %q: %w", dir, err)
}
return matching, nil
}
func selectMatching(items []string, patterns ...string) []string {
var matching []string
for _, item := range items {
matches := itemMatchesAnyPattern(item, patterns...)
if matches {
matching = append(matching, item)
}
}
return matching
}
func selectNotMatching(items []string, patterns ...string) []string {
var matching []string
for _, item := range items {
matches := itemMatchesAnyPattern(item, patterns...)
if !matches {
matching = append(matching, item)
}
}
return matching
}
func itemMatchesAnyPattern(item string, patterns ...string) bool {
_, ok := hasMatch(item, patterns)
return ok
}
// hasMatch finds the matching pattern (glob) to which the provided item matches.
func hasMatch(item string, patterns []string) (string, bool) {
if item == "" {
return "", false
}
// sort the patterns in increasing length order:
sort.Strings(patterns)
// first, try to find a precise match:
for _, pattern := range patterns {
if pattern == item {
return pattern, true
}
}
// ... then look for a glob match:
for _, pattern := range patterns {
if isMatch := glob.Glob(pattern, item); isMatch {
return pattern, true
}
}
return "", false
}
func deduplicate(items []string) []string {
seen := make(map[string]struct{})
var deduped []string
for _, item := range items {
if _, ok := seen[item]; !ok {
seen[item] = struct{}{}
deduped = append(deduped, item)
}
}
return deduped
}