This commit is contained in:
世界 2022-04-15 15:04:45 +08:00
parent 04917323e6
commit 5991cfc072
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
13 changed files with 177 additions and 93 deletions

View file

@ -1,52 +0,0 @@
package wapd
import (
"fmt"
"net/netip"
"github.com/insomniacslk/dhcp/dhcpv4"
_ "github.com/insomniacslk/dhcp/dhcpv6"
"github.com/sagernet/sing/common/buf"
E "github.com/sagernet/sing/common/exceptions"
M "github.com/sagernet/sing/common/metadata"
"github.com/sagernet/sing/transport/udp"
"github.com/sirupsen/logrus"
)
type Listener struct {
*udp.Listener
E.Handler
option dhcpv4.Option
}
func NewListener(bind netip.Addr, proxyURL string, errorHandler E.Handler) *Listener {
l := &Listener{
Handler: errorHandler,
option: dhcpv4.Option{
Code: OptionCode,
Value: dhcpv4.String(fmt.Sprint(proxyURL)),
},
}
l.Listener = udp.NewUDPListener(netip.AddrPortFrom(bind, dhcpv4.ServerPort), l)
return l
}
func (l *Listener) NewPacket(packet *buf.Buffer, metadata M.Metadata) error {
request, err := dhcpv4.FromBytes(packet.Bytes())
if err != nil {
return E.Cause(err, "bad dhcpv4 packet")
}
logrus.Trace("DHCPv4 request ", request)
if !request.IsOptionRequested(OptionCode) {
return nil
}
reply, err := dhcpv4.NewReplyFromRequest(request, dhcpv4.WithOption(l.option))
if err != nil {
return E.Cause(err, "create response")
}
_, err = l.WriteTo(reply.ToBytes(), metadata.Source.UDPAddr())
if err != nil {
return E.Cause(err, "write response")
}
return nil
}

View file

@ -1,13 +0,0 @@
package wapd
var OptionCode = optionCode{}
type optionCode struct{}
func (C optionCode) Code() uint8 {
return 252
}
func (C optionCode) String() string {
return "Web Proxy Auto-Discovery Protocol"
}