-
Notifications
You must be signed in to change notification settings - Fork 337
/
redirect.go
113 lines (101 loc) · 2.95 KB
/
redirect.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
/*
* Copyright (C) 2020-2022, IrineSistiana
*
* This file is part of mosdns.
*
* mosdns is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* mosdns is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package redirect
import (
"bytes"
"context"
"github.com/IrineSistiana/mosdns/v4/coremain"
"github.com/IrineSistiana/mosdns/v4/pkg/executable_seq"
"github.com/IrineSistiana/mosdns/v4/pkg/matcher/domain"
"github.com/IrineSistiana/mosdns/v4/pkg/query_context"
"go.uber.org/zap"
)
const PluginType = "redirect"
func init() {
coremain.RegNewPluginFunc(PluginType, Init, func() interface{} { return new(Args) })
}
var _ coremain.ExecutablePlugin = (*redirectPlugin)(nil)
type Args struct {
Rule []string `yaml:"rule"`
}
type redirectPlugin struct {
*coremain.BP
m domain.Matcher[string]
}
func Init(bp *coremain.BP, args interface{}) (p coremain.Plugin, err error) {
return newRedirect(bp, args.(*Args))
}
func newRedirect(bp *coremain.BP, args *Args) (*redirectPlugin, error) {
attrFunc := func(attr string) (v string, err error) {
return v, nil
}
m, err := domain.BatchLoadProvider[string](
args.Rule,
func() domain.WriteableMatcher[string] {
mixMatcher := domain.NewMixMatcher[string]()
mixMatcher.SetDefaultMatcher(domain.MatcherFull)
return mixMatcher
},
attrFunc,
bp.M().GetDataManager(),
func(b []byte) (domain.Matcher[string], error) {
mixMatcher := domain.NewMixMatcher[string]()
mixMatcher.SetDefaultMatcher(domain.MatcherFull)
if err := domain.LoadFromTextReader[string](mixMatcher, bytes.NewReader(b), attrFunc); err != nil {
return nil, err
}
return mixMatcher, nil
},
)
if err != nil {
return nil, err
}
bp.L().Info("redirect rules loaded", zap.Int("length", m.Len()))
return &redirectPlugin{
BP: bp,
m: m,
}, nil
}
func (r *redirectPlugin) Exec(ctx context.Context, qCtx *query_context.Context, next executable_seq.ExecutableChainNode) error {
q := qCtx.Q()
if len(q.Question) != 1 {
return executable_seq.ExecChainNode(ctx, qCtx, next)
}
orgQName := q.Question[0].Name
d, ok := r.m.Match(orgQName)
if !ok {
return executable_seq.ExecChainNode(ctx, qCtx, next)
}
q.Question[0].Name = d
err := executable_seq.ExecChainNode(ctx, qCtx, next)
if r := qCtx.R(); r != nil {
for i := range r.Question {
if r.Question[i].Name == d {
r.Question[i].Name = orgQName
}
}
for _, a := range r.Answer {
h := a.Header()
if h.Name == d {
h.Name = orgQName
}
}
}
return err
}