Skip to content

Commit

Permalink
add plugin forward_edns0opt
Browse files Browse the repository at this point in the history
  • Loading branch information
IrineSistiana committed Oct 30, 2023
1 parent 3dc2cab commit 3ef1ca1
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugin/enabled_plugins.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import (
_ "github.com/IrineSistiana/mosdns/v5/plugin/executable/dual_selector"
_ "github.com/IrineSistiana/mosdns/v5/plugin/executable/ecs_handler"
_ "github.com/IrineSistiana/mosdns/v5/plugin/executable/forward"
_ "github.com/IrineSistiana/mosdns/v5/plugin/executable/forward_edns0opt"
_ "github.com/IrineSistiana/mosdns/v5/plugin/executable/hosts"
_ "github.com/IrineSistiana/mosdns/v5/plugin/executable/ipset"
_ "github.com/IrineSistiana/mosdns/v5/plugin/executable/metrics_collector"
Expand Down
82 changes: 82 additions & 0 deletions plugin/executable/forward_edns0opt/forwarder.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/*
* 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 forwardedns0opt

import (
"context"
"strconv"
"strings"

"github.com/IrineSistiana/mosdns/v5/pkg/query_context"
"github.com/IrineSistiana/mosdns/v5/plugin/executable/sequence"
)

const PluginType = "forward_edns0opt"

func init() {
sequence.MustRegExecQuickSetup(PluginType, QuickSetup)
}

var _ sequence.RecursiveExecutable = (*forwarder)(nil)

type forwarder struct {
forwardTypCodes map[uint32]struct{}
}

func (f *forwarder) Exec(ctx context.Context, qCtx *query_context.Context, next sequence.ChainWalker) error {
qOpt := qCtx.QOpt()
clientOpt := qCtx.ClientOpt()
if clientOpt != nil {
for _, o := range clientOpt.Option {
if _, ok := f.forwardTypCodes[uint32(o.Option())]; ok {
qOpt.Option = append(qOpt.Option, o)
}
}
}

err := next.ExecNext(ctx, qCtx)
if err != nil {
return err
}

upstreamOpt := qCtx.UpstreamOpt()
respOpt := qCtx.RespOpt()
if upstreamOpt != nil && respOpt != nil {
for _, o := range upstreamOpt.Option {
if _, ok := f.forwardTypCodes[uint32(o.Option())]; ok {
respOpt.Option = append(respOpt.Option, o)
}
}
}
return nil
}

// Format: [DNS EDNS0 Option Code] ...
func QuickSetup(_ sequence.BQ, numbers string) (any, error) {
m := make(map[uint32]struct{})
for _, s := range strings.Fields(numbers) {
n, err := strconv.ParseUint(s, 10, 16)
if err != nil {
return nil, err
}
m[uint32(n)] = struct{}{}
}
return &forwarder{forwardTypCodes: m}, nil
}

0 comments on commit 3ef1ca1

Please sign in to comment.