summaryrefslogtreecommitdiffstats
blob: b298fc64c792c306c26aecab3dc277a371c89391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
 * Copyright (c) 2011 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

/*
 * Copyright (c) 2015-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Network/MiniUPnPInterface.h>

#include <boost/lexical_cast.hpp>
#include <boost/smart_ptr/make_shared.hpp>

#include <miniupnpc.h>
#include <upnpcommands.h>
#include <upnperrors.h>

#include <Swiften/Base/Log.h>

namespace Swift {

struct MiniUPnPInterface::Private {
    bool isValid;
    std::string localAddress;
    UPNPDev* deviceList;
    UPNPUrls urls;
    IGDdatas data;
};

MiniUPnPInterface::MiniUPnPInterface() : p(boost::make_shared<Private>()) {
    p->isValid = false;
    int error = 0;
    p->deviceList = upnpDiscover(1500 /* timeout in ms */, nullptr, nullptr, 0, 0 /* do IPv6? */, &error);
    if (!p->deviceList) {
        return;
    }

    char lanAddress[64];
    if (!UPNP_GetValidIGD(p->deviceList, &p->urls, &p->data, lanAddress, sizeof(lanAddress))) {
        return;
    }
    p->localAddress = std::string(lanAddress);
    p->isValid = true;
}

MiniUPnPInterface::~MiniUPnPInterface() {
    if (p->isValid) {
        FreeUPNPUrls(&p->urls);
    }
    freeUPNPDevlist(p->deviceList);
}

boost::optional<HostAddress> MiniUPnPInterface::getPublicIP() {
    if (!p->isValid) {
        return boost::optional<HostAddress>();
    }
    char externalIPAddress[40];
    int ret = UPNP_GetExternalIPAddress(p->urls.controlURL, p->data.first.servicetype, externalIPAddress);
    if (ret != UPNPCOMMAND_SUCCESS) {
        return boost::optional<HostAddress>();
    }
    else {
        return HostAddress(std::string(externalIPAddress));
    }
}

boost::optional<NATPortMapping> MiniUPnPInterface::addPortForward(int actualLocalPort, int actualPublicPort) {
    if (!p->isValid) {
        return boost::optional<NATPortMapping>();
    }

    NATPortMapping mapping(actualLocalPort, actualPublicPort, NATPortMapping::TCP);

    std::string publicPort = boost::lexical_cast<std::string>(mapping.getPublicPort());
    std::string localPort = boost::lexical_cast<std::string>(mapping.getLocalPort());
    std::string leaseSeconds = boost::lexical_cast<std::string>(mapping.getLeaseInSeconds());

    int ret = UPNP_AddPortMapping(
            p->urls.controlURL,
            p->data.first.servicetype,
            publicPort.c_str(),
            localPort.c_str(),
            p->localAddress.c_str(),
            "Swift",
            mapping.getProtocol() == NATPortMapping::TCP ? "TCP" : "UDP",
            nullptr,
            leaseSeconds.c_str());
    if (ret == UPNPCOMMAND_SUCCESS) {
        return mapping;
    }
    else {
        return boost::optional<NATPortMapping>();
    }
}

bool MiniUPnPInterface::removePortForward(const NATPortMapping& mapping) {
    if (!p->isValid) {
        return false;
    }

    std::string publicPort = boost::lexical_cast<std::string>(mapping.getPublicPort());
    std::string localPort = boost::lexical_cast<std::string>(mapping.getLocalPort());
    std::string leaseSeconds = boost::lexical_cast<std::string>(mapping.getLeaseInSeconds());

    int ret = UPNP_DeletePortMapping(p->urls.controlURL, p->data.first.servicetype, publicPort.c_str(), mapping.getProtocol() == NATPortMapping::TCP ? "TCP" : "UDP", nullptr);
    return ret == UPNPCOMMAND_SUCCESS;
}

bool MiniUPnPInterface::isAvailable() {
    return p->isValid;
}

}