Use net.IP instead of netip.Addr

This commit is contained in:
Tamás Gulácsi 2022-08-17 18:53:01 +02:00
parent fa01896d67
commit 07e23fe051

17
ftp.go
View File

@ -10,7 +10,6 @@ import (
"errors"
"io"
"net"
"net/netip"
"net/textproto"
"strconv"
"strings"
@ -500,12 +499,9 @@ func (c *ServerConn) pasv() (host string, port int, err error) {
host = strings.Join(pasvData[0:4], ".")
if c.host != host {
if cmdIP, err := netip.ParseAddr(c.host); err == nil {
if dataIP, err := netip.ParseAddr(host); err == nil {
// Logic stolen from lftp (https://github.com/lavv17/lftp/blob/d67fc14d085849a6b0418bb3e912fea2e94c18d1/src/ftpclass.cc#L769)
if dataIP.IsMulticast() ||
cmdIP.IsPrivate() != dataIP.IsPrivate() ||
cmdIP.IsLoopback() != dataIP.IsLoopback() {
if cmdIP := net.ParseIP(c.host); cmdIP != nil {
if dataIP := net.ParseIP(host); dataIP != nil {
if isBogusDataIP(cmdIP, dataIP) {
return c.host, port, nil
}
}
@ -514,6 +510,13 @@ func (c *ServerConn) pasv() (host string, port int, err error) {
return host, port, nil
}
func isBogusDataIP(cmdIP, dataIP net.IP) bool {
// Logic stolen from lftp (https://github.com/lavv17/lftp/blob/d67fc14d085849a6b0418bb3e912fea2e94c18d1/src/ftpclass.cc#L769)
return dataIP.IsMulticast() ||
cmdIP.IsPrivate() != dataIP.IsPrivate() ||
cmdIP.IsLoopback() != dataIP.IsLoopback()
}
// getDataConnPort returns a host, port for a new data connection
// it uses the best available method to do so
func (c *ServerConn) getDataConnPort() (string, int, error) {