-
Notifications
You must be signed in to change notification settings - Fork 337
/
ttl.go
71 lines (61 loc) · 1.85 KB
/
ttl.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
/*
* 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 ttl
import (
"context"
"github.com/IrineSistiana/mosdns/v4/coremain"
"github.com/IrineSistiana/mosdns/v4/pkg/dnsutils"
"github.com/IrineSistiana/mosdns/v4/pkg/executable_seq"
"github.com/IrineSistiana/mosdns/v4/pkg/query_context"
)
const (
PluginType = "ttl"
)
func init() {
coremain.RegNewPluginFunc(PluginType, Init, func() interface{} { return new(Args) })
}
var _ coremain.ExecutablePlugin = (*ttl)(nil)
type Args struct {
MaximumTTL uint32 `yaml:"maximum_ttl"`
MinimalTTL uint32 `yaml:"minimal_ttl"`
}
type ttl struct {
*coremain.BP
args *Args
}
func Init(bp *coremain.BP, args interface{}) (p coremain.Plugin, err error) {
return newTTL(bp, args.(*Args)), nil
}
func newTTL(bp *coremain.BP, args *Args) coremain.Plugin {
return &ttl{
BP: bp,
args: args,
}
}
func (t *ttl) Exec(ctx context.Context, qCtx *query_context.Context, next executable_seq.ExecutableChainNode) error {
if r := qCtx.R(); r != nil {
if t.args.MaximumTTL > 0 {
dnsutils.ApplyMaximumTTL(r, t.args.MaximumTTL)
}
if t.args.MinimalTTL > 0 {
dnsutils.ApplyMinimalTTL(r, t.args.MinimalTTL)
}
}
return executable_seq.ExecChainNode(ctx, qCtx, next)
}