Skip to content

Commit 8eac00e

Browse files
author
Brian Tiger Chow
committed
feat(gateway-fs) use blocklist in gateway binary
log fix main
1 parent f4a693c commit 8eac00e

File tree

1 file changed

+61
-8
lines changed

1 file changed

+61
-8
lines changed

cmd/ipfs-gateway-fs/main.go

+61-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package main
22

33
import (
4+
"bufio"
45
"errors"
56
"flag"
67
"log"
@@ -17,13 +18,15 @@ import (
1718
)
1819

1920
var (
20-
writable = flag.Bool("writable", false, "enable writing objects (with POST, PUT and DELETE)")
21-
refreshAssetsInterval = flag.Duration("refresh-assets-interval", 30*time.Second, "refresh assets")
22-
garbageCollectInterval = flag.Duration("gc-interval", 24*time.Hour, "frequency of repo garbage collection")
23-
assetsPath = flag.String("assets-path", "", "if provided, periodically adds contents of path to IPFS")
24-
host = flag.String("host", "/ip4/0.0.0.0/tcp/8080", "override the HTTP host listening address")
25-
performGC = flag.Bool("gc", false, "perform garbage collection")
26-
nBitsForKeypair = flag.Int("b", 1024, "number of bits for keypair (if repo is uninitialized)")
21+
blocklistFilepath = flag.String("blocklist", "", "keys that should not be served by the gateway")
22+
writable = flag.Bool("writable", false, "enable writing objects (with POST, PUT and DELETE)")
23+
refreshBlockListInterval = flag.Duration("refresh-blocklist-interval", 30*time.Second, "refresh blocklist")
24+
refreshAssetsInterval = flag.Duration("refresh-assets-interval", 30*time.Second, "refresh assets")
25+
garbageCollectInterval = flag.Duration("gc-interval", 24*time.Hour, "frequency of repo garbage collection")
26+
assetsPath = flag.String("assets-path", "", "if provided, periodically adds contents of path to IPFS")
27+
host = flag.String("host", "/ip4/0.0.0.0/tcp/8080", "override the HTTP host listening address")
28+
performGC = flag.Bool("gc", false, "perform garbage collection")
29+
nBitsForKeypair = flag.Int("b", 1024, "number of bits for keypair (if repo is uninitialized)")
2730
)
2831

2932
func main() {
@@ -77,8 +80,18 @@ func run() error {
7780
}
7881
}
7982

83+
blocklist := &corehttp.BlockList{}
84+
gateway := corehttp.NewGateway(corehttp.GatewayConfig{
85+
Writable: *writable,
86+
BlockList: blocklist,
87+
})
88+
89+
if err := runBlockListWorker(blocklist, *blocklistFilepath); err != nil {
90+
return err
91+
}
92+
8093
opts := []corehttp.ServeOption{
81-
corehttp.GatewayOption(*writable),
94+
gateway.ServeOption(),
8295
}
8396
return corehttp.ListenAndServe(node, *host, opts...)
8497
}
@@ -112,3 +125,43 @@ func runFileServerWorker(ctx context.Context, node *core.IpfsNode) error {
112125
}()
113126
return nil
114127
}
128+
129+
func runBlockListWorker(blocklist *corehttp.BlockList, filepath string) error {
130+
if filepath == "" {
131+
return nil
132+
}
133+
go func() {
134+
for _ = range time.Tick(*refreshBlockListInterval) {
135+
log.Println("updating the blocklist...")
136+
func() { // in a func to allow defer f.Close()
137+
f, err := os.Open(filepath)
138+
if err != nil {
139+
log.Println(err)
140+
}
141+
defer f.Close()
142+
scanner := bufio.NewScanner(f)
143+
blocked := make(map[string]struct{}) // Implement using Bloom Filter hybrid if blocklist gets large
144+
for scanner.Scan() {
145+
t := scanner.Text()
146+
log.Printf("blocking %s...", t)
147+
blocked[t] = struct{}{}
148+
}
149+
150+
// If an error occurred, do not change the existing decider. This
151+
// is to avoid accidentally clearing the list if the deploy is
152+
// botched.
153+
if err := scanner.Err(); err != nil {
154+
log.Println(err)
155+
} else {
156+
blocklist.SetDecider(func(s string) bool {
157+
log.Printf("considering %s...", s)
158+
_, ok := blocked[s]
159+
return !ok
160+
})
161+
log.Printf("updated the blocklist (%d entries)", len(blocked))
162+
}
163+
}()
164+
}
165+
}()
166+
return nil
167+
}

0 commit comments

Comments
 (0)