forked from things-go/go-socks5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruleset.go
48 lines (40 loc) · 1.24 KB
/
ruleset.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
package socks5
import (
"context"
"github.com/things-go/go-socks5/statute"
)
// RuleSet is used to provide custom rules to allow or prohibit actions
type RuleSet interface {
Allow(ctx context.Context, req *Request) (context.Context, bool)
}
// PermitCommand is an implementation of the RuleSet which
// enables filtering supported commands
type PermitCommand struct {
EnableConnect bool
EnableBind bool
EnableAssociate bool
}
// NewPermitNone returns a RuleSet which disallows all types of connections
func NewPermitNone() RuleSet {
return &PermitCommand{false, false, false}
}
// NewPermitAll returns a RuleSet which allows all types of connections
func NewPermitAll() RuleSet {
return &PermitCommand{true, true, true}
}
// NewPermitConnAndAss returns a RuleSet which allows Connect and Associate connection
func NewPermitConnAndAss() RuleSet {
return &PermitCommand{true, false, true}
}
// Allow implement interface RuleSet
func (p *PermitCommand) Allow(ctx context.Context, req *Request) (context.Context, bool) {
switch req.Command {
case statute.CommandConnect:
return ctx, p.EnableConnect
case statute.CommandBind:
return ctx, p.EnableBind
case statute.CommandAssociate:
return ctx, p.EnableAssociate
}
return ctx, false
}