2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-01 17:20:20 +00:00
|
|
|
* Copyright (c) 2005-2008 Transmission authors and contributors
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2007-11-09 20:07:52 +00:00
|
|
|
#include <assert.h>
|
2007-07-29 18:11:21 +00:00
|
|
|
#include <errno.h>
|
2007-10-31 18:10:55 +00:00
|
|
|
#include <inttypes.h>
|
2007-07-29 18:11:21 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2007-07-13 00:15:45 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2007-07-12 17:51:45 +00:00
|
|
|
#include <unistd.h>
|
2007-10-30 18:35:06 +00:00
|
|
|
#include <libgen.h> /* basename, dirname */
|
2007-11-09 04:32:19 +00:00
|
|
|
#include <fcntl.h> /* O_LARGEFILE */
|
2007-07-14 16:29:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
#include <event.h>
|
2007-09-25 23:10:34 +00:00
|
|
|
#include <evutil.h>
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#include "transmission.h"
|
2007-10-30 18:35:06 +00:00
|
|
|
#include "trcompat.h"
|
2007-10-31 18:10:55 +00:00
|
|
|
#include "list.h"
|
2007-07-31 14:26:44 +00:00
|
|
|
#include "net.h"
|
|
|
|
#include "platform.h"
|
2007-07-30 18:04:10 +00:00
|
|
|
#include "utils.h"
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-31 18:10:55 +00:00
|
|
|
#if SIZEOF_VOIDP==8
|
|
|
|
#define TR_UINT_TO_PTR(i) (void*)((uint64_t)i)
|
|
|
|
#else
|
|
|
|
#define TR_UINT_TO_PTR(i) ((void*)((uint32_t)i))
|
|
|
|
#endif
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
static void
|
|
|
|
myDebug( const char * file, int line, const char * fmt, ... )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-10-30 18:35:06 +00:00
|
|
|
FILE * fp = tr_getLog( );
|
|
|
|
if( fp != NULL )
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char s[64];
|
|
|
|
struct evbuffer * buf = evbuffer_new( );
|
|
|
|
char * myfile = tr_strdup( file );
|
|
|
|
|
|
|
|
evbuffer_add_printf( buf, "[%s] ", tr_getLogTimeStr( s, sizeof(s) ) );
|
|
|
|
va_start( args, fmt );
|
|
|
|
evbuffer_add_vprintf( buf, fmt, args );
|
|
|
|
va_end( args );
|
|
|
|
evbuffer_add_printf( buf, " (%s:%d)\n", basename(myfile), line );
|
|
|
|
fwrite( EVBUFFER_DATA(buf), 1, EVBUFFER_LENGTH(buf), fp );
|
|
|
|
|
|
|
|
tr_free( myfile );
|
|
|
|
evbuffer_free( buf );
|
|
|
|
}
|
2007-01-21 07:16:18 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
#define dbgmsg(fmt...) myDebug(__FILE__, __LINE__, ##fmt )
|
2007-01-21 07:16:18 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
enum
|
|
|
|
{
|
2007-12-15 22:22:30 +00:00
|
|
|
TR_MAX_OPEN_FILES = 16, /* real files, not sockets */
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-11-19 12:59:26 +00:00
|
|
|
TR_RESERVED_FDS = 16 /* sockets reserved for tracker connections */
|
2007-10-30 18:35:06 +00:00
|
|
|
};
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
struct tr_openfile
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-10-30 18:35:06 +00:00
|
|
|
unsigned int isCheckedOut : 1;
|
|
|
|
unsigned int isWritable : 1;
|
2007-11-21 16:16:59 +00:00
|
|
|
unsigned int closeWhenDone : 1;
|
2007-10-30 18:35:06 +00:00
|
|
|
char filename[MAX_PATH_LENGTH];
|
2007-10-31 18:10:55 +00:00
|
|
|
int fd;
|
2007-10-30 18:35:06 +00:00
|
|
|
uint64_t date;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct tr_fd_s
|
|
|
|
{
|
|
|
|
int reserved;
|
|
|
|
int normal;
|
|
|
|
int normalMax;
|
|
|
|
tr_lock * lock;
|
|
|
|
struct tr_openfile open[TR_MAX_OPEN_FILES];
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct tr_fd_s * gFd = NULL;
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
**** Local Files
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
|
|
|
static int
|
|
|
|
TrOpenFile( int i, const char * filename, int write )
|
|
|
|
{
|
|
|
|
struct tr_openfile * file = &gFd->open[i];
|
|
|
|
int flags;
|
2007-01-21 07:16:18 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
/* create subfolders, if any */
|
2007-11-01 13:47:32 +00:00
|
|
|
if( write ) {
|
2007-11-02 20:27:03 +00:00
|
|
|
char * tmp = tr_strdup( filename );
|
2007-11-19 12:59:26 +00:00
|
|
|
const int val = tr_mkdirp( dirname(tmp), 0777 );
|
2007-11-02 20:27:03 +00:00
|
|
|
tr_free( tmp );
|
2007-11-01 13:47:32 +00:00
|
|
|
if( val )
|
|
|
|
return tr_ioErrorFromErrno( );
|
2007-10-30 18:35:06 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-31 18:10:55 +00:00
|
|
|
/* open the file */
|
|
|
|
flags = write ? (O_RDWR | O_CREAT) : O_RDONLY;
|
2007-11-09 04:32:19 +00:00
|
|
|
#ifdef O_LARGEFILE
|
|
|
|
flags |= O_LARGEFILE;
|
|
|
|
#endif
|
2007-10-30 18:35:06 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
flags |= O_BINARY;
|
2007-01-21 19:42:11 +00:00
|
|
|
#endif
|
2007-10-31 18:10:55 +00:00
|
|
|
errno = 0;
|
2007-11-19 12:59:26 +00:00
|
|
|
file->fd = open( filename, flags, 0666 );
|
2007-10-31 18:10:55 +00:00
|
|
|
if( file->fd < 0 ) {
|
|
|
|
if( errno ) {
|
2007-10-30 18:35:06 +00:00
|
|
|
tr_err( "Couldn't open '%s': %s", filename, strerror(errno) );
|
2007-10-31 18:10:55 +00:00
|
|
|
return tr_ioErrorFromErrno();
|
|
|
|
} else {
|
2007-10-30 18:35:06 +00:00
|
|
|
tr_err( "Couldn't open '%s'", filename );
|
2007-10-31 18:10:55 +00:00
|
|
|
return TR_ERROR_IO_OTHER;
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
return TR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
fileIsOpen( const struct tr_openfile * o )
|
|
|
|
{
|
2007-10-31 18:10:55 +00:00
|
|
|
return o->fd >= 0;
|
2007-10-30 18:35:06 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
static void
|
|
|
|
TrCloseFile( int i )
|
|
|
|
{
|
2007-10-31 18:10:55 +00:00
|
|
|
struct tr_openfile * o = &gFd->open[i];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
assert( i >= 0 );
|
|
|
|
assert( i < TR_MAX_OPEN_FILES );
|
2007-10-31 18:10:55 +00:00
|
|
|
assert( fileIsOpen( o ) );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-31 18:10:55 +00:00
|
|
|
close( o->fd );
|
|
|
|
o->fd = -1;
|
|
|
|
o->isCheckedOut = 0;
|
2007-10-30 18:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
fileIsCheckedOut( const struct tr_openfile * o )
|
|
|
|
{
|
|
|
|
return fileIsOpen(o) && o->isCheckedOut;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
int
|
2007-11-21 16:16:59 +00:00
|
|
|
tr_fdFileCheckout( const char * filename, int write )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-12-03 15:27:38 +00:00
|
|
|
int i, winner = -1;
|
2007-10-30 18:35:06 +00:00
|
|
|
struct tr_openfile * o;
|
|
|
|
|
2007-10-31 18:10:55 +00:00
|
|
|
assert( filename && *filename );
|
|
|
|
assert( write==0 || write==1 );
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
dbgmsg( "looking for file '%s', writable %c", filename, write?'y':'n' );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-07-30 15:27:52 +00:00
|
|
|
tr_lockLock( gFd->lock );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
/* Is it already open? */
|
2007-10-30 18:35:06 +00:00
|
|
|
for( i=0; i<TR_MAX_OPEN_FILES; ++i )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-10-30 18:35:06 +00:00
|
|
|
o = &gFd->open[i];
|
|
|
|
|
|
|
|
if( !fileIsOpen( o ) )
|
2007-01-14 12:00:21 +00:00
|
|
|
continue;
|
2007-10-30 18:35:06 +00:00
|
|
|
|
|
|
|
if( strcmp( filename, o->filename ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( fileIsCheckedOut( o ) ) {
|
|
|
|
dbgmsg( "found it! it's open, but checked out. waiting..." );
|
2007-12-03 15:27:38 +00:00
|
|
|
tr_lockUnlock( gFd->lock );
|
|
|
|
tr_wait( 200 );
|
|
|
|
tr_lockLock( gFd->lock );
|
2007-10-31 18:10:55 +00:00
|
|
|
i = -1; /* reloop */
|
2007-01-14 12:00:21 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-10-30 18:35:06 +00:00
|
|
|
|
|
|
|
if( write && !o->isWritable ) {
|
|
|
|
dbgmsg( "found it! it's open and available, but isn't writable. closing..." );
|
2007-08-01 00:40:49 +00:00
|
|
|
TrCloseFile( i );
|
2007-10-31 18:10:55 +00:00
|
|
|
break;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
2007-10-30 18:35:06 +00:00
|
|
|
|
|
|
|
dbgmsg( "found it! it's ready for use!" );
|
2007-01-14 12:00:21 +00:00
|
|
|
winner = i;
|
2007-12-03 15:27:38 +00:00
|
|
|
break;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
dbgmsg( "it's not already open. looking for an open slot or an old file." );
|
2007-12-03 15:27:38 +00:00
|
|
|
while( winner < 0 )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-11-01 13:47:32 +00:00
|
|
|
uint64_t date = tr_date( ) + 1;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-12-03 15:27:38 +00:00
|
|
|
/* look for the file that's been open longest */
|
2007-10-30 18:35:06 +00:00
|
|
|
for( i=0; i<TR_MAX_OPEN_FILES; ++i )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-10-30 18:35:06 +00:00
|
|
|
o = &gFd->open[i];
|
|
|
|
|
|
|
|
if( !fileIsOpen( o ) ) {
|
|
|
|
winner = i;
|
|
|
|
dbgmsg( "found an empty slot in %d", winner );
|
2007-12-03 15:27:38 +00:00
|
|
|
break;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
2007-10-30 18:35:06 +00:00
|
|
|
|
2007-10-31 18:10:55 +00:00
|
|
|
if( date > o->date ) {
|
2007-10-30 18:35:06 +00:00
|
|
|
date = o->date;
|
2007-10-31 18:10:55 +00:00
|
|
|
winner = i;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
if( winner >= 0 ) {
|
2007-12-09 15:26:27 +00:00
|
|
|
if( fileIsOpen( &gFd->open[winner] ) ) {
|
2007-12-03 16:51:22 +00:00
|
|
|
dbgmsg( "closing file '%s', slot #%d", gFd->open[winner].filename, winner );
|
|
|
|
TrCloseFile( winner );
|
|
|
|
}
|
2007-12-03 15:27:38 +00:00
|
|
|
} else {
|
|
|
|
dbgmsg( "everything's full! waiting for someone else to finish something" );
|
|
|
|
tr_lockUnlock( gFd->lock );
|
|
|
|
tr_wait( 200 );
|
|
|
|
tr_lockLock( gFd->lock );
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-03 15:27:38 +00:00
|
|
|
assert( winner >= 0 );
|
2007-10-30 18:35:06 +00:00
|
|
|
o = &gFd->open[winner];
|
|
|
|
if( !fileIsOpen( o ) )
|
2007-01-14 12:00:21 +00:00
|
|
|
{
|
2007-10-30 18:35:06 +00:00
|
|
|
const int ret = TrOpenFile( winner, filename, write );
|
|
|
|
if( ret ) {
|
|
|
|
tr_lockUnlock( gFd->lock );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
dbgmsg( "opened '%s' in slot %d, write %c", filename, winner, write?'y':'n' );
|
2007-10-31 18:10:55 +00:00
|
|
|
strlcpy( o->filename, filename, sizeof( o->filename ) );
|
|
|
|
o->isWritable = write;
|
2007-01-14 12:00:21 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
dbgmsg( "checking out '%s' in slot %d", filename, winner );
|
2007-10-31 18:10:55 +00:00
|
|
|
o->isCheckedOut = 1;
|
2007-11-21 16:16:59 +00:00
|
|
|
o->closeWhenDone = 0;
|
2007-11-01 13:47:32 +00:00
|
|
|
o->date = tr_date( );
|
2007-07-30 15:27:52 +00:00
|
|
|
tr_lockUnlock( gFd->lock );
|
2007-10-31 18:10:55 +00:00
|
|
|
return o->fd;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
void
|
2007-11-21 16:16:59 +00:00
|
|
|
tr_fdFileReturn( int fd )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
|
|
|
int i;
|
2007-07-30 15:27:52 +00:00
|
|
|
tr_lockLock( gFd->lock );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-11-21 16:16:59 +00:00
|
|
|
for( i=0; i<TR_MAX_OPEN_FILES; ++i )
|
|
|
|
{
|
2007-10-30 18:35:06 +00:00
|
|
|
struct tr_openfile * o = &gFd->open[i];
|
2007-11-21 16:16:59 +00:00
|
|
|
if( o->fd != fd )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
dbgmsg( "releasing file '%s' in slot #%d", o->filename, i );
|
|
|
|
o->isCheckedOut = 0;
|
|
|
|
if( o->closeWhenDone )
|
|
|
|
TrCloseFile( i );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_lockUnlock( gFd->lock );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_fdFileClose( const char * filename )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
tr_lockLock( gFd->lock );
|
|
|
|
dbgmsg( "tr_fdFileClose closing '%s'", filename );
|
|
|
|
|
|
|
|
for( i=0; i<TR_MAX_OPEN_FILES; ++i )
|
|
|
|
{
|
|
|
|
struct tr_openfile * o = &gFd->open[i];
|
|
|
|
if( !fileIsOpen(o) || strcmp(filename,o->filename) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !o->isCheckedOut ) {
|
|
|
|
dbgmsg( "not checked out, so closing it now... '%s'", filename );
|
|
|
|
TrCloseFile( i );
|
|
|
|
} else {
|
|
|
|
dbgmsg( "flagging file '%s', slot #%d to be closed when checked in", gFd->open[i].filename, i );
|
|
|
|
o->closeWhenDone = 1;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-30 15:27:52 +00:00
|
|
|
tr_lockUnlock( gFd->lock );
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
**** Sockets
|
|
|
|
****
|
|
|
|
***/
|
2007-01-21 19:42:11 +00:00
|
|
|
|
2007-10-31 18:10:55 +00:00
|
|
|
static tr_list * reservedSockets = NULL;
|
2007-10-30 18:35:06 +00:00
|
|
|
|
|
|
|
static void
|
2007-10-31 18:10:55 +00:00
|
|
|
setSocketPriority( int fd, int isReserved )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-10-31 18:10:55 +00:00
|
|
|
if( isReserved )
|
|
|
|
tr_list_append( &reservedSockets, TR_UINT_TO_PTR(fd) );
|
2007-01-21 19:42:11 +00:00
|
|
|
}
|
2007-10-30 18:35:06 +00:00
|
|
|
|
|
|
|
static int
|
2007-10-31 18:10:55 +00:00
|
|
|
socketWasReserved( int fd )
|
2007-01-21 19:42:11 +00:00
|
|
|
{
|
2007-10-31 18:10:55 +00:00
|
|
|
return tr_list_remove_data( &reservedSockets, TR_UINT_TO_PTR(fd) ) != NULL;
|
2007-01-21 19:42:11 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
int
|
2007-11-01 13:47:32 +00:00
|
|
|
tr_fdSocketCreate( int type, int isReserved )
|
2007-01-21 19:42:11 +00:00
|
|
|
{
|
|
|
|
int s = -1;
|
2007-07-30 15:27:52 +00:00
|
|
|
tr_lockLock( gFd->lock );
|
2007-07-21 17:35:47 +00:00
|
|
|
|
2007-11-01 13:47:32 +00:00
|
|
|
if( isReserved && gFd->reserved >= TR_RESERVED_FDS )
|
|
|
|
isReserved = FALSE;
|
2007-07-21 17:35:47 +00:00
|
|
|
|
2007-11-01 13:47:32 +00:00
|
|
|
if( isReserved || ( gFd->normal < gFd->normalMax ) )
|
2007-10-31 18:10:55 +00:00
|
|
|
if( ( s = socket( AF_INET, type, 0 ) ) < 0 )
|
|
|
|
tr_err( "Couldn't create socket (%s)", strerror( sockerrno ) );
|
2007-07-21 17:35:47 +00:00
|
|
|
|
2007-01-21 19:42:11 +00:00
|
|
|
if( s > -1 )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-11-01 13:47:32 +00:00
|
|
|
setSocketPriority( s, isReserved );
|
2007-10-31 18:10:55 +00:00
|
|
|
|
2007-11-01 13:47:32 +00:00
|
|
|
if( isReserved )
|
2007-10-31 18:10:55 +00:00
|
|
|
++gFd->reserved;
|
2006-07-16 19:39:23 +00:00
|
|
|
else
|
2007-10-31 18:10:55 +00:00
|
|
|
++gFd->normal;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-31 18:10:55 +00:00
|
|
|
assert( gFd->reserved >= 0 );
|
|
|
|
assert( gFd->normal >= 0 );
|
|
|
|
|
|
|
|
tr_lockUnlock( gFd->lock );
|
2007-01-21 19:42:11 +00:00
|
|
|
return s;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-09-25 23:10:34 +00:00
|
|
|
int
|
|
|
|
tr_fdSocketAccept( int b, struct in_addr * addr, tr_port_t * port )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-01-21 19:42:11 +00:00
|
|
|
int s = -1;
|
2007-10-31 18:10:55 +00:00
|
|
|
unsigned int len;
|
2007-01-21 19:42:11 +00:00
|
|
|
struct sockaddr_in sock;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-09-25 23:10:34 +00:00
|
|
|
assert( addr != NULL );
|
|
|
|
assert( port != NULL );
|
|
|
|
|
2007-07-30 15:27:52 +00:00
|
|
|
tr_lockLock( gFd->lock );
|
2007-01-21 19:42:11 +00:00
|
|
|
if( gFd->normal < gFd->normalMax )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-01-21 19:42:11 +00:00
|
|
|
len = sizeof( sock );
|
|
|
|
s = accept( b, (struct sockaddr *) &sock, &len );
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
2007-01-21 19:42:11 +00:00
|
|
|
if( s > -1 )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-11-01 13:47:32 +00:00
|
|
|
setSocketPriority( s, FALSE );
|
2007-09-25 23:10:34 +00:00
|
|
|
*addr = sock.sin_addr;
|
|
|
|
*port = sock.sin_port;
|
2007-01-21 19:42:11 +00:00
|
|
|
gFd->normal++;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
2007-07-30 15:27:52 +00:00
|
|
|
tr_lockUnlock( gFd->lock );
|
2007-01-21 19:42:11 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
static void
|
|
|
|
socketClose( int fd )
|
2007-01-21 19:42:11 +00:00
|
|
|
{
|
|
|
|
#ifdef BEOS_NETSERVER
|
2007-10-30 18:35:06 +00:00
|
|
|
closesocket( fd );
|
2007-01-21 19:42:11 +00:00
|
|
|
#else
|
2007-10-30 18:35:06 +00:00
|
|
|
EVUTIL_CLOSESOCKET( fd );
|
2007-01-21 19:42:11 +00:00
|
|
|
#endif
|
2007-10-30 18:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_fdSocketClose( int s )
|
|
|
|
{
|
2007-10-31 18:10:55 +00:00
|
|
|
tr_lockLock( gFd->lock );
|
|
|
|
|
|
|
|
if( s >= 0 ) {
|
2007-10-30 18:35:06 +00:00
|
|
|
socketClose( s );
|
2007-10-31 18:10:55 +00:00
|
|
|
if( socketWasReserved( s ) )
|
|
|
|
--gFd->reserved;
|
2007-09-20 16:32:01 +00:00
|
|
|
else
|
2007-10-31 18:10:55 +00:00
|
|
|
--gFd->normal;
|
2007-09-20 16:32:01 +00:00
|
|
|
}
|
2007-10-31 18:10:55 +00:00
|
|
|
|
|
|
|
assert( gFd->reserved >= 0 );
|
|
|
|
assert( gFd->normal >= 0 );
|
|
|
|
|
|
|
|
tr_lockUnlock( gFd->lock );
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
**** Startup / Shutdown
|
|
|
|
****
|
|
|
|
***/
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
void
|
2007-12-24 07:02:40 +00:00
|
|
|
tr_fdInit( int globalPeerLimit )
|
2007-01-14 12:00:21 +00:00
|
|
|
{
|
2007-12-24 07:02:40 +00:00
|
|
|
int i, j, *s;
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
assert( gFd == NULL );
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
gFd = tr_new0( struct tr_fd_s, 1 );
|
|
|
|
gFd->lock = tr_lockNew( );
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-12-24 07:02:40 +00:00
|
|
|
s = tr_new( int, globalPeerLimit );
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
/* count the max number of sockets we can use */
|
2007-12-24 07:02:40 +00:00
|
|
|
for( i=0; i<globalPeerLimit; ++i )
|
2007-10-30 18:35:06 +00:00
|
|
|
if( ( s[i] = socket( AF_INET, SOCK_STREAM, 0 ) ) < 0 )
|
|
|
|
break;
|
|
|
|
for( j=0; j<i; ++j )
|
|
|
|
socketClose( s[j] );
|
|
|
|
tr_dbg( "%d usable file descriptors", i );
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
/* set some fds aside for the UI or daemon to use */
|
|
|
|
gFd->normalMax = i - TR_RESERVED_FDS - 10;
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
for( i=0; i<TR_MAX_OPEN_FILES; ++i )
|
2007-10-31 18:10:55 +00:00
|
|
|
gFd->open[i].fd = -1;
|
2007-12-24 07:02:40 +00:00
|
|
|
|
|
|
|
tr_free( s );
|
2007-01-14 12:00:21 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
void
|
|
|
|
tr_fdClose( void )
|
2007-01-14 12:00:21 +00:00
|
|
|
{
|
2007-10-30 18:35:06 +00:00
|
|
|
int i = 0;
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
for( i=0; i<TR_MAX_OPEN_FILES; ++i )
|
|
|
|
if( fileIsOpen( &gFd->open[i] ) )
|
|
|
|
TrCloseFile( i );
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-30 18:35:06 +00:00
|
|
|
tr_lockFree( gFd->lock );
|
2007-01-14 12:00:21 +00:00
|
|
|
|
2007-10-31 18:10:55 +00:00
|
|
|
tr_list_free( &reservedSockets, NULL );
|
2007-10-30 18:35:06 +00:00
|
|
|
tr_free( gFd );
|
|
|
|
}
|
2007-12-20 21:44:16 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
tr_fdSetPeerLimit( uint16_t n )
|
|
|
|
{
|
|
|
|
assert( gFd!=NULL && "tr_fdInit() must be called first!" );
|
|
|
|
gFd->normalMax = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t
|
|
|
|
tr_fdGetPeerLimit( void )
|
|
|
|
{
|
2007-12-24 07:02:40 +00:00
|
|
|
return gFd ? gFd->normalMax : -1;
|
2007-12-20 21:44:16 +00:00
|
|
|
}
|