transmission/libtransmission/fdlimit.c

749 lines
17 KiB
C
Raw Normal View History

/*
* This file Copyright (C) 2005-2014 Mnemosyne LLC
2006-07-16 19:39:23 +00:00
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2006-07-16 19:39:23 +00:00
*
* $Id$
*/
2006-07-16 19:39:23 +00:00
#ifdef HAVE_POSIX_FADVISE
#ifdef _XOPEN_SOURCE
#undef _XOPEN_SOURCE
#endif
#define _XOPEN_SOURCE 600
#endif
2007-11-09 20:07:52 +00:00
#include <assert.h>
#include <errno.h>
#include <inttypes.h>
#include <string.h>
#ifdef __APPLE__
#include <fcntl.h>
#endif
#ifdef HAVE_FALLOCATE64
/* FIXME can't find the right #include voodoo to pick up the declaration.. */
extern int fallocate64 (int fd, int mode, uint64_t offset, uint64_t len);
#endif
#ifdef HAVE_XFS_XFS_H
#include <xfs/xfs.h>
#endif
2007-07-13 00:15:45 +00:00
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h> /* getrlimit */
#include <sys/resource.h> /* getrlimit */
#include <fcntl.h> /* O_LARGEFILE posix_fadvise */
#include <unistd.h> /* lseek (), write (), ftruncate (), pread (), pwrite (), etc */
2006-07-16 19:39:23 +00:00
#include "transmission.h"
#include "fdlimit.h"
#include "log.h"
#include "session.h"
#include "torrent.h" /* tr_isTorrent () */
2006-07-16 19:39:23 +00:00
#define dbgmsg(...) \
do \
{ \
if (tr_logGetDeepEnabled ()) \
tr_logAddDeep (__FILE__, __LINE__, NULL, __VA_ARGS__); \
} \
while (0)
/***
****
**** Local Files
****
***/
#ifndef O_LARGEFILE
#define O_LARGEFILE 0
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
#ifndef O_SEQUENTIAL
#define O_SEQUENTIAL 0
#endif
static bool
preallocate_file_sparse (int fd, uint64_t length)
{
2012-12-18 03:03:23 +00:00
const char zero = '\0';
bool success = 0;
2012-12-18 03:03:23 +00:00
if (!length)
success = true;
#ifdef HAVE_FALLOCATE64
2012-12-18 03:03:23 +00:00
if (!success) /* fallocate64 is always preferred, so try it first */
success = !fallocate64 (fd, 0, 0, length);
#endif
2012-12-18 03:03:23 +00:00
if (!success) /* fallback: the old-style seek-and-write */
success = (lseek (fd, length-1, SEEK_SET) != -1)
&& (write (fd, &zero, 1) != -1)
&& (ftruncate (fd, length) != -1);
2012-12-18 03:03:23 +00:00
return success;
}
static bool
preallocate_file_full (const char * filename, uint64_t length)
{
2012-12-18 03:03:23 +00:00
bool success = 0;
#ifdef _WIN32
2012-12-18 03:03:23 +00:00
HANDLE hFile = CreateFile (filename, GENERIC_WRITE, 0, 0, CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
if (hFile != INVALID_HANDLE_VALUE)
{
2012-12-18 03:03:23 +00:00
LARGE_INTEGER li;
li.QuadPart = length;
success = SetFilePointerEx (hFile, li, NULL, FILE_BEGIN) && SetEndOfFile (hFile);
CloseHandle (hFile);
}
#else
2012-12-18 03:03:23 +00:00
int flags = O_RDWR | O_CREAT | O_LARGEFILE;
int fd = open (filename, flags, 0666);
if (fd >= 0)
{
# ifdef HAVE_FALLOCATE64
2012-12-18 03:03:23 +00:00
if (!success)
success = !fallocate64 (fd, 0, 0, length);
# endif
# ifdef HAVE_XFS_XFS_H
2012-12-18 03:03:23 +00:00
if (!success && platform_test_xfs_fd (fd))
{
2012-12-18 03:03:23 +00:00
xfs_flock64_t fl;
fl.l_whence = 0;
fl.l_start = 0;
fl.l_len = length;
success = !xfsctl (NULL, fd, XFS_IOC_RESVSP64, &fl);
}
# endif
# ifdef __APPLE__
2012-12-18 03:03:23 +00:00
if (!success)
{
2012-12-18 03:03:23 +00:00
fstore_t fst;
fst.fst_flags = F_ALLOCATECONTIG;
fst.fst_posmode = F_PEOFPOSMODE;
fst.fst_offset = 0;
fst.fst_length = length;
fst.fst_bytesalloc = 0;
success = !fcntl (fd, F_PREALLOCATE, &fst);
}
# endif
# ifdef HAVE_POSIX_FALLOCATE
2012-12-18 03:03:23 +00:00
if (!success)
success = !posix_fallocate (fd, 0, length);
# endif
2012-12-18 03:03:23 +00:00
if (!success) /* if nothing else works, do it the old-fashioned way */
{
2012-12-18 03:03:23 +00:00
uint8_t buf[ 4096 ];
memset (buf, 0, sizeof (buf));
success = true;
while (success && (length > 0))
2009-08-10 20:04:08 +00:00
{
2012-12-18 03:03:23 +00:00
const int thisPass = MIN (length, sizeof (buf));
success = write (fd, buf, thisPass) == thisPass;
length -= thisPass;
2009-08-10 20:04:08 +00:00
}
}
2012-12-18 03:03:23 +00:00
close (fd);
}
#endif
2012-12-18 03:03:23 +00:00
return success;
}
/* portability wrapper for fsync (). */
int
tr_fsync (int fd)
{
#ifdef _WIN32
2012-12-18 03:03:23 +00:00
return _commit (fd);
#else
2012-12-18 03:03:23 +00:00
return fsync (fd);
#endif
}
/* Like pread and pwrite, except that the position is undefined afterwards.
And of course they are not thread-safe. */
/* don't use pread/pwrite on old versions of uClibc because they're buggy.
* https://trac.transmissionbt.com/ticket/3826 */
#ifdef __UCLIBC__
#define TR_UCLIBC_CHECK_VERSION(major,minor,micro) \
(__UCLIBC_MAJOR__ > (major) || \
(__UCLIBC_MAJOR__ == (major) && __UCLIBC_MINOR__ > (minor)) || \
(__UCLIBC_MAJOR__ == (major) && __UCLIBC_MINOR__ == (minor) && \
__UCLIBC_SUBLEVEL__ >= (micro)))
#if !TR_UCLIBC_CHECK_VERSION (0,9,28)
#undef HAVE_PREAD
#undef HAVE_PWRITE
#endif
#endif
#ifdef __APPLE__
#define HAVE_PREAD
#define HAVE_PWRITE
#endif
ssize_t
tr_pread (int fd, void *buf, size_t count, off_t offset)
{
#ifdef HAVE_PREAD
2012-12-18 03:03:23 +00:00
return pread (fd, buf, count, offset);
#else
2012-12-18 03:03:23 +00:00
const off_t lrc = lseek (fd, offset, SEEK_SET);
if (lrc < 0)
return -1;
return read (fd, buf, count);
#endif
}
ssize_t
tr_pwrite (int fd, const void *buf, size_t count, off_t offset)
{
#ifdef HAVE_PWRITE
2012-12-18 03:03:23 +00:00
return pwrite (fd, buf, count, offset);
#else
2012-12-18 03:03:23 +00:00
const off_t lrc = lseek (fd, offset, SEEK_SET);
if (lrc < 0)
return -1;
return write (fd, buf, count);
#endif
}
int
tr_prefetch (int fd UNUSED, off_t offset UNUSED, size_t count UNUSED)
{
#ifdef HAVE_POSIX_FADVISE
2012-12-18 03:03:23 +00:00
return posix_fadvise (fd, offset, count, POSIX_FADV_WILLNEED);
#elif defined (__APPLE__)
2012-12-18 03:03:23 +00:00
struct radvisory radv;
radv.ra_offset = offset;
radv.ra_count = count;
return fcntl (fd, F_RDADVISE, &radv);
#else
2012-12-18 03:03:23 +00:00
return 0;
#endif
}
void
tr_set_file_for_single_pass (int fd)
{
2012-12-18 03:03:23 +00:00
if (fd >= 0)
{
2012-12-18 03:03:23 +00:00
/* Set hints about the lookahead buffer and caching. It's okay
for these to fail silently, so don't let them affect errno */
const int err = errno;
#ifdef HAVE_POSIX_FADVISE
2012-12-18 03:03:23 +00:00
posix_fadvise (fd, 0, 0, POSIX_FADV_SEQUENTIAL);
#endif
#ifdef __APPLE__
2012-12-18 03:03:23 +00:00
fcntl (fd, F_RDAHEAD, 1);
fcntl (fd, F_NOCACHE, 1);
#endif
2012-12-18 03:03:23 +00:00
errno = err;
}
}
static int
open_local_file (const char * filename, int flags)
{
2012-12-18 03:03:23 +00:00
const int fd = open (filename, flags, 0666);
tr_set_file_for_single_pass (fd);
return fd;
}
int
tr_open_file_for_writing (const char * filename)
{
2012-12-18 03:03:23 +00:00
return open_local_file (filename, O_LARGEFILE|O_BINARY|O_CREAT|O_WRONLY);
}
int
tr_open_file_for_scanning (const char * filename)
{
2012-12-18 03:03:23 +00:00
return open_local_file (filename, O_LARGEFILE|O_BINARY|O_SEQUENTIAL|O_RDONLY);
}
void
tr_close_file (int fd)
{
2012-12-18 03:03:23 +00:00
close (fd);
}
/*****
******
******
******
*****/
struct tr_cached_file
{
2012-12-18 03:03:23 +00:00
bool is_writable;
int fd;
int torrent_id;
tr_file_index_t file_index;
time_t used_at;
};
static inline bool
cached_file_is_open (const struct tr_cached_file * o)
{
2012-12-18 03:03:23 +00:00
assert (o != NULL);
2012-12-18 03:03:23 +00:00
return o->fd >= 0;
}
static void
cached_file_close (struct tr_cached_file * o)
{
2012-12-18 03:03:23 +00:00
assert (cached_file_is_open (o));
2012-12-18 03:03:23 +00:00
tr_close_file (o->fd);
o->fd = -1;
}
2008-10-03 04:49:06 +00:00
/**
* returns 0 on success, or an errno value on failure.
* errno values include ENOENT if the parent folder doesn't exist,
* plus the errno values set by tr_mkdirp () and open ().
2008-10-03 04:49:06 +00:00
*/
static int
cached_file_open (struct tr_cached_file * o,
const char * filename,
bool writable,
tr_preallocation_mode allocation,
uint64_t file_size)
{
2012-12-18 03:03:23 +00:00
int flags;
struct stat sb;
bool already_existed;
bool resize_needed;
2012-12-18 03:03:23 +00:00
/* create subfolders, if any */
if (writable)
{
2012-12-18 03:03:23 +00:00
char * dir = tr_dirname (filename);
const int err = tr_mkdirp (dir, 0777) ? errno : 0;
if (err)
{
tr_logAddError (_("Couldn't create \"%1$s\": %2$s"), dir, tr_strerror (err));
2012-12-18 03:03:23 +00:00
tr_free (dir);
return err;
2008-10-14 04:51:42 +00:00
}
2012-12-18 03:03:23 +00:00
tr_free (dir);
}
2006-07-16 19:39:23 +00:00
already_existed = !stat (filename, &sb) && S_ISREG (sb.st_mode);
if (writable && !already_existed && (allocation == TR_PREALLOCATE_FULL))
2012-12-18 03:03:23 +00:00
if (preallocate_file_full (filename, file_size))
tr_logAddDebug ("Preallocated file \"%s\"", filename);
2009-08-10 20:04:08 +00:00
/* we can't resize the file w/o write permissions */
resize_needed = already_existed && (file_size < (uint64_t)sb.st_size);
writable |= resize_needed;
2012-12-18 03:03:23 +00:00
/* open the file */
flags = writable ? (O_RDWR | O_CREAT) : O_RDONLY;
flags |= O_LARGEFILE | O_BINARY | O_SEQUENTIAL;
o->fd = open (filename, flags, 0666);
2012-12-18 03:03:23 +00:00
if (o->fd == -1)
{
2012-12-18 03:03:23 +00:00
const int err = errno;
tr_logAddError (_("Couldn't open \"%1$s\": %2$s"), filename, tr_strerror (err));
2012-12-18 03:03:23 +00:00
return err;
2006-07-16 19:39:23 +00:00
}
2012-12-18 03:03:23 +00:00
/* If the file already exists and it's too large, truncate it.
* This is a fringe case that happens if a torrent's been updated
* and one of the updated torrent's files is smaller.
* http://trac.transmissionbt.com/ticket/2228
* https://bugs.launchpad.net/ubuntu/+source/transmission/+bug/318249
*/
if (resize_needed && (ftruncate (o->fd, file_size) == -1))
{
const int err = errno;
tr_logAddError (_("Couldn't truncate \"%1$s\": %2$s"), filename, tr_strerror (err));
return err;
}
if (writable && !already_existed && (allocation == TR_PREALLOCATE_SPARSE))
2012-12-18 03:03:23 +00:00
preallocate_file_sparse (o->fd, file_size);
2012-12-18 03:03:23 +00:00
/* Many (most?) clients request blocks in ascending order,
* so increase the readahead buffer.
* Also, disable OS-level caching because "inactive memory" angers users. */
tr_set_file_for_single_pass (o->fd);
2012-12-18 03:03:23 +00:00
return 0;
}
/***
****
***/
struct tr_fileset
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * begin;
const struct tr_cached_file * end;
};
2006-07-16 19:39:23 +00:00
static void
fileset_construct (struct tr_fileset * set, int n)
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * o;
const struct tr_cached_file TR_CACHED_FILE_INIT = { 0, -1, 0, 0, 0 };
2006-07-16 19:39:23 +00:00
2012-12-18 03:03:23 +00:00
set->begin = tr_new (struct tr_cached_file, n);
set->end = set->begin + n;
2012-12-18 03:03:23 +00:00
for (o=set->begin; o!=set->end; ++o)
*o = TR_CACHED_FILE_INIT;
2006-07-16 19:39:23 +00:00
}
static void
fileset_close_all (struct tr_fileset * set)
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * o;
2012-12-18 03:03:23 +00:00
if (set != NULL)
for (o=set->begin; o!=set->end; ++o)
if (cached_file_is_open (o))
cached_file_close (o);
}
static void
fileset_destruct (struct tr_fileset * set)
{
2012-12-18 03:03:23 +00:00
fileset_close_all (set);
tr_free (set->begin);
set->end = set->begin = NULL;
}
static void
fileset_close_torrent (struct tr_fileset * set, int torrent_id)
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * o;
2012-12-18 03:03:23 +00:00
if (set != NULL)
for (o=set->begin; o!=set->end; ++o)
if ((o->torrent_id == torrent_id) && cached_file_is_open (o))
cached_file_close (o);
}
static struct tr_cached_file *
fileset_lookup (struct tr_fileset * set, int torrent_id, tr_file_index_t i)
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * o;
2012-12-18 03:03:23 +00:00
if (set != NULL)
for (o=set->begin; o!=set->end; ++o)
if ((torrent_id == o->torrent_id) && (i == o->file_index) && cached_file_is_open (o))
return o;
2012-12-18 03:03:23 +00:00
return NULL;
}
static struct tr_cached_file *
fileset_get_empty_slot (struct tr_fileset * set)
2006-07-16 19:39:23 +00:00
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * cull = NULL;
2012-12-18 03:03:23 +00:00
if (set->begin != NULL)
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * o;
2012-12-18 03:03:23 +00:00
/* try to find an unused slot */
for (o=set->begin; o!=set->end; ++o)
if (!cached_file_is_open (o))
return o;
2012-12-18 03:03:23 +00:00
/* all slots are full... recycle the least recently used */
for (cull=NULL, o=set->begin; o!=set->end; ++o)
if (!cull || o->used_at < cull->used_at)
cull = o;
2012-12-18 03:03:23 +00:00
cached_file_close (cull);
}
2012-12-18 03:03:23 +00:00
return cull;
}
/***
****
**** Startup / Shutdown
****
***/
2006-07-16 19:39:23 +00:00
struct tr_fdInfo
{
2012-12-18 03:03:23 +00:00
int peerCount;
struct tr_fileset fileset;
};
static void
ensureSessionFdInfoExists (tr_session * session)
{
2012-12-18 03:03:23 +00:00
assert (tr_isSession (session));
2012-12-18 03:03:23 +00:00
if (session->fdInfo == NULL)
{
2012-12-18 03:03:23 +00:00
struct rlimit limit;
struct tr_fdInfo * i;
const int FILE_CACHE_SIZE = 32;
2012-12-18 03:03:23 +00:00
/* Create the local file cache */
i = tr_new0 (struct tr_fdInfo, 1);
fileset_construct (&i->fileset, FILE_CACHE_SIZE);
session->fdInfo = i;
2012-12-18 03:03:23 +00:00
/* set the open-file limit to the largest safe size wrt FD_SETSIZE */
if (!getrlimit (RLIMIT_NOFILE, &limit))
{
2012-12-18 03:03:23 +00:00
const int old_limit = (int) limit.rlim_cur;
const int new_limit = MIN (limit.rlim_max, FD_SETSIZE);
if (new_limit != old_limit)
{
2012-12-18 03:03:23 +00:00
limit.rlim_cur = new_limit;
setrlimit (RLIMIT_NOFILE, &limit);
getrlimit (RLIMIT_NOFILE, &limit);
tr_logAddInfo ("Changed open file limit from %d to %d", old_limit, (int)limit.rlim_cur);
}
}
}
}
void
tr_fdClose (tr_session * session)
{
2012-12-18 03:03:23 +00:00
if (session && session->fdInfo)
{
2012-12-18 03:03:23 +00:00
struct tr_fdInfo * i = session->fdInfo;
fileset_destruct (&i->fileset);
tr_free (i);
session->fdInfo = NULL;
}
}
/***
****
***/
static struct tr_fileset*
get_fileset (tr_session * session)
{
2012-12-18 03:03:23 +00:00
if (!session)
return NULL;
2012-12-18 03:03:23 +00:00
ensureSessionFdInfoExists (session);
return &session->fdInfo->fileset;
}
void
tr_fdFileClose (tr_session * s, const tr_torrent * tor, tr_file_index_t i)
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * o;
2012-12-18 03:03:23 +00:00
if ((o = fileset_lookup (get_fileset (s), tr_torrentId (tor), i)))
{
2012-12-18 03:03:23 +00:00
/* flush writable files so that their mtimes will be
* up-to-date when this function returns to the caller... */
if (o->is_writable)
tr_fsync (o->fd);
2012-12-18 03:03:23 +00:00
cached_file_close (o);
}
}
2006-07-16 19:39:23 +00:00
int
tr_fdFileGetCached (tr_session * s, int torrent_id, tr_file_index_t i, bool writable)
{
2012-12-18 03:03:23 +00:00
struct tr_cached_file * o = fileset_lookup (get_fileset (s), torrent_id, i);
2006-07-16 19:39:23 +00:00
2012-12-18 03:03:23 +00:00
if (!o || (writable && !o->is_writable))
return -1;
2012-12-18 03:03:23 +00:00
o->used_at = tr_time ();
return o->fd;
}
#ifdef __APPLE__
#define TR_STAT_MTIME(sb)((sb).st_mtimespec.tv_sec)
#else
#define TR_STAT_MTIME(sb)((sb).st_mtime)
#endif
bool
tr_fdFileGetCachedMTime (tr_session * s, int torrent_id, tr_file_index_t i, time_t * mtime)
{
2012-12-18 03:03:23 +00:00
bool success;
struct stat sb;
struct tr_cached_file * o = fileset_lookup (get_fileset (s), torrent_id, i);
2012-12-18 03:03:23 +00:00
if ((success = (o != NULL) && !fstat (o->fd, &sb)))
*mtime = TR_STAT_MTIME (sb);
2012-12-18 03:03:23 +00:00
return success;
}
void
tr_fdTorrentClose (tr_session * session, int torrent_id)
{
assert (tr_sessionIsLocked (session));
fileset_close_torrent (get_fileset (session), torrent_id);
}
2006-07-16 19:39:23 +00:00
/* returns an fd on success, or a -1 on failure and sets errno */
int
tr_fdFileCheckout (tr_session * session,
int torrent_id,
tr_file_index_t i,
const char * filename,
bool writable,
2010-12-28 08:38:55 +00:00
tr_preallocation_mode allocation,
uint64_t file_size)
{
2012-12-18 03:03:23 +00:00
struct tr_fileset * set = get_fileset (session);
struct tr_cached_file * o = fileset_lookup (set, torrent_id, i);
2009-08-10 20:04:08 +00:00
2012-12-18 03:03:23 +00:00
if (o && writable && !o->is_writable)
cached_file_close (o); /* close it so we can reopen in rw mode */
else if (!o)
o = fileset_get_empty_slot (set);
2006-07-16 19:39:23 +00:00
2012-12-18 03:03:23 +00:00
if (!cached_file_is_open (o))
2007-01-14 12:00:21 +00:00
{
2012-12-18 03:03:23 +00:00
const int err = cached_file_open (o, filename, writable, allocation, file_size);
if (err)
{
errno = err;
return -1;
}
2012-12-18 03:03:23 +00:00
dbgmsg ("opened '%s' writable %c", filename, writable?'y':'n');
o->is_writable = writable;
2007-01-14 12:00:21 +00:00
}
2006-07-16 19:39:23 +00:00
2012-12-18 03:03:23 +00:00
dbgmsg ("checking out '%s'", filename);
o->torrent_id = torrent_id;
o->file_index = i;
o->used_at = tr_time ();
return o->fd;
2006-07-16 19:39:23 +00:00
}
/***
****
**** Sockets
****
***/
2007-01-21 19:42:11 +00:00
int
tr_fdSocketCreate (tr_session * session, int domain, int type)
2007-01-21 19:42:11 +00:00
{
2012-12-18 03:03:23 +00:00
int s = -1;
struct tr_fdInfo * gFd;
assert (tr_isSession (session));
2012-12-18 03:03:23 +00:00
ensureSessionFdInfoExists (session);
gFd = session->fdInfo;
2012-12-18 03:03:23 +00:00
if (gFd->peerCount < session->peerLimit)
if ((s = socket (domain, type, 0)) < 0)
if (sockerrno != EAFNOSUPPORT)
tr_logAddError (_("Couldn't create socket: %s"), tr_strerror (sockerrno));
2012-12-18 03:03:23 +00:00
if (s > -1)
++gFd->peerCount;
2012-12-18 03:03:23 +00:00
assert (gFd->peerCount >= 0);
2012-12-18 03:03:23 +00:00
if (s >= 0)
{
2012-12-18 03:03:23 +00:00
static bool buf_logged = false;
if (!buf_logged)
{
2012-12-18 03:03:23 +00:00
int i;
socklen_t size = sizeof (int);
buf_logged = true;
getsockopt (s, SOL_SOCKET, SO_SNDBUF, &i, &size);
tr_logAddDebug ("SO_SNDBUF size is %d", i);
2012-12-18 03:03:23 +00:00
getsockopt (s, SOL_SOCKET, SO_RCVBUF, &i, &size);
tr_logAddDebug ("SO_RCVBUF size is %d", i);
}
}
2012-12-18 03:03:23 +00:00
return s;
2006-07-16 19:39:23 +00:00
}
int
tr_fdSocketAccept (tr_session * s, int sockfd, tr_address * addr, tr_port * port)
2006-07-16 19:39:23 +00:00
{
2012-12-18 03:03:23 +00:00
int fd;
unsigned int len;
struct tr_fdInfo * gFd;
struct sockaddr_storage sock;
2006-07-16 19:39:23 +00:00
2012-12-18 03:03:23 +00:00
assert (tr_isSession (s));
assert (addr);
assert (port);
2012-12-18 03:03:23 +00:00
ensureSessionFdInfoExists (s);
gFd = s->fdInfo;
2012-12-18 03:03:23 +00:00
len = sizeof (struct sockaddr_storage);
fd = accept (sockfd, (struct sockaddr *) &sock, &len);
2012-12-18 03:03:23 +00:00
if (fd >= 0)
2006-07-16 19:39:23 +00:00
{
2012-12-18 03:03:23 +00:00
if ((gFd->peerCount < s->peerLimit)
&& tr_address_from_sockaddr_storage (addr, port, &sock))
{
2012-12-18 03:03:23 +00:00
++gFd->peerCount;
}
else
{
2012-12-18 03:03:23 +00:00
tr_netCloseSocket (fd);
fd = -1;
}
2006-07-16 19:39:23 +00:00
}
2007-01-21 19:42:11 +00:00
2012-12-18 03:03:23 +00:00
return fd;
2007-01-21 19:42:11 +00:00
}
2006-07-16 19:39:23 +00:00
void
tr_fdSocketClose (tr_session * session, int fd)
{
2012-12-18 03:03:23 +00:00
assert (tr_isSession (session));
2012-12-18 03:03:23 +00:00
if (session->fdInfo != NULL)
{
2012-12-18 03:03:23 +00:00
struct tr_fdInfo * gFd = session->fdInfo;
2012-12-18 03:03:23 +00:00
if (fd >= 0)
{
2012-12-18 03:03:23 +00:00
tr_netCloseSocket (fd);
--gFd->peerCount;
}
2012-12-18 03:03:23 +00:00
assert (gFd->peerCount >= 0);
}
2006-07-16 19:39:23 +00:00
}