2022-07-16 12:01:02 +08:00
|
|
|
package sniff
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/binary"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
|
|
)
|
|
|
|
|
2024-07-07 15:45:50 +08:00
|
|
|
func STUNMessage(_ context.Context, metadata *adapter.InboundContext, packet []byte) error {
|
2022-07-16 12:01:02 +08:00
|
|
|
pLen := len(packet)
|
|
|
|
if pLen < 20 {
|
2024-07-07 15:45:50 +08:00
|
|
|
return os.ErrInvalid
|
2022-07-16 12:01:02 +08:00
|
|
|
}
|
|
|
|
if binary.BigEndian.Uint32(packet[4:8]) != 0x2112A442 {
|
2024-07-07 15:45:50 +08:00
|
|
|
return os.ErrInvalid
|
2022-07-16 12:01:02 +08:00
|
|
|
}
|
|
|
|
if len(packet) < 20+int(binary.BigEndian.Uint16(packet[2:4])) {
|
2024-07-07 15:45:50 +08:00
|
|
|
return os.ErrInvalid
|
2022-07-16 12:01:02 +08:00
|
|
|
}
|
2024-07-07 15:45:50 +08:00
|
|
|
metadata.Protocol = C.ProtocolSTUN
|
|
|
|
return nil
|
2022-07-16 12:01:02 +08:00
|
|
|
}
|