-
Notifications
You must be signed in to change notification settings - Fork 4.3k
feat: Add Support for FreeBSD #2885
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
RockLakeGrass
wants to merge
5
commits into
MetaCubeX:Alpha
Choose a base branch
from
RockLakeGrass:Alpha
base: Alpha
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c352d65
Add Support for FreeBSD
RockLakeGrass f60322e
Merge branch 'MetaCubeX:Alpha' into Alpha
RockLakeGrass 3923a3b
Merge branch 'MetaCubeX:Alpha' into Alpha
RockLakeGrass 39f395a
Merge branch 'MetaCubeX:Alpha' into Alpha
RockLakeGrass 6c4a481
Fix issue when poweroff or log out.
RockLakeGrass File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| package dialer | ||
|
|
||
| import ( | ||
| "context" | ||
| "net" | ||
| "net/netip" | ||
| "syscall" | ||
|
|
||
| "golang.org/x/sys/unix" | ||
| ) | ||
|
|
||
| // directFib is the alternate routing table (FIB) that sing-tun populates with | ||
| // the original physical routes while TUN auto-route takes over the default FIB. | ||
| // Binding DIRECT sockets to this FIB makes their traffic egress the physical | ||
| // interface instead of looping back through the tun device. | ||
| // | ||
| // FreeBSD has neither Linux's SO_BINDTODEVICE nor macOS's IP_BOUND_IF; SO_SETFIB | ||
| // is the platform's mechanism for steering a socket onto an alternate routing | ||
| // table, so it is what we use to prevent the DIRECT-outbound loopback. | ||
| const directFib = 1 | ||
|
|
||
| func bindControl(fib int) controlFn { | ||
| return func(ctx context.Context, network, address string, c syscall.RawConn) (err error) { | ||
| addrPort, err := netip.ParseAddrPort(address) | ||
| if err == nil && !addrPort.Addr().IsGlobalUnicast() { | ||
| return | ||
| } | ||
|
|
||
| var innerErr error | ||
| err = c.Control(func(fd uintptr) { | ||
| innerErr = unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_SETFIB, fib) | ||
| }) | ||
|
|
||
| if innerErr != nil { | ||
| err = innerErr | ||
| } | ||
|
|
||
| return | ||
| } | ||
| } | ||
|
|
||
| func bindIfaceToDialer(ifaceName string, dialer *net.Dialer, _ string, _ netip.Addr) error { | ||
| addControlToDialer(dialer, bindControl(directFib)) | ||
| return nil | ||
| } | ||
|
|
||
| func bindIfaceToListenConfig(ifaceName string, lc *net.ListenConfig, _, address string, rAddrPort netip.AddrPort) (string, error) { | ||
| addControlToListenConfig(lc, bindControl(directFib)) | ||
| return address, nil | ||
| } | ||
|
|
||
| func ParseNetwork(network string, addr netip.Addr) string { | ||
| return network | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| //go:build !linux && !darwin && !windows | ||
| //go:build !linux && !darwin && !windows && !freebsd | ||
|
|
||
| package dialer | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| //go:build freebsd | ||
|
|
||
| package sing_tun | ||
|
|
||
| import ( | ||
| "os" | ||
| "unsafe" | ||
|
|
||
| "golang.org/x/sys/unix" | ||
| ) | ||
|
|
||
| // getTunnelName resolves the interface name for a tun device opened from a raw | ||
| // file descriptor. The FreeBSD port creates the tun device by name rather than | ||
| // passing a descriptor, so this path is normally unused; we still attempt to | ||
| // resolve it via the device's TUNGIFNAME ioctl for completeness. | ||
| func getTunnelName(fd int32) (string, error) { | ||
| // TUNGIFNAME = _IOR('t', 89, struct ifreq) on FreeBSD. | ||
| const tunGifName = 0x4020745d | ||
| var ifr [unix.IFNAMSIZ + 16]byte | ||
| _, _, errno := unix.Syscall( | ||
| unix.SYS_IOCTL, | ||
| uintptr(fd), | ||
| uintptr(tunGifName), | ||
| uintptr(unsafe.Pointer(&ifr[0])), | ||
| ) | ||
| if errno != 0 { | ||
| return "", os.NewSyscallError("TUNGIFNAME", errno) | ||
| } | ||
| n := 0 | ||
| for n < len(ifr) && ifr[n] != 0 { | ||
| n++ | ||
| } | ||
| if n == 0 { | ||
| return "", os.ErrInvalid | ||
| } | ||
| return string(ifr[:n]), nil | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| //go:build !(darwin || linux) | ||
| //go:build !(darwin || linux || freebsd) | ||
|
|
||
| package sing_tun | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once PR #12 from sing-tun merge, I will remove this line. And mark this PR as ready for review.