mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 11:55:01 +01:00
fs: add more errors to be considered temporary errors
This makes a framework for adding temporary errors identified by syscall number or by error string. Fixes #1660
This commit is contained in:
parent
9d22f4208f
commit
798502b204
@ -1,9 +1,46 @@
|
|||||||
// +build !windows
|
// +build !plan9
|
||||||
|
|
||||||
package fs
|
package fs
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net"
|
||||||
|
"os"
|
||||||
|
"syscall"
|
||||||
|
)
|
||||||
|
|
||||||
|
// closedConnErrors indicate a connection is closed or broken and
|
||||||
|
// should be retried
|
||||||
|
//
|
||||||
|
// These are added to in closed_conn_win.go
|
||||||
|
var closedConnErrors = []syscall.Errno{
|
||||||
|
syscall.EPIPE,
|
||||||
|
syscall.ETIMEDOUT,
|
||||||
|
syscall.ECONNREFUSED,
|
||||||
|
syscall.EHOSTDOWN,
|
||||||
|
syscall.EHOSTUNREACH,
|
||||||
|
syscall.ECONNABORTED,
|
||||||
|
syscall.EAGAIN,
|
||||||
|
syscall.EWOULDBLOCK,
|
||||||
|
syscall.ECONNRESET,
|
||||||
|
}
|
||||||
|
|
||||||
// isClosedConnErrorPlatform reports whether err is an error from use
|
// isClosedConnErrorPlatform reports whether err is an error from use
|
||||||
// of a closed network connection using platform specific error codes.
|
// of a closed network connection using platform specific error codes.
|
||||||
func isClosedConnErrorPlatform(err error) bool {
|
func isClosedConnErrorPlatform(err error) bool {
|
||||||
|
// now check whether err is an error from use of a closed
|
||||||
|
// network connection using platform specific error codes.
|
||||||
|
//
|
||||||
|
// Code adapted from net/http
|
||||||
|
if oe, ok := err.(*net.OpError); ok {
|
||||||
|
if se, ok := oe.Err.(*os.SyscallError); ok {
|
||||||
|
if errno, ok := se.Err.(syscall.Errno); ok {
|
||||||
|
for _, retriableErrno := range closedConnErrors {
|
||||||
|
if errno == retriableErrno {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
9
fs/closed_conn_unsupported.go
Normal file
9
fs/closed_conn_unsupported.go
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
// +build plan9
|
||||||
|
|
||||||
|
package fs
|
||||||
|
|
||||||
|
// isClosedConnErrorPlatform reports whether err is an error from use
|
||||||
|
// of a closed network connection using platform specific error codes.
|
||||||
|
func isClosedConnErrorPlatform(err error) bool {
|
||||||
|
return false
|
||||||
|
}
|
@ -3,32 +3,29 @@
|
|||||||
package fs
|
package fs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net"
|
|
||||||
"os"
|
|
||||||
"syscall"
|
"syscall"
|
||||||
)
|
)
|
||||||
|
|
||||||
// isClosedConnErrorPlatform reports whether err is an error from use
|
const (
|
||||||
// of a closed network connection using platform specific error codes.
|
WSAECONNABORTED syscall.Errno = 10053
|
||||||
//
|
WSAHOST_NOT_FOUND syscall.Errno = 11001
|
||||||
// Code adapted from net/http
|
WSATRY_AGAIN syscall.Errno = 11002
|
||||||
func isClosedConnErrorPlatform(err error) bool {
|
WSAENETRESET syscall.Errno = 10052
|
||||||
if oe, ok := err.(*net.OpError); ok {
|
WSAETIMEDOUT syscall.Errno = 10060
|
||||||
if se, ok := oe.Err.(*os.SyscallError); ok {
|
)
|
||||||
if errno, ok := se.Err.(syscall.Errno); ok {
|
|
||||||
const (
|
func init() {
|
||||||
WSAECONNABORTED syscall.Errno = 10053
|
// append some lower level errors since the standardized ones
|
||||||
WSAHOST_NOT_FOUND syscall.Errno = 11001
|
// don't seem to happen
|
||||||
WSATRY_AGAIN syscall.Errno = 11002
|
closedConnErrors = append(closedConnErrors,
|
||||||
WSAENETRESET syscall.Errno = 10052
|
syscall.WSAECONNRESET,
|
||||||
WSAETIMEDOUT syscall.Errno = 10060
|
WSAECONNABORTED,
|
||||||
)
|
WSAHOST_NOT_FOUND,
|
||||||
switch errno {
|
WSATRY_AGAIN,
|
||||||
case syscall.WSAECONNRESET, WSAECONNABORTED, WSAHOST_NOT_FOUND, WSATRY_AGAIN, WSAENETRESET, WSAETIMEDOUT:
|
WSAENETRESET,
|
||||||
return true
|
WSAETIMEDOUT,
|
||||||
}
|
syscall.ERROR_HANDLE_EOF,
|
||||||
}
|
syscall.ERROR_NETNAME_DELETED,
|
||||||
}
|
syscall.ERROR_BROKEN_PIPE,
|
||||||
}
|
)
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
23
fs/error.go
23
fs/error.go
@ -167,8 +167,18 @@ func IsNoRetryError(err error) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// closedConnErrorStrings is a list of phrases which when we find it
|
||||||
|
// in an an error, we know it is a networking error which should be
|
||||||
|
// retried.
|
||||||
|
//
|
||||||
|
// This is incredibly ugly - if only errors.Cause worked for all
|
||||||
|
// errors and all errors were exported from the stdlib.
|
||||||
|
var closedConnErrorStrings = []string{
|
||||||
|
"use of closed network connection", // not exported :-(
|
||||||
|
}
|
||||||
|
|
||||||
// isClosedConnError reports whether err is an error from use of a closed
|
// isClosedConnError reports whether err is an error from use of a closed
|
||||||
// network connection.
|
// network connection or prematurely closed connection
|
||||||
//
|
//
|
||||||
// Code adapted from net/http
|
// Code adapted from net/http
|
||||||
func isClosedConnError(err error) bool {
|
func isClosedConnError(err error) bool {
|
||||||
@ -176,11 +186,12 @@ func isClosedConnError(err error) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// Note that this error isn't exported so we have to do a
|
errString := err.Error()
|
||||||
// string comparison :-(
|
|
||||||
str := err.Error()
|
for _, phrase := range closedConnErrorStrings {
|
||||||
if strings.Contains(str, "use of closed network connection") {
|
if strings.Contains(errString, phrase) {
|
||||||
return true
|
return true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return isClosedConnErrorPlatform(err)
|
return isClosedConnErrorPlatform(err)
|
||||||
|
80
fs/errors_test.go
Normal file
80
fs/errors_test.go
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
package fs
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net"
|
||||||
|
"net/url"
|
||||||
|
"os"
|
||||||
|
"syscall"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
var errUseOfClosedNetworkConnection = errors.New("use of closed network connection")
|
||||||
|
|
||||||
|
// make a plausible network error with the underlying errno
|
||||||
|
func makeNetErr(errno syscall.Errno) error {
|
||||||
|
return &net.OpError{
|
||||||
|
Op: "write",
|
||||||
|
Net: "tcp",
|
||||||
|
Source: &net.TCPAddr{IP: net.ParseIP("127.0.0.1"), Port: 123},
|
||||||
|
Addr: &net.TCPAddr{IP: net.ParseIP("127.0.0.1"), Port: 8080},
|
||||||
|
Err: &os.SyscallError{
|
||||||
|
Syscall: "write",
|
||||||
|
Err: errno,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestIsClosedConnError(t *testing.T) {
|
||||||
|
for i, test := range []struct {
|
||||||
|
err error
|
||||||
|
want bool
|
||||||
|
}{
|
||||||
|
{nil, false},
|
||||||
|
{errors.New("potato"), false},
|
||||||
|
{errUseOfClosedNetworkConnection, true},
|
||||||
|
{makeNetErr(syscall.EAGAIN), true},
|
||||||
|
{makeNetErr(syscall.Errno(123123123)), false},
|
||||||
|
} {
|
||||||
|
got := isClosedConnError(test.err)
|
||||||
|
assert.Equal(t, test.want, got, fmt.Sprintf("test #%d: %v", i, test.err))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestShouldRetry(t *testing.T) {
|
||||||
|
for i, test := range []struct {
|
||||||
|
err error
|
||||||
|
want bool
|
||||||
|
}{
|
||||||
|
{nil, false},
|
||||||
|
{errors.New("potato"), false},
|
||||||
|
{errors.Wrap(errUseOfClosedNetworkConnection, "connection"), true},
|
||||||
|
{io.EOF, true},
|
||||||
|
{io.ErrUnexpectedEOF, true},
|
||||||
|
{&url.Error{Op: "post", URL: "/", Err: io.EOF}, true},
|
||||||
|
{&url.Error{Op: "post", URL: "/", Err: errUseOfClosedNetworkConnection}, true},
|
||||||
|
{
|
||||||
|
errors.Wrap(&url.Error{
|
||||||
|
Op: "post",
|
||||||
|
URL: "http://localhost/",
|
||||||
|
Err: makeNetErr(syscall.EPIPE),
|
||||||
|
}, "potato error"),
|
||||||
|
true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
errors.Wrap(&url.Error{
|
||||||
|
Op: "post",
|
||||||
|
URL: "http://localhost/",
|
||||||
|
Err: makeNetErr(syscall.Errno(123123123)),
|
||||||
|
}, "listing error"),
|
||||||
|
false,
|
||||||
|
},
|
||||||
|
} {
|
||||||
|
got := ShouldRetry(test.err)
|
||||||
|
assert.Equal(t, test.want, got, fmt.Sprintf("test #%d: %v", i, test.err))
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user