sys_bpf.go 611 B

12345678910111213141516171819202122232425
  1. // Copyright 2017 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build linux
  5. // +build linux
  6. package ipv4
  7. import (
  8. "unsafe"
  9. "golang.org/x/net/bpf"
  10. "golang.org/x/net/internal/socket"
  11. "golang.org/x/sys/unix"
  12. )
  13. func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstruction) error {
  14. prog := unix.SockFprog{
  15. Len: uint16(len(f)),
  16. Filter: (*unix.SockFilter)(unsafe.Pointer(&f[0])),
  17. }
  18. b := (*[unix.SizeofSockFprog]byte)(unsafe.Pointer(&prog))[:unix.SizeofSockFprog]
  19. return so.Set(c, b)
  20. }