forked from inetaf/tcpproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for TCP_USER_TIMEOUT setting
See https://blog.cloudflare.com/when-tcp-sockets-refuse-to-die/ for technical details. Signed-off-by: Andrey Smirnov <[email protected]>
- Loading branch information
Showing
4 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,74 @@ | ||
// +build linux !appengine | ||
|
||
/* | ||
* | ||
* Copyright 2018 gRPC authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package tcpproxy | ||
|
||
import ( | ||
"fmt" | ||
"net" | ||
"syscall" | ||
"time" | ||
|
||
"golang.org/x/sys/unix" | ||
) | ||
|
||
// SetTCPUserTimeout sets the TCP user timeout on a connection's socket | ||
func SetTCPUserTimeout(conn net.Conn, timeout time.Duration) error { | ||
tcpconn, ok := conn.(*net.TCPConn) | ||
if !ok { | ||
// not a TCP connection. exit early | ||
return nil | ||
} | ||
rawConn, err := tcpconn.SyscallConn() | ||
if err != nil { | ||
return fmt.Errorf("error getting raw connection: %v", err) | ||
} | ||
err = rawConn.Control(func(fd uintptr) { | ||
err = syscall.SetsockoptInt(int(fd), syscall.IPPROTO_TCP, unix.TCP_USER_TIMEOUT, int(timeout/time.Millisecond)) | ||
}) | ||
if err != nil { | ||
return fmt.Errorf("error setting option on socket: %v", err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
// GetTCPUserTimeout gets the TCP user timeout on a connection's socket | ||
func GetTCPUserTimeout(conn net.Conn) (opt int, err error) { | ||
tcpconn, ok := conn.(*net.TCPConn) | ||
if !ok { | ||
err = fmt.Errorf("conn is not *net.TCPConn. got %T", conn) | ||
return | ||
} | ||
rawConn, err := tcpconn.SyscallConn() | ||
if err != nil { | ||
err = fmt.Errorf("error getting raw connection: %v", err) | ||
return | ||
} | ||
err = rawConn.Control(func(fd uintptr) { | ||
opt, err = syscall.GetsockoptInt(int(fd), syscall.IPPROTO_TCP, unix.TCP_USER_TIMEOUT) | ||
}) | ||
if err != nil { | ||
err = fmt.Errorf("error getting option on socket: %v", err) | ||
return | ||
} | ||
|
||
return | ||
} |
This file contains 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 @@ | ||
// +build !linux appengine | ||
|
||
/* | ||
* | ||
* Copyright 2018 gRPC authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package tcpproxy | ||
|
||
import ( | ||
"net" | ||
"time" | ||
) | ||
|
||
// SetTCPUserTimeout is a no-op function under non-linux or appengine environments | ||
func SetTCPUserTimeout(conn net.Conn, timeout time.Duration) error { | ||
return nil | ||
} | ||
|
||
// GetTCPUserTimeout is a no-op function under non-linux or appengine environments | ||
// a negative return value indicates the operation is not supported | ||
func GetTCPUserTimeout(conn net.Conn) (int, error) { | ||
return -1, nil | ||
} |
This file contains 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 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