diff --git a/upnp/testdata/technicolor.xml b/upnp/testdata/technicolor.xml
new file mode 100644
index 000000000..1f564441b
--- /dev/null
+++ b/upnp/testdata/technicolor.xml
@@ -0,0 +1,93 @@
+
+
+
+1
+0
+
+http://192.168.1.254:8000
+
+urn:schemas-upnp-org:device:InternetGatewayDevice:1
+Technicolor TG784n v3 (1321RAWMS)
+Technicolor
+http://www.technicolor.com
+
+Technicolor Internet Gateway Device
+Technicolor TG
+784n v3
+http://www.technicolor.com
+1321RAWMS
+uuid:UPnP_Technicolor TG784n v3-1_A4-B1-E9-D8-F4-78
+/
+
+
+urn:schemas-upnp-org:service:Layer3Forwarding:1
+urn:upnp-org:serviceId:L3Forwarding1
+/hou74cq4tw9/IGD/upnp/control/igd/layer3f
+/hou74cq4tw9/IGD/upnp/event/igd/layer3f
+/hou74cq4tw9/IGD/upnp/Layer3Forwarding.xml
+
+
+
+
+urn:schemas-upnp-org:device:LANDevice:1
+LANDevice
+Technicolor
+Technicolor TG784n v3
+A4-B1-E9-D8-F4-78
+uuid:UPnP_Technicolor TG784n v3-1_A4-B1-E9-D8-F4-78_LD_1
+
+
+urn:schemas-upnp-org:service:LANHostConfigManagement:1
+urn:upnp-org:serviceId:LANHostCfg1
+/hou74cq4tw9/IGD/upnp/control/igd/lanhcm_1
+
+/hou74cq4tw9/IGD/upnp/LANHostConfigManagement.xml
+
+
+
+
+urn:schemas-upnp-org:device:WANDevice:1
+WANDevice
+Technicolor
+Technicolor TG784n v3
+A4-B1-E9-D8-F4-78
+uuid:UPnP_Technicolor TG784n v3-1_A4-B1-E9-D8-F4-78_WD_1
+
+
+urn:schemas-upnp-org:service:WANCommonInterfaceConfig:1
+urn:upnp-org:serviceId:WANCommonIFC1
+/hou74cq4tw9/IGD/upnp/control/igd/wancic_1
+/hou74cq4tw9/IGD/upnp/event/igd/wancic_1
+/hou74cq4tw9/IGD/upnp/WANCommonInterfaceConfig.xml
+
+
+
+
+urn:schemas-upnp-org:device:WANConnectionDevice:1
+WANConnectionDevice
+Technicolor
+Technicolor TG784n v3
+A4-B1-E9-D8-F4-78
+uuid:UPnP_Technicolor TG784n v3-1_A4-B1-E9-D8-F4-78_WCD_1_1
+
+
+urn:schemas-upnp-org:service:WANDSLLinkConfig:1
+urn:upnp-org:serviceId:WANDSLLinkC1
+/hou74cq4tw9/IGD/upnp/control/igd/wandsllc_1_1
+/hou74cq4tw9/IGD/upnp/event/igd/wandsllc_1_1
+/hou74cq4tw9/IGD/upnp/WANDSLLinkConfig.xml
+
+
+urn:schemas-upnp-org:service:WANPPPConnection:1
+urn:upnp-org:serviceId:WANPPPConn1
+/hou74cq4tw9/IGD/upnp/control/igd/wanpppc_1_1_1
+/hou74cq4tw9/IGD/upnp/event/igd/wanpppc_1_1_1
+/hou74cq4tw9/IGD/upnp/WANPPPConnection.xml
+
+
+
+
+
+
+
+
diff --git a/upnp/upnp.go b/upnp/upnp.go
index a96b42b99..9b94a0d07 100644
--- a/upnp/upnp.go
+++ b/upnp/upnp.go
@@ -14,6 +14,7 @@ import (
"encoding/xml"
"errors"
"fmt"
+ "io"
"io/ioutil"
"net"
"net/http"
@@ -24,6 +25,7 @@ import (
type IGD struct {
serviceURL string
+ device string
ourIP string
}
@@ -103,7 +105,7 @@ Mx: 3
return nil, errors.New("no location")
}
- serviceURL, err := getServiceURL(locURL)
+ serviceURL, device, err := getServiceURL(locURL)
if err != nil {
return nil, err
}
@@ -119,6 +121,7 @@ Mx: 3
igd := &IGD{
serviceURL: serviceURL,
+ device: device,
ourIP: ourIP,
}
return igd, nil
@@ -162,49 +165,57 @@ func getChildService(d upnpDevice, serviceType string) (upnpService, bool) {
return upnpService{}, false
}
-func getServiceURL(rootURL string) (string, error) {
+func getServiceURL(rootURL string) (string, string, error) {
r, err := http.Get(rootURL)
if err != nil {
- return "", err
+ return "", "", err
}
defer r.Body.Close()
if r.StatusCode >= 400 {
- return "", errors.New(r.Status)
+ return "", "", errors.New(r.Status)
}
+ return getServiceURLReader(rootURL, r.Body)
+}
+func getServiceURLReader(rootURL string, r io.Reader) (string, string, error) {
var upnpRoot upnpRoot
- err = xml.NewDecoder(r.Body).Decode(&upnpRoot)
+ err := xml.NewDecoder(r).Decode(&upnpRoot)
if err != nil {
- return "", err
+ return "", "", err
}
dev := upnpRoot.Device
if dev.DeviceType != "urn:schemas-upnp-org:device:InternetGatewayDevice:1" {
- return "", errors.New("No InternetGatewayDevice")
+ return "", "", errors.New("No InternetGatewayDevice")
}
dev, ok := getChildDevice(dev, "urn:schemas-upnp-org:device:WANDevice:1")
if !ok {
- return "", errors.New("No WANDevice")
+ return "", "", errors.New("No WANDevice")
}
dev, ok = getChildDevice(dev, "urn:schemas-upnp-org:device:WANConnectionDevice:1")
if !ok {
- return "", errors.New("No WANConnectionDevice")
+ return "", "", errors.New("No WANConnectionDevice")
}
- svc, ok := getChildService(dev, "urn:schemas-upnp-org:service:WANIPConnection:1")
+ device := "urn:schemas-upnp-org:service:WANIPConnection:1"
+ svc, ok := getChildService(dev, device)
if !ok {
- return "", errors.New("No WANIPConnection")
+ device = "urn:schemas-upnp-org:service:WANPPPConnection:1"
+ }
+ svc, ok = getChildService(dev, device)
+ if !ok {
+ return "", "", errors.New("No WANIPConnection nor WANPPPConnection")
}
if len(svc.ControlURL) == 0 {
- return "", errors.New("no controlURL")
+ return "", "", errors.New("no controlURL")
}
u, _ := url.Parse(rootURL)
replaceRawPath(u, svc.ControlURL)
- return u.String(), nil
+ return u.String(), device, nil
}
func replaceRawPath(u *url.URL, rp string) {
@@ -223,7 +234,7 @@ func replaceRawPath(u *url.URL, rp string) {
u.RawQuery = q
}
-func soapRequest(url, function, message string) error {
+func soapRequest(url, device, function, message string) error {
tpl := `
%s
@@ -237,7 +248,7 @@ func soapRequest(url, function, message string) error {
}
req.Header.Set("Content-Type", `text/xml; charset="utf-8"`)
req.Header.Set("User-Agent", "syncthing/1.0")
- req.Header.Set("SOAPAction", `"urn:schemas-upnp-org:service:WANIPConnection:1#`+function+`"`)
+ req.Header.Set("SOAPAction", fmt.Sprintf(`"%s#%s"`, device, function))
req.Header.Set("Connection", "Close")
req.Header.Set("Cache-Control", "no-cache")
req.Header.Set("Pragma", "no-cache")
@@ -280,7 +291,7 @@ func (n *IGD) AddPortMapping(protocol Protocol, externalPort, internalPort int,
`
body := fmt.Sprintf(tpl, externalPort, protocol, internalPort, n.ourIP, description, timeout)
- return soapRequest(n.serviceURL, "AddPortMapping", body)
+ return soapRequest(n.serviceURL, n.device, "AddPortMapping", body)
}
func (n *IGD) DeletePortMapping(protocol Protocol, externalPort int) (err error) {
@@ -292,5 +303,5 @@ func (n *IGD) DeletePortMapping(protocol Protocol, externalPort int) (err error)
`
body := fmt.Sprintf(tpl, externalPort, protocol)
- return soapRequest(n.serviceURL, "DeletePortMapping", body)
+ return soapRequest(n.serviceURL, n.device, "DeletePortMapping", body)
}
diff --git a/upnp/upnp_test.go b/upnp/upnp_test.go
new file mode 100644
index 000000000..3d9f6e942
--- /dev/null
+++ b/upnp/upnp_test.go
@@ -0,0 +1,17 @@
+package upnp
+
+import (
+ "os"
+ "testing"
+)
+
+func TestGetTechnicolorRootURL(t *testing.T) {
+ r, _ := os.Open("testdata/technicolor.xml")
+ _, action, err := getServiceURLReader("http://localhost:1234/", r)
+ if err != nil {
+ t.Fatal(err)
+ }
+ if action != "urn:schemas-upnp-org:service:WANPPPConnection:1" {
+ t.Error("Unexpected action", action)
+ }
+}