* Fixed a buffer overflow when writting to the output buffer. This

would in some rare occasions cause memory to be corrupted. leading to
a crash.

* Added option for setting the http proxy and proccess's umask.

* Save the total uploaded for downloads between sessions.

* Moved from sigc++ to my own lightweight slot class for the task
scheduler. This saves some 5-600kb when compiled with debugging
symbols, 1-200kb without.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@605 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-12-05 07:59:29 +00:00
parent 32a3619cd8
commit ba7d61b532
15 changed files with 250 additions and 23 deletions
+1
View File
@@ -7,6 +7,7 @@ EXTRA_DIST= \
rak/algorithm.h \
rak/error_number.h \
rak/functional.h \
rak/functional_fun.h \
rak/string_manip.h \
rak/timer.h \
rak/unordered_vector.h \
+31 -12
View File
@@ -394,6 +394,15 @@
</para></listitem>
</varlistentry>
<varlistentry>
<term>http_proxy = <replaceable>url</replaceable></term>
<listitem><para>
Use a http proxy. Use an empty string to disable.
</para></listitem>
</varlistentry>
<varlistentry>
<term>encoding_list = <replaceable>encoding</replaceable></term>
<listitem><para>
@@ -464,22 +473,32 @@
</varlistentry>
<varlistentry>
<term>throttle_interval = <replaceable>ms</replaceable></term>
<term>umask = <replaceable>0644</replaceable></term>
<listitem><para>
Interval between throttle ticks in milli-seconds, must be
between <emphasis>1-5000</emphasis> and defaults to
<emphasis>1000</emphasis>. Shorter intervals will cause less
bandwidth usage spikes while requiring more CPU resources.
Set the umask for this process, which is applied to all
files created by the program.
</para></listitem>
</varlistentry>
<varlistentry>
<term>tracker_dump = <replaceable>yes | no</replaceable></term>
<listitem><para>
Dump data received from trackers to the files
"./tracker_dump.*".
</para></listitem>
</varlistentry>
<!-- <varlistentry> -->
<!-- <term>throttle_interval = <replaceable>ms</replaceable></term> -->
<!-- <listitem><para> -->
<!-- Interval between throttle ticks in milli-seconds, must be -->
<!-- between <emphasis>1-5000</emphasis> and defaults to -->
<!-- <emphasis>1000</emphasis>. Shorter intervals will cause less -->
<!-- bandwidth usage spikes while requiring more CPU resources. -->
<!-- </para></listitem> -->
<!-- </varlistentry> -->
<!-- <varlistentry> -->
<!-- <term>tracker_dump = <replaceable>yes | no</replaceable></term> -->
<!-- <listitem><para> -->
<!-- Dump data received from trackers to the files -->
<!-- "./tracker_dump.*". -->
<!-- </para></listitem> -->
<!-- </varlistentry> -->
</variablelist>
+149
View File
@@ -0,0 +1,149 @@
// rak - Rakshasa's toolbox
// Copyright (C) 2005, Jari Sundell
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// In addition, as a special exception, the copyright holders give
// permission to link the code of portions of this program with the
// OpenSSL library under certain conditions as described in each
// individual source file, and distribute linked combinations
// including the two.
//
// You must obey the GNU General Public License in all respects for
// all of the code used other than OpenSSL. If you modify file(s)
// with this exception, you may extend this exception to your version
// of the file(s), but you are not obligated to do so. If you do not
// wish to do so, delete this exception statement from your version.
// If you delete this exception statement from all source files in the
// program, then also delete it here.
//
// Contact: Jari Sundell <jaris@ifi.uio.no>
//
// Skomakerveien 33
// 3185 Skoppum, NORWAY
// This file contains functors that wrap function points and member
// function pointers.
//
// 'fn' functors are polymorphic and derives from 'rak::function' and
// thus is less strict about types, this adds the cost of calling a
// virtual function.
//
// 'fun' functors are non-polymorphic and thus cheaper, but requires
// the target object's type in the functor's template arguments.
//
// This should be replaced with TR1 stuff when it becomes widely
// available. At the moment it behaves like std::auto_ptr, so be
// careful when copying.
#ifndef RAK_FUNCTIONAL_FUN_H
#define RAK_FUNCTIONAL_FUN_H
namespace rak {
template <typename _Result>
class function_base {
public:
virtual ~function_base() {}
virtual _Result operator () () = 0;
};
template <typename _Base>
struct function_ref {
explicit function_ref(_Base* b) : m_base(b) {}
_Base* m_base;
};
template <typename _Result>
class function {
public:
typedef _Result result_type;
typedef function_base<_Result> _Base;
function() : m_base(0) {}
function(function_ref<_Base> f) : m_base(f.m_base) {}
explicit function(function_base<_Result>* base) { m_base = base; }
~function() { delete m_base; }
function& operator = (function& f) { m_base = f.release(); return *this; }
function& operator = (function_ref<_Base> f) {
if (m_base != f.m_base) {
delete m_base;
m_base = f.m_base;
}
return *this;
}
template <typename _T>
operator function_ref<_T> () { return function_ref<_T>(this->release()); }
_Result operator () () { return (*m_base)(); }
private:
_Base* release() { _Base* tmp = m_base; m_base = 0; return tmp; }
_Base* m_base;
};
template <typename _Object, typename _Result>
class _mem_fn0 : public function_base<_Result> {
public:
typedef _Result (_Object::*_Func)();
_mem_fn0(_Object* object, _Func func) : m_object(object), m_func(func) {}
virtual ~_mem_fn0() {}
virtual _Result operator () () { return (m_object->*m_func)(); }
private:
_Object* m_object;
_Func m_func;
};
template <typename _Object, typename _Result>
class _const_mem_fn0 : public function_base<_Result> {
public:
typedef _Result (_Object::*_Func)() const;
_const_mem_fn0(const _Object* object, _Func func) : m_object(object), m_func(func) {}
virtual ~_const_mem_fn0() {}
virtual _Result operator () () { return (m_object->*m_func)(); }
private:
const _Object* m_object;
_Func m_func;
};
template <typename _Object, typename _Result>
function<_Result>
mem_fn(_Object* object, _Result (_Object::*func)()) {
return function<_Result>(static_cast<function_base<_Result>*>(new _mem_fn0<_Object, _Result>(object, func)));
}
template <typename _Object, typename _Result>
function<_Result>
mem_fn(const _Object* object, _Result (_Object::*func)() const) {
return function<_Result>(static_cast<function_base<_Result>*>(new _const_mem_fn0<_Object, _Result>(object, func)));
}
}
#endif
+1 -1
View File
@@ -60,7 +60,7 @@ Control::Control() :
m_inputStdin->slot_pressed(sigc::mem_fun(m_input, &input::Manager::pressed));
m_taskShutdown.set_iterator(taskScheduler.end());
m_taskShutdown.set_slot(sigc::mem_fun(*this, &Control::receive_shutdown));
m_taskShutdown.set_slot(rak::mem_fn(this, &Control::receive_shutdown));
}
Control::~Control() {
+5
View File
@@ -132,6 +132,11 @@ CurlGet::set_user_agent(const char* s) {
curl_easy_setopt(m_handle, CURLOPT_USERAGENT, s);
}
void
CurlGet::set_http_proxy(const char* s) {
curl_easy_setopt(m_handle, CURLOPT_PROXY, s);
}
void
CurlGet::perform(CURLMsg* msg) {
if (msg->msg != CURLMSG_DONE)
+1
View File
@@ -67,6 +67,7 @@ class CurlGet : public torrent::Http {
double size_total();
void set_user_agent(const char* s);
void set_http_proxy(const char* s);
protected:
CURL* handle() { return m_handle; }
+5 -1
View File
@@ -103,7 +103,11 @@ CurlStack::fdset(fd_set* readfds, fd_set* writefds, fd_set* exceptfds) {
void
CurlStack::add_get(CurlGet* get) {
get->set_user_agent(m_userAgent.c_str());
if (!m_userAgent.empty())
get->set_user_agent(m_userAgent.c_str());
if (!m_httpProxy.empty())
get->set_http_proxy(m_httpProxy.c_str());
CURLMcode code;
+4
View File
@@ -68,6 +68,9 @@ class CurlStack {
const std::string& user_agent() const { return m_userAgent; }
void set_user_agent(const std::string& s) { m_userAgent = s; }
const std::string& http_proxy() const { return m_httpProxy; }
void set_http_proxy(const std::string& s) { m_httpProxy = s; }
static void global_init();
static void global_cleanup();
@@ -85,6 +88,7 @@ class CurlStack {
CurlGetList m_getList;
std::string m_userAgent;
std::string m_httpProxy;
};
}
+2 -2
View File
@@ -61,10 +61,10 @@ DownloadFactory::DownloadFactory(const std::string& uri, Manager* m) :
m_start(false) {
m_taskLoad.set_iterator(taskScheduler.end());
m_taskLoad.set_slot(sigc::mem_fun(*this, &DownloadFactory::receive_load));
m_taskLoad.set_slot(rak::mem_fn(this, &DownloadFactory::receive_load));
m_taskCommit.set_iterator(taskScheduler.end());
m_taskCommit.set_slot(sigc::mem_fun(*this, &DownloadFactory::receive_commit));
m_taskCommit.set_slot(rak::mem_fn(this, &DownloadFactory::receive_commit));
}
DownloadFactory::~DownloadFactory() {
+1 -1
View File
@@ -51,7 +51,7 @@ Window::Window(Canvas* c, bool d, int h) :
m_minHeight(h) {
m_taskUpdate.set_iterator(displayScheduler.end());
m_taskUpdate.set_slot(sigc::mem_fun(*this, &Window::redraw));
m_taskUpdate.set_slot(rak::mem_fn(this, &Window::redraw));
}
Window::~Window() {
+4
View File
@@ -136,6 +136,8 @@ initialize_option_handler(Control* c, OptionHandler* optionHandler) {
optionHandler->insert("max_open_files", new OptionHandlerInt(c, &apply_max_open_files));
optionHandler->insert("max_open_sockets", new OptionHandlerInt(c, &apply_max_open_sockets));
optionHandler->insert("umask", new OptionHandlerOctal(c, &apply_umask));
optionHandler->insert("connection_leech", new OptionHandlerString(c, &apply_connection_leech));
optionHandler->insert("connection_seed", new OptionHandlerString(c, &apply_connection_seed));
@@ -143,6 +145,8 @@ initialize_option_handler(Control* c, OptionHandler* optionHandler) {
optionHandler->insert("encoding_list", new OptionHandlerString(c, &apply_encoding_list));
optionHandler->insert("tracker_dump", new OptionHandlerString(c, &apply_tracker_dump));
optionHandler->insert("use_udp_trackers", new OptionHandlerString(c, &apply_use_udp_trackers));
optionHandler->insert("http_proxy", new OptionHandlerString(c, &apply_http_proxy));
}
void
+24 -2
View File
@@ -37,9 +37,11 @@
#include "config.h"
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <torrent/exceptions.h>
#include <torrent/torrent.h>
#include <netinet/in.h>
#include "core/manager.h"
#include "ui/root.h"
@@ -55,7 +57,17 @@ OptionHandlerInt::process(const std::string& key, const std::string& arg) {
int a;
if (std::sscanf(arg.c_str(), "%i", &a) != 1)
throw torrent::input_error("Invalid argument for \"" + key + "\": \"" + arg + "\"");
throw torrent::input_error("Invalid argument for \"" + key + "\": \"" + arg + "\", must be an integer.");
m_apply(m_control, a);
}
void
OptionHandlerOctal::process(const std::string& key, const std::string& arg) {
int a;
if (std::sscanf(arg.c_str(), "%o", &a) != 1)
throw torrent::input_error("Invalid argument for \"" + key + "\": \"" + arg + "\", must be an octal.");
m_apply(m_control, a);
}
@@ -110,6 +122,11 @@ apply_global_upload_rate(Control* m, int arg) {
m->ui()->set_up_throttle(arg);
}
void
apply_umask(Control* m, int arg) {
umask(arg);
}
void
apply_hash_read_ahead(Control* m, int arg) {
torrent::set_hash_read_ahead(arg << 20);
@@ -185,6 +202,11 @@ apply_check_hash(Control* m, const std::string& arg) {
m->core()->set_check_hash(false);
}
void
apply_http_proxy(Control* m, const std::string& arg) {
m->core()->get_poll_manager()->get_http_stack()->set_http_proxy(arg);
}
void
apply_session_directory(Control* m, const std::string& arg) {
m->core()->get_download_store().use(arg);
+18
View File
@@ -59,6 +59,8 @@ void apply_connection_seed(Control* m, const std::string& arg);
void apply_global_download_rate(Control* m, int arg);
void apply_global_upload_rate(Control* m, int arg);
void apply_umask(Control* m, int arg);
void apply_hash_read_ahead(Control* m, int arg);
void apply_hash_interval(Control* m, int arg);
void apply_hash_max_tries(Control* m, int arg);
@@ -73,6 +75,8 @@ void apply_tracker_dump(Control* m, const std::string& arg);
void apply_use_udp_trackers(Control* m, const std::string& arg);
void apply_check_hash(Control* m, const std::string& arg);
void apply_http_proxy(Control* m, const std::string& arg);
void apply_session_directory(Control* m, const std::string& arg);
void apply_encoding_list(Control* m, const std::string& arg);
@@ -90,6 +94,20 @@ private:
Apply m_apply;
};
class OptionHandlerOctal : public OptionHandlerBase {
public:
typedef void (*Apply)(Control*, int);
OptionHandlerOctal(Control* c, Apply a) :
m_control(c), m_apply(a) {}
virtual void process(const std::string& key, const std::string& arg);
private:
Control* m_control;
Apply m_apply;
};
class OptionHandlerString : public OptionHandlerBase {
public:
typedef void (*Apply)(Control*, const std::string&);
+1 -1
View File
@@ -86,7 +86,7 @@ DownloadList::DownloadList(Control* c) :
m_windowLog = new WLog(&m_control->core()->get_log_important());
m_taskUpdate.set_iterator(taskScheduler.end());
m_taskUpdate.set_slot(sigc::mem_fun(*this, &DownloadList::task_update)),
m_taskUpdate.set_slot(rak::mem_fn(this, &DownloadList::task_update)),
setup_keys();
setup_input();
+3 -3
View File
@@ -39,7 +39,7 @@
#include <list>
#include <rak/timer.h>
#include <sigc++/slot.h>
#include <rak/functional_fun.h>
namespace utils {
@@ -47,10 +47,10 @@ namespace utils {
class TaskItem {
public:
typedef sigc::slot<void> Slot;
typedef rak::function<void> Slot;
typedef std::list<std::pair<rak::timer, TaskItem*> >::iterator iterator;
TaskItem(Slot s = Slot()) : m_slot(s) {}
TaskItem() {}
Slot& get_slot() { return m_slot; }
void set_slot(Slot s) { m_slot = s; }