/****************************************************************************** * $Id$ * * Copyright (c) 2005-2006 Transmission authors and contributors * * 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. *****************************************************************************/ #include #include #include #include #include #include #include #include #include #include /* basename, dirname */ #include /* O_LARGEFILE */ #include #include #include "transmission.h" #include "trcompat.h" #include "list.h" #include "net.h" #include "platform.h" #include "utils.h" #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 /** *** **/ static void myDebug( const char * file, int line, const char * fmt, ... ) { 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 ); } } #define dbgmsg(fmt...) myDebug(__FILE__, __LINE__, ##fmt ) /** *** **/ enum { TR_MAX_SOCKETS = 320, TR_MAX_OPEN_FILES = 8, /* real files, not sockets */ TR_RESERVED_FDS = 16 /* sockets reserved for tracker connections */ }; struct tr_openfile { unsigned int isCheckedOut : 1; unsigned int isWritable : 1; unsigned int closeWhenDone : 1; char filename[MAX_PATH_LENGTH]; int fd; 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; tr_dbg( "Opening '%s' (%d)", filename, write ); /* create subfolders, if any */ if( write ) { char * tmp = tr_strdup( filename ); const int val = tr_mkdirp( dirname(tmp), 0777 ); tr_free( tmp ); if( val ) return tr_ioErrorFromErrno( ); } /* open the file */ flags = write ? (O_RDWR | O_CREAT) : O_RDONLY; #ifdef O_LARGEFILE flags |= O_LARGEFILE; #endif #ifdef WIN32 flags |= O_BINARY; #endif errno = 0; file->fd = open( filename, flags, 0666 ); if( file->fd < 0 ) { if( errno ) { tr_err( "Couldn't open '%s': %s", filename, strerror(errno) ); return tr_ioErrorFromErrno(); } else { tr_err( "Couldn't open '%s'", filename ); return TR_ERROR_IO_OTHER; } } return TR_OK; } static int fileIsOpen( const struct tr_openfile * o ) { return o->fd >= 0; } static void TrCloseFile( int i ) { struct tr_openfile * o = &gFd->open[i]; assert( i >= 0 ); assert( i < TR_MAX_OPEN_FILES ); assert( fileIsOpen( o ) ); dbgmsg( "closing slot #%d, %s", i, o->filename ); close( o->fd ); o->fd = -1; o->isCheckedOut = 0; } static int fileIsCheckedOut( const struct tr_openfile * o ) { return fileIsOpen(o) && o->isCheckedOut; } int tr_fdFileCheckout( const char * filename, int write ) { int i, winner; struct tr_openfile * o; assert( filename && *filename ); assert( write==0 || write==1 ); dbgmsg( "looking for file '%s', writable %c", filename, write?'y':'n' ); tr_lockLock( gFd->lock ); /* Is it already open? */ for( i=0; iopen[i]; if( !fileIsOpen( o ) ) continue; if( strcmp( filename, o->filename ) ) continue; if( fileIsCheckedOut( o ) ) { dbgmsg( "found it! it's open, but checked out. waiting..." ); tr_wait( 100 ); i = -1; /* reloop */ continue; } if( write && !o->isWritable ) { dbgmsg( "found it! it's open and available, but isn't writable. closing..." ); TrCloseFile( i ); break; } dbgmsg( "found it! it's ready for use!" ); winner = i; goto done; } dbgmsg( "it's not already open. looking for an open slot or an old file." ); for( ;; ) { uint64_t date = tr_date( ) + 1; winner = -1; for( i=0; iopen[i]; if( !fileIsOpen( o ) ) { winner = i; dbgmsg( "found an empty slot in %d", winner ); goto done; } if( date > o->date ) { date = o->date; winner = i; } } if( winner >= 0 ) { dbgmsg( "closing file '%s', slot #%d", gFd->open[winner].filename, winner ); TrCloseFile( winner ); goto done; } /* All used! Wait a bit and try again */ dbgmsg( "everything's full! waiting for someone else to finish something" ); tr_wait( 100 ); } done: o = &gFd->open[winner]; if( !fileIsOpen( o ) ) { 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' ); strlcpy( o->filename, filename, sizeof( o->filename ) ); o->isWritable = write; } dbgmsg( "checking out '%s' in slot %d", filename, winner ); o->isCheckedOut = 1; o->closeWhenDone = 0; o->date = tr_date( ); tr_lockUnlock( gFd->lock ); return o->fd; } void tr_fdFileReturn( int fd ) { int i; tr_lockLock( gFd->lock ); for( i=0; iopen[i]; 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; iopen[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; } } tr_lockUnlock( gFd->lock ); } /*** **** **** Sockets **** ***/ static tr_list * reservedSockets = NULL; static void setSocketPriority( int fd, int isReserved ) { if( isReserved ) tr_list_append( &reservedSockets, TR_UINT_TO_PTR(fd) ); } static int socketWasReserved( int fd ) { return tr_list_remove_data( &reservedSockets, TR_UINT_TO_PTR(fd) ) != NULL; } int tr_fdSocketCreate( int type, int isReserved ) { int s = -1; tr_lockLock( gFd->lock ); if( isReserved && gFd->reserved >= TR_RESERVED_FDS ) isReserved = FALSE; if( isReserved || ( gFd->normal < gFd->normalMax ) ) if( ( s = socket( AF_INET, type, 0 ) ) < 0 ) tr_err( "Couldn't create socket (%s)", strerror( sockerrno ) ); if( s > -1 ) { setSocketPriority( s, isReserved ); if( isReserved ) ++gFd->reserved; else ++gFd->normal; } assert( gFd->reserved >= 0 ); assert( gFd->normal >= 0 ); tr_lockUnlock( gFd->lock ); return s; } int tr_fdSocketAccept( int b, struct in_addr * addr, tr_port_t * port ) { int s = -1; unsigned int len; struct sockaddr_in sock; assert( addr != NULL ); assert( port != NULL ); tr_lockLock( gFd->lock ); if( gFd->normal < gFd->normalMax ) { len = sizeof( sock ); s = accept( b, (struct sockaddr *) &sock, &len ); } if( s > -1 ) { setSocketPriority( s, FALSE ); *addr = sock.sin_addr; *port = sock.sin_port; gFd->normal++; } tr_lockUnlock( gFd->lock ); return s; } static void socketClose( int fd ) { #ifdef BEOS_NETSERVER closesocket( fd ); #else EVUTIL_CLOSESOCKET( fd ); #endif } void tr_fdSocketClose( int s ) { tr_lockLock( gFd->lock ); if( s >= 0 ) { socketClose( s ); if( socketWasReserved( s ) ) --gFd->reserved; else --gFd->normal; } assert( gFd->reserved >= 0 ); assert( gFd->normal >= 0 ); tr_lockUnlock( gFd->lock ); } /*** **** **** Startup / Shutdown **** ***/ void tr_fdInit( void ) { int i, j, s[TR_MAX_SOCKETS]; assert( gFd == NULL ); gFd = tr_new0( struct tr_fd_s, 1 ); gFd->lock = tr_lockNew( ); /* count the max number of sockets we can use */ for( i=0; inormalMax = i - TR_RESERVED_FDS - 10; for( i=0; iopen[i].fd = -1; } void tr_fdClose( void ) { int i = 0; for( i=0; iopen[i] ) ) TrCloseFile( i ); tr_lockFree( gFd->lock ); tr_list_free( &reservedSockets, NULL ); tr_free( gFd ); }