dae/control/routing_matcher_builder.go

267 lines
7.1 KiB
Go
Raw Normal View History

2023-01-23 18:54:21 +07:00
/*
* SPDX-License-Identifier: AGPL-3.0-only
2023-01-28 12:56:06 +07:00
* Copyright (c) since 2022, v2rayA Organization <team@v2raya.org>
2023-01-23 18:54:21 +07:00
*/
package control
import (
"encoding/binary"
2023-01-23 18:54:21 +07:00
"fmt"
"github.com/cilium/ebpf"
2023-01-23 19:01:24 +07:00
"github.com/v2rayA/dae/common"
"github.com/v2rayA/dae/common/consts"
"github.com/v2rayA/dae/component/routing"
"github.com/v2rayA/dae/pkg/config_parser"
2023-01-23 18:54:21 +07:00
"net/netip"
"strconv"
)
type DomainSet struct {
Key string
RuleIndex int
Domains []string
}
2023-01-27 01:10:27 +07:00
2023-01-23 18:54:21 +07:00
type RoutingMatcherBuilder struct {
*routing.DefaultMatcherBuilder
outboundName2Id map[string]uint8
bpf *bpfObjects
2023-02-04 10:38:01 +07:00
rules []bpfMatchSet
2023-01-23 18:54:21 +07:00
SimulatedLpmTries [][]netip.Prefix
SimulatedDomainSet []DomainSet
Final string
err error
}
func NewRoutingMatcherBuilder(outboundName2Id map[string]uint8, bpf *bpfObjects) *RoutingMatcherBuilder {
return &RoutingMatcherBuilder{outboundName2Id: outboundName2Id, bpf: bpf}
}
func (b *RoutingMatcherBuilder) OutboundToId(outbound string) uint8 {
var outboundId uint8
switch outbound {
2023-02-12 22:11:40 +07:00
case routing.FakeOutbound_MUST_DIRECT:
outboundId = uint8(consts.OutboundMustDirect)
case routing.FakeOutbound_AND:
2023-01-23 18:54:21 +07:00
outboundId = uint8(consts.OutboundLogicalAnd)
case routing.FakeOutbound_OR:
outboundId = uint8(consts.OutboundLogicalOr)
default:
2023-01-23 18:54:21 +07:00
var ok bool
outboundId, ok = b.outboundName2Id[outbound]
if !ok {
b.err = fmt.Errorf("%v not defined in group", strconv.Quote(outbound))
2023-01-23 18:54:21 +07:00
}
}
return outboundId
}
func (b *RoutingMatcherBuilder) AddDomain(f *config_parser.Function, key string, values []string, outbound string) {
2023-01-23 18:54:21 +07:00
if b.err != nil {
return
}
switch key {
case consts.RoutingDomain_Regex,
consts.RoutingDomain_Full,
consts.RoutingDomain_Keyword,
consts.RoutingDomain_Suffix:
default:
b.err = fmt.Errorf("AddDomain: unsupported key: %v", key)
return
}
b.SimulatedDomainSet = append(b.SimulatedDomainSet, DomainSet{
Key: key,
RuleIndex: len(b.rules),
Domains: values,
})
2023-02-04 10:38:01 +07:00
b.rules = append(b.rules, bpfMatchSet{
Type: uint8(consts.MatchType_DomainSet),
Not: f.Not,
2023-01-23 18:54:21 +07:00
Outbound: b.OutboundToId(outbound),
})
}
func (b *RoutingMatcherBuilder) AddSourceMac(f *config_parser.Function, macAddrs [][6]byte, outbound string) {
if b.err != nil {
return
}
var addr16 [16]byte
values := make([]netip.Prefix, 0, len(macAddrs))
for _, mac := range macAddrs {
copy(addr16[10:], mac[:])
prefix := netip.PrefixFrom(netip.AddrFrom16(addr16), 128)
values = append(values, prefix)
}
lpmTrieIndex := len(b.SimulatedLpmTries)
b.SimulatedLpmTries = append(b.SimulatedLpmTries, values)
2023-02-04 10:38:01 +07:00
set := bpfMatchSet{
Value: [16]byte{},
Type: uint8(consts.MatchType_Mac),
Not: f.Not,
Outbound: b.OutboundToId(outbound),
}
binary.LittleEndian.PutUint32(set.Value[:], uint32(lpmTrieIndex))
b.rules = append(b.rules, set)
}
func (b *RoutingMatcherBuilder) AddIp(f *config_parser.Function, values []netip.Prefix, outbound string) {
2023-01-23 18:54:21 +07:00
if b.err != nil {
return
}
lpmTrieIndex := len(b.SimulatedLpmTries)
b.SimulatedLpmTries = append(b.SimulatedLpmTries, values)
2023-02-04 10:38:01 +07:00
set := bpfMatchSet{
Value: [16]byte{},
Type: uint8(consts.MatchType_IpSet),
Not: f.Not,
2023-01-23 18:54:21 +07:00
Outbound: b.OutboundToId(outbound),
}
binary.LittleEndian.PutUint32(set.Value[:], uint32(lpmTrieIndex))
b.rules = append(b.rules, set)
2023-01-23 18:54:21 +07:00
}
2023-01-29 10:19:58 +07:00
func (b *RoutingMatcherBuilder) AddPort(f *config_parser.Function, values [][2]uint16, _outbound string) {
for i, value := range values {
outbound := routing.FakeOutbound_OR
if i == len(values)-1 {
outbound = _outbound
}
2023-02-04 10:38:01 +07:00
b.rules = append(b.rules, bpfMatchSet{
Type: uint8(consts.MatchType_Port),
Value: _bpfPortRange{
PortStart: value[0],
PortEnd: value[1],
}.Encode(),
Not: f.Not,
Outbound: b.OutboundToId(outbound),
})
}
}
func (b *RoutingMatcherBuilder) AddSourceIp(f *config_parser.Function, values []netip.Prefix, outbound string) {
if b.err != nil {
return
}
lpmTrieIndex := len(b.SimulatedLpmTries)
b.SimulatedLpmTries = append(b.SimulatedLpmTries, values)
2023-02-04 10:38:01 +07:00
set := bpfMatchSet{
Value: [16]byte{},
Type: uint8(consts.MatchType_SourceIpSet),
Not: f.Not,
Outbound: b.OutboundToId(outbound),
}
binary.LittleEndian.PutUint32(set.Value[:], uint32(lpmTrieIndex))
b.rules = append(b.rules, set)
}
2023-01-29 10:19:58 +07:00
func (b *RoutingMatcherBuilder) AddSourcePort(f *config_parser.Function, values [][2]uint16, _outbound string) {
for i, value := range values {
outbound := routing.FakeOutbound_OR
if i == len(values)-1 {
outbound = _outbound
}
2023-02-04 10:38:01 +07:00
b.rules = append(b.rules, bpfMatchSet{
Type: uint8(consts.MatchType_SourcePort),
Value: _bpfPortRange{
PortStart: value[0],
PortEnd: value[1],
}.Encode(),
Not: f.Not,
Outbound: b.OutboundToId(outbound),
})
}
}
func (b *RoutingMatcherBuilder) AddL4Proto(f *config_parser.Function, values consts.L4ProtoType, outbound string) {
if b.err != nil {
return
}
2023-02-04 10:38:01 +07:00
b.rules = append(b.rules, bpfMatchSet{
Value: [16]byte{byte(values)},
Type: uint8(consts.MatchType_L4Proto),
Not: f.Not,
Outbound: b.OutboundToId(outbound),
})
}
func (b *RoutingMatcherBuilder) AddIpVersion(f *config_parser.Function, values consts.IpVersionType, outbound string) {
if b.err != nil {
return
}
2023-02-04 10:38:01 +07:00
b.rules = append(b.rules, bpfMatchSet{
Value: [16]byte{byte(values)},
Type: uint8(consts.MatchType_IpVersion),
Not: f.Not,
Outbound: b.OutboundToId(outbound),
})
}
func (b *RoutingMatcherBuilder) AddProcessName(f *config_parser.Function, values [][consts.TaskCommLen]byte, _outbound string) {
for i, value := range values {
outbound := routing.FakeOutbound_OR
if i == len(values)-1 {
outbound = _outbound
}
2023-02-04 10:38:01 +07:00
matchSet := bpfMatchSet{
Type: uint8(consts.MatchType_ProcessName),
Not: f.Not,
Outbound: b.OutboundToId(outbound),
}
copy(matchSet.Value[:], value[:])
b.rules = append(b.rules, matchSet)
}
}
2023-01-23 18:54:21 +07:00
func (b *RoutingMatcherBuilder) AddFinal(outbound string) {
if b.err != nil {
return
}
2023-01-23 18:54:21 +07:00
b.Final = outbound
2023-02-04 10:38:01 +07:00
b.rules = append(b.rules, bpfMatchSet{
Type: uint8(consts.MatchType_Final),
2023-01-23 18:54:21 +07:00
Outbound: b.OutboundToId(outbound),
})
}
func (b *RoutingMatcherBuilder) Build() (err error) {
if b.err != nil {
return b.err
}
// Update lpm_array_map.
for i, cidrs := range b.SimulatedLpmTries {
2023-01-28 10:47:02 +07:00
var keys []_bpfLpmKey
2023-01-23 18:54:21 +07:00
var values []uint32
for _, cidr := range cidrs {
keys = append(keys, cidrToBpfLpmKey(cidr))
values = append(values, 1)
}
2023-01-27 01:10:27 +07:00
m, err := b.bpf.newLpmMap(keys, values)
2023-01-23 18:54:21 +07:00
if err != nil {
2023-01-27 01:10:27 +07:00
return fmt.Errorf("newLpmMap: %w", err)
2023-01-23 18:54:21 +07:00
}
2023-02-09 11:26:44 +07:00
// We cannot invoke BpfMapBatchUpdate when value is ebpf.Map.
2023-01-23 18:54:21 +07:00
if err = b.bpf.LpmArrayMap.Update(uint32(i), m, ebpf.UpdateAny); err != nil {
m.Close()
return fmt.Errorf("Update: %w", err)
}
m.Close()
}
2023-01-27 01:10:27 +07:00
// Write routings.
// Final rule MUST be the last.
if b.rules[len(b.rules)-1].Type != uint8(consts.MatchType_Final) {
2023-01-27 01:10:27 +07:00
b.err = fmt.Errorf("final rule MUST be the last")
return b.err
}
2023-01-23 18:54:21 +07:00
routingsLen := uint32(len(b.rules))
routingsKeys := common.ARangeU32(routingsLen)
2023-02-09 11:26:44 +07:00
if _, err = BpfMapBatchUpdate(b.bpf.RoutingMap, routingsKeys, b.rules, &ebpf.BatchOptions{
2023-01-23 18:54:21 +07:00
ElemFlags: uint64(ebpf.UpdateAny),
}); err != nil {
2023-02-09 11:26:44 +07:00
return fmt.Errorf("BpfMapBatchUpdate: %w", err)
2023-01-23 18:54:21 +07:00
}
return nil
}