2007-11-06 16:02:50 +00:00
|
|
|
/*
|
2008-01-01 17:20:20 +00:00
|
|
|
* This file Copyright (C) 2007-2008 Charles Kerr <charles@rebelbase.com>
|
2006-09-25 18:37:45 +00:00
|
|
|
*
|
2007-11-06 16:02:50 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
2006-09-25 18:37:45 +00:00
|
|
|
*
|
2007-11-07 00:42:19 +00:00
|
|
|
* $Id$
|
2007-11-06 16:02:50 +00:00
|
|
|
*/
|
2007-07-29 18:11:21 +00:00
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
#include <assert.h>
|
2007-12-09 17:50:05 +00:00
|
|
|
#include <errno.h>
|
2007-12-08 19:34:15 +00:00
|
|
|
#include <stdio.h> /* snprintf */
|
2007-08-04 02:55:06 +00:00
|
|
|
|
2007-11-06 16:02:50 +00:00
|
|
|
#include <miniupnp/miniwget.h>
|
|
|
|
#include <miniupnp/miniupnpc.h>
|
|
|
|
#include <miniupnp/upnpcommands.h>
|
2007-07-14 16:29:21 +00:00
|
|
|
|
2006-09-25 18:37:45 +00:00
|
|
|
#include "transmission.h"
|
2007-11-06 16:02:50 +00:00
|
|
|
#include "internal.h"
|
2007-12-08 19:34:15 +00:00
|
|
|
#include "shared.h"
|
2007-07-30 18:04:10 +00:00
|
|
|
#include "utils.h"
|
2007-11-06 16:02:50 +00:00
|
|
|
#include "upnp.h"
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2008-03-07 03:26:59 +00:00
|
|
|
static const char * getKey( void ) { return _( "Port Mapping (UPnP)" ); }
|
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TR_UPNP_IDLE,
|
|
|
|
TR_UPNP_ERR,
|
|
|
|
TR_UPNP_DISCOVER,
|
|
|
|
TR_UPNP_MAP,
|
|
|
|
TR_UPNP_UNMAP
|
|
|
|
}
|
|
|
|
tr_upnp_state;
|
|
|
|
|
2007-11-06 16:02:50 +00:00
|
|
|
struct tr_upnp
|
2006-09-25 18:37:45 +00:00
|
|
|
{
|
2007-11-06 16:02:50 +00:00
|
|
|
struct UPNPUrls urls;
|
|
|
|
struct IGDdatas data;
|
|
|
|
int port;
|
|
|
|
char lanaddr[16];
|
2007-12-08 19:34:15 +00:00
|
|
|
unsigned int isMapped;
|
2007-11-09 16:10:48 +00:00
|
|
|
unsigned int hasDiscovered : 1;
|
2007-12-08 19:34:15 +00:00
|
|
|
tr_upnp_state state;
|
2006-09-25 18:37:45 +00:00
|
|
|
};
|
|
|
|
|
2007-11-06 16:02:50 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2007-06-10 22:26:59 +00:00
|
|
|
|
2007-11-06 16:02:50 +00:00
|
|
|
tr_upnp*
|
2007-08-21 20:38:34 +00:00
|
|
|
tr_upnpInit( void )
|
2006-09-25 18:37:45 +00:00
|
|
|
{
|
2007-11-06 16:02:50 +00:00
|
|
|
tr_upnp * ret = tr_new0( tr_upnp, 1 );
|
2007-12-13 18:56:22 +00:00
|
|
|
ret->state = TR_UPNP_DISCOVER;
|
2007-11-06 16:02:50 +00:00
|
|
|
ret->port = -1;
|
2006-09-25 18:37:45 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-11-06 16:02:50 +00:00
|
|
|
tr_upnpClose( tr_upnp * handle )
|
2006-09-25 18:37:45 +00:00
|
|
|
{
|
2007-12-08 19:34:15 +00:00
|
|
|
assert( !handle->isMapped );
|
2007-12-13 20:19:52 +00:00
|
|
|
assert( ( handle->state == TR_UPNP_IDLE )
|
|
|
|
|| ( handle->state == TR_UPNP_ERR )
|
|
|
|
|| ( handle->state == TR_UPNP_DISCOVER ) );
|
2007-12-08 19:34:15 +00:00
|
|
|
|
2007-11-09 16:10:48 +00:00
|
|
|
if( handle->hasDiscovered )
|
|
|
|
FreeUPNPUrls( &handle->urls );
|
2007-11-06 16:02:50 +00:00
|
|
|
tr_free( handle );
|
2006-09-25 18:37:45 +00:00
|
|
|
}
|
|
|
|
|
2007-11-06 16:02:50 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2007-04-15 07:36:24 +00:00
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
int
|
|
|
|
tr_upnpPulse( tr_upnp * handle, int port, int isEnabled )
|
2006-09-25 18:37:45 +00:00
|
|
|
{
|
2007-12-08 19:34:15 +00:00
|
|
|
int ret;
|
|
|
|
|
2007-12-13 18:56:22 +00:00
|
|
|
if( isEnabled && ( handle->state == TR_UPNP_DISCOVER ) )
|
2007-11-09 16:10:48 +00:00
|
|
|
{
|
2007-12-13 02:48:30 +00:00
|
|
|
struct UPNPDev * devlist;
|
|
|
|
errno = 0;
|
2007-12-20 20:18:22 +00:00
|
|
|
devlist = upnpDiscover( 2000, NULL, NULL );
|
2007-12-13 02:48:30 +00:00
|
|
|
if( devlist == NULL ) {
|
2008-03-07 03:26:59 +00:00
|
|
|
tr_err( _( "%s: upnpDiscover returned NULL (errno %d - %s)" ), getKey(), errno, tr_strerror(errno) );
|
2007-12-13 02:48:30 +00:00
|
|
|
}
|
2007-12-09 17:50:05 +00:00
|
|
|
errno = 0;
|
2007-11-09 16:10:48 +00:00
|
|
|
if( UPNP_GetValidIGD( devlist, &handle->urls, &handle->data, handle->lanaddr, sizeof(handle->lanaddr))) {
|
2008-03-07 03:26:59 +00:00
|
|
|
tr_inf( _( "%s: Found Internet Gateway Device '%s'" ), getKey(), handle->urls.controlURL );
|
2008-03-07 20:48:36 +00:00
|
|
|
tr_inf( _( "%s: Local Address is '%s'" ), getKey(), handle->lanaddr );
|
2007-12-08 19:34:15 +00:00
|
|
|
handle->state = TR_UPNP_IDLE;
|
|
|
|
handle->hasDiscovered = 1;
|
|
|
|
} else {
|
|
|
|
handle->state = TR_UPNP_ERR;
|
2008-03-07 20:48:36 +00:00
|
|
|
tr_err( _( "%s: UPNP_GetValidIGD failed (errno %d - %s)" ), getKey(), errno, tr_strerror(errno) );
|
2008-03-07 03:26:59 +00:00
|
|
|
tr_err( _( "%s: If your router supports UPnP, please make sure UPnP is enabled!" ), getKey() );
|
2007-11-09 16:10:48 +00:00
|
|
|
}
|
|
|
|
freeUPNPDevlist( devlist );
|
|
|
|
}
|
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
if( handle->state == TR_UPNP_IDLE )
|
2006-09-25 18:37:45 +00:00
|
|
|
{
|
2007-12-08 19:34:15 +00:00
|
|
|
if( handle->isMapped && ( !isEnabled || ( handle->port != port ) ) )
|
|
|
|
handle->state = TR_UPNP_UNMAP;
|
2007-06-10 22:26:59 +00:00
|
|
|
}
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
if( handle->state == TR_UPNP_UNMAP )
|
2006-09-25 18:37:45 +00:00
|
|
|
{
|
2007-11-06 16:02:50 +00:00
|
|
|
char portStr[16];
|
|
|
|
snprintf( portStr, sizeof(portStr), "%d", handle->port );
|
|
|
|
UPNP_DeletePortMapping( handle->urls.controlURL,
|
|
|
|
handle->data.servicetype,
|
|
|
|
portStr, "TCP" );
|
2008-03-07 03:26:59 +00:00
|
|
|
tr_dbg( _( "%s: Stopping port forwarding of '%s', service '%s'" ),
|
|
|
|
getKey(), handle->urls.controlURL, handle->data.servicetype );
|
2007-12-08 19:34:15 +00:00
|
|
|
handle->isMapped = 0;
|
|
|
|
handle->state = TR_UPNP_IDLE;
|
|
|
|
handle->port = -1;
|
2006-09-25 18:37:45 +00:00
|
|
|
}
|
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
if( handle->state == TR_UPNP_IDLE )
|
|
|
|
{
|
|
|
|
if( isEnabled && !handle->isMapped )
|
|
|
|
handle->state = TR_UPNP_MAP;
|
|
|
|
}
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
if( handle->state == TR_UPNP_MAP )
|
|
|
|
{
|
2007-12-24 07:02:40 +00:00
|
|
|
int err = -1;
|
2007-12-08 19:34:15 +00:00
|
|
|
char portStr[16];
|
|
|
|
snprintf( portStr, sizeof(portStr), "%d", port );
|
2007-12-09 17:50:05 +00:00
|
|
|
errno = 0;
|
2007-12-24 07:02:40 +00:00
|
|
|
|
|
|
|
if( !handle->urls.controlURL || !handle->data.servicetype )
|
|
|
|
handle->isMapped = 0;
|
|
|
|
else {
|
|
|
|
err = UPNP_AddPortMapping( handle->urls.controlURL,
|
|
|
|
handle->data.servicetype,
|
|
|
|
portStr, portStr, handle->lanaddr,
|
|
|
|
"Transmission", "TCP" );
|
|
|
|
handle->isMapped = !err;
|
|
|
|
}
|
2008-03-07 03:26:59 +00:00
|
|
|
tr_inf( _( "%s: Port forwarding via '%s', service '%s'. (local address: %s:%d)" ),
|
|
|
|
getKey(), handle->urls.controlURL, handle->data.servicetype, handle->lanaddr, port );
|
2007-12-08 19:34:15 +00:00
|
|
|
if( handle->isMapped ) {
|
2008-03-07 03:26:59 +00:00
|
|
|
tr_inf( _( "%s: Port forwarding successful!" ), getKey() );
|
2007-12-08 19:34:15 +00:00
|
|
|
handle->port = port;
|
|
|
|
handle->state = TR_UPNP_IDLE;
|
|
|
|
} else {
|
2008-03-07 20:48:36 +00:00
|
|
|
tr_err( _( "%s: Port forwarding failed with error %d (%d - %s)" ), getKey(), err, errno, tr_strerror(errno) );
|
2008-03-07 03:26:59 +00:00
|
|
|
tr_err( _( "%s: If your router supports UPnP, please make sure UPnP is enabled!" ), getKey() );
|
2007-12-08 19:34:15 +00:00
|
|
|
handle->port = -1;
|
|
|
|
handle->state = TR_UPNP_ERR;
|
|
|
|
}
|
|
|
|
}
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2007-12-13 18:56:22 +00:00
|
|
|
switch( handle->state )
|
|
|
|
{
|
|
|
|
case TR_UPNP_DISCOVER: ret = TR_NAT_TRAVERSAL_UNMAPPED; break;
|
|
|
|
case TR_UPNP_MAP: ret = TR_NAT_TRAVERSAL_MAPPING; break;
|
|
|
|
case TR_UPNP_UNMAP: ret = TR_NAT_TRAVERSAL_UNMAPPING; break;
|
|
|
|
case TR_UPNP_IDLE: ret = handle->isMapped ? TR_NAT_TRAVERSAL_MAPPED
|
|
|
|
: TR_NAT_TRAVERSAL_UNMAPPED; break;
|
|
|
|
default: ret = TR_NAT_TRAVERSAL_ERROR; break;
|
|
|
|
}
|
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
return ret;
|
2006-09-25 18:37:45 +00:00
|
|
|
}
|