1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
|
/***************************************************************************
** $Id: torkview.h,v 1.54 2008/06/02 10:38:27 hoganrobert Exp $
* Copyright (C) 2006 by Robert Hogan *
* robert@roberthogan.net *
* *
* 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., *
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#ifndef _TORKVIEW_H_
#define _TORKVIEW_H_
#include <qwidget.h>
#include "torkview_base.h"
#include "hitwidget.h"
#include "kwidgetlistbox.h"
#include "kerrylabel.h"
#include <qlistview.h>
#include <qdragobject.h>
#include <qiconview.h>
#include <qdatetime.h>
#include <kpassivepopup.h>
#include "newstreamosd.h"
class QPainter;
class KURL;
class QListViewItem;
class QDragEnterEvent;
class QDragDropEvent;
class KPassivePopup;
class StreamOSD;
class HitWidget;
/**
* This is the main view class for tork. Most of the non-menu,
* non-toolbar, and non-statusbar (e.g., non frame) GUI code should go
* here.
*
* @short Main view
* @author Robert Hogan <robert@roberthogan.net>
* @version 0.1
*/
class torkView : public torkview_base
{
Q_OBJECT
enum {
HISTORY_SIZE = 300, // Speed history buffer size
SPEED_BUFFER_SIZE = 10 // Speed normalization buffer size
};
public:
/**
* Default constructor
*/
torkView(QWidget *parent);
/**
* Destructor
*/
virtual ~torkView();
void hidePopup();
bool getShowTormon() {return m_tormon;}
void setShowTormon(bool tormon) { m_tormon = tormon;}
void infoUpdated(const QString &type, const QString &summary, const QString &data);
QStringList subnet16List(){ return m_subnet16List; }
QValueList<int> countryList(){ return m_countryList; }
StreamOSD* m_osd;
void toggleAnonymizerTork(bool state);
HitWidget* welcomeitem;
HitWidget* hiddenservicesitem;
HitWidget* mixminionitem;
HitWidget* sshitem;
HitWidget* kopeteitem;
HitWidget* gaimitem;
HitWidget* pidginitem;
HitWidget* konversationitem;
HitWidget* gpgitem;
HitWidget* konqitem;
HitWidget* telnetitem;
HitWidget* allpurposeitem;
HitWidget* ksircitem;
HitWidget* operaitem;
HitWidget* firefoxitem;
QValueList<HitWidget*> menuItems;
KURLLabel *configurePriv;
KURLLabel *configurePrivText;
// Rx e Tx to bytes and packets
unsigned long mBRx, mBTx, sysmBRx,sysmBTx;
// Statistics
unsigned long mTotalBytesRx, mTotalBytesTx;
// Speed buffers
double mSpeedBufferRx[SPEED_BUFFER_SIZE], mSpeedBufferTx[SPEED_BUFFER_SIZE];
double sys_mSpeedBufferRx[SPEED_BUFFER_SIZE], sys_mSpeedBufferTx[SPEED_BUFFER_SIZE];
// pointer to current speed buffer position
int mSpeedBufferPtr;
int sys_mSpeedBufferPtr;
// History buffer TODO: Make it configurable!
double mSpeedHistoryRx[HISTORY_SIZE];
double mSpeedHistoryTx[HISTORY_SIZE];
double sys_mSpeedHistoryRx[HISTORY_SIZE];
double sys_mSpeedHistoryTx[HISTORY_SIZE];
int mSpeedHistoryPtr;
double mMaxSpeed;
int mMaxSpeedAge;
int sys_mSpeedHistoryPtr;
double sys_mMaxSpeed;
int sys_mMaxSpeedAge;
const double* speedHistoryRx() const { return mSpeedHistoryRx; }
const double* speedHistoryTx() const { return mSpeedHistoryTx; }
const int historyBufferSize() const { return HISTORY_SIZE; }
const int* historyPointer() const { return &mSpeedHistoryPtr; }
const double* maxSpeed() const { return &mMaxSpeed; }
const double* sys_speedHistoryRx() const { return sys_mSpeedHistoryRx; }
const double* sys_speedHistoryTx() const { return sys_mSpeedHistoryTx; }
const int sys_historyBufferSize() const { return HISTORY_SIZE; }
const int* sys_historyPointer() const { return &sys_mSpeedHistoryPtr; }
const double* sys_maxSpeed() const { return &sys_mMaxSpeed; }
// calc tha max. speed stored in the history buffer
inline void calcMaxSpeed();
inline void sys_calcMaxSpeed();
// calc the speed using a speed buffer
inline double calcSpeed(const double* buffer) const;
/// RX Speed in bytes per second
inline double byteSpeedRx() const;
/// TX Speed in bytes per second
inline double byteSpeedTx() const;
/// RX Speed in bytes per second
inline double sys_byteSpeedRx() const;
/// TX Speed in bytes per second
inline double sys_byteSpeedTx() const;
static inline QString byteFormat( double num, const char* ksufix = " KB", const char* msufix = " MB");
void resetBWHistory();
void updateChart();
QStringList m_subnet16List;
QValueList<int> m_countryList;
void clearStreamMaps();
QTime timeLastTorUse;
QTime timeTorWasLastUsed(){return timeLastTorUse;};
QString addrLastTorUse;
QString addrTorWasLastUsed(){return addrLastTorUse;};
void setGeoIPAvailable(bool set){geoip_db = set;};
signals:
/**
* Use this signal to change the content of the caption
*/
void signalChangeCaption(const QString& text);
void showSecurityNotice(const QString& cleanedPort);
void showScreamingNotice(const QString& cleanedPort);
void showMyKonqueror();
void riskySession();
void aboutTorify();
void aboutTor();
void configurePrivoxy();
void aboutParanoidMode();
void showMyHiddenServices();
void startEverything();
void stopEverything();
void updateStats();
void mixminionHome();
void processWarning(const QString& , const QString& );
void signalCheckGuards();
void signalCheckTorNet();
void signalCheckBWSettings();
void updateTrayStats(const QString &,const QString &,const QString &,const QString &);
public slots:
void toggleParanoidMode(int);
void torify(const QString &);
void sendAnonymousEmail();
void anonymousOpera();
void anonymousFirefox();
void anonymizedOpera(const QString &);
void anonymizedFirefox(const QString &);
void showServerBW(const QString&);
private slots:
void switchColors();
void settingsChanged();
void streamStatusUpdated(const QString &, const QString &, const QString &, const QString &, const QString &);
void circuitStatusUpdated(const QString &, const QString &, const QString &, const QString &);
void ORStatusUpdated(const QString &ORID, const QString &status);
void guardStatusUpdated(const QString &ORID, const QString &status);
void bwUpdated(const QString &in, const QString &out);
void streamBwUpdated(const QString &stream, const QString &in, const QString &out);
void streamProgram(const QString &stream, const QString &port);
void activeServersUpdated(const QStringList &servers);
void displayError(const QString &,const QString &);
void displayServer(const QString &,const QString &);
void serverStatusUpdated(const QString &, const QString &,const QString &,const QString &, bool );
void privoxiedBash();
void downloadMixminion();
void downloadTorButton();
void reportBW(int secs);
void changeQuickConfigure(int no);
private:
unsigned long readInterfaceNumValue(QString interface, const char* name);
void setHiddenServicesText();
void parseStreamPort(const QString &,const QString &);
void populateMenu();
bool geoip_db;
KPassivePopup* m_pop;
bool m_tormon;
QStringList mSysDevPathList;
bool mFirstUpdate;
bool checkInterface();
bool gotEth0;
KURLLabel *paranoidmodeicon;
KURLLabel *paranoidmodetext;
QStringList greenonion;
QStringList redonion;
QStringList yellowonion;
QStringList orangeonion;
QStringList littleonion;
QStringList todelete;
QValueList<QStringList> iconList;
QValueList<QString> torType;
QStringList guard;
QStringList redguard;
QStringList detachedguard;
QStringList littleguard;
QValueList<QStringList> guardIconList;
QValueList<QStringList> circuitIconList;
typedef QMap<QString, QString> stringmap;
stringmap entryGuards;
stringmap streamPurpose;
QLabel *welcomeheaderLabel;
unsigned int torbtx;
unsigned int torbrx;
};
void torkView::calcMaxSpeed() {
double max = 0.0;
int ptr = mSpeedHistoryPtr;
for (int i = 0; i < HISTORY_SIZE; ++i) {
if (mSpeedHistoryRx[i] > max) {
max = mSpeedHistoryRx[i];
ptr = i;
}
if (mSpeedHistoryTx[i] > max) {
max = mSpeedHistoryTx[i];
ptr = i;
}
}
mMaxSpeed = max;
mMaxSpeedAge = (mSpeedHistoryPtr > ptr) ? (mSpeedHistoryPtr - ptr) : (mSpeedHistoryPtr + HISTORY_SIZE - ptr);
}
void torkView::sys_calcMaxSpeed() {
double max = 0.0;
int ptr = sys_mSpeedHistoryPtr;
for (int i = 0; i < HISTORY_SIZE; ++i) {
if (sys_mSpeedHistoryRx[i] > max) {
max = sys_mSpeedHistoryRx[i];
ptr = i;
}
if (sys_mSpeedHistoryTx[i] > max) {
max = sys_mSpeedHistoryTx[i];
ptr = i;
}
}
sys_mMaxSpeed = max;
sys_mMaxSpeedAge = (sys_mSpeedHistoryPtr > ptr) ? (sys_mSpeedHistoryPtr - ptr) : (sys_mSpeedHistoryPtr + HISTORY_SIZE - ptr);
}
double torkView::calcSpeed(const double* buffer) const {
double total = 0.0;
for (int i = 0; i < SPEED_BUFFER_SIZE; ++i)
total += buffer[i];
return total/SPEED_BUFFER_SIZE;
}
double torkView::byteSpeedRx() const {
return mSpeedHistoryRx[mSpeedHistoryPtr];
}
double torkView::byteSpeedTx() const {
return mSpeedHistoryTx[mSpeedHistoryPtr];
}
double torkView::sys_byteSpeedRx() const {
return sys_mSpeedHistoryRx[sys_mSpeedHistoryPtr];
}
double torkView::sys_byteSpeedTx() const {
return sys_mSpeedHistoryTx[sys_mSpeedHistoryPtr];
}
QString torkView::byteFormat( double num, const char* ksufix, const char* msufix ) {
const double ONE_KB = 1024.0;
const double ONE_MB = ONE_KB*ONE_KB;
if ( num >= ONE_MB ) // MB
return QString::number( num/(ONE_MB), 'f', 1 ) + msufix;
else // Kb
return QString::number( num/ONE_KB, 'f', 1 ) + ksufix;
}
class streamItem : public QObject, public QListViewItem
{
Q_OBJECT
public:
streamItem( DndListView *parent, const QString &id, const QString &program, const QString &target, const QString &status, const QString &bw, const QString &exit, const QString &circuit );
streamItem();
enum {
HISTORY_SIZE = 300, // Speed history buffer size
SPEED_BUFFER_SIZE = 10 // Speed normalization buffer size
};
// Rx e Tx to bytes and packets
unsigned long mBRx, mBTx;
// Statistics
unsigned long mTotalBytesRx, mTotalBytesTx;
// Speed buffers
double mSpeedBufferRx[SPEED_BUFFER_SIZE], mSpeedBufferTx[SPEED_BUFFER_SIZE];
// pointer to current speed buffer position
int mSpeedBufferPtr;
// History buffer TODO: Make it configurable!
double mSpeedHistoryRx[HISTORY_SIZE];
double mSpeedHistoryTx[HISTORY_SIZE];
int mSpeedHistoryPtr;
double mMaxSpeed;
int mMaxSpeedAge;
const double* speedHistoryRx() const { return mSpeedHistoryRx; }
const double* speedHistoryTx() const { return mSpeedHistoryTx; }
const int historyBufferSize() const { return HISTORY_SIZE; }
const int* historyPointer() const { return &mSpeedHistoryPtr; }
const double* maxSpeed() const { return &mMaxSpeed; }
// calc tha max. speed stored in the history buffer
inline void calcMaxSpeed();
// calc the speed using a speed buffer
inline double calcSpeed(const double* buffer) const;
/// RX Speed in bytes per second
inline double byteSpeedRx() const;
/// TX Speed in bytes per second
inline double byteSpeedTx() const;
inline void calcBWRate(int torbrx, int torbtx, int secs);
private:
bool dragging;
};
void streamItem::calcBWRate(int torbrx, int torbtx, int secs) {
//Calculate Stream Tx/Rx
unsigned int btx = (torbtx - mBTx);
unsigned int brx = (torbrx - mBRx);
mBRx = torbrx;
mBTx = torbtx;
if (++mSpeedBufferPtr >= SPEED_BUFFER_SIZE)
mSpeedBufferPtr = 0;
mSpeedBufferTx[mSpeedBufferPtr] = ((btx )*(1000.0f/(secs * 1000)));
mSpeedBufferRx[mSpeedBufferPtr] = ((brx )*(1000.0f/(secs * 1000)));
if (++mSpeedHistoryPtr >= HISTORY_SIZE)
mSpeedHistoryPtr = 0;
mSpeedHistoryRx[mSpeedHistoryPtr] = calcSpeed(mSpeedBufferRx);
mSpeedHistoryTx[mSpeedHistoryPtr] = calcSpeed(mSpeedBufferTx);
mMaxSpeedAge--;
if (mSpeedHistoryTx[mSpeedHistoryPtr] > mMaxSpeed) {
mMaxSpeed = mSpeedHistoryTx[mSpeedHistoryPtr];
mMaxSpeedAge = HISTORY_SIZE;
}
if (mSpeedHistoryRx[mSpeedHistoryPtr] > mMaxSpeed) {
mMaxSpeed = mSpeedHistoryRx[mSpeedHistoryPtr];
mMaxSpeedAge = HISTORY_SIZE;
}
if (mMaxSpeedAge < 1)
calcMaxSpeed();
}
void streamItem::calcMaxSpeed() {
double max = 0.0;
int ptr = mSpeedHistoryPtr;
for (int i = 0; i < HISTORY_SIZE; ++i) {
if (mSpeedHistoryRx[i] > max) {
max = mSpeedHistoryRx[i];
ptr = i;
}
if (mSpeedHistoryTx[i] > max) {
max = mSpeedHistoryTx[i];
ptr = i;
}
}
mMaxSpeed = max;
mMaxSpeedAge = (mSpeedHistoryPtr > ptr) ? (mSpeedHistoryPtr - ptr) : (mSpeedHistoryPtr + HISTORY_SIZE - ptr);
}
double streamItem::calcSpeed(const double* buffer) const {
double total = 0.0;
for (int i = 0; i < SPEED_BUFFER_SIZE; ++i)
total += buffer[i];
return total/SPEED_BUFFER_SIZE;
}
double streamItem::byteSpeedRx() const {
return mSpeedHistoryRx[mSpeedHistoryPtr];
}
double streamItem::byteSpeedTx() const {
return mSpeedHistoryTx[mSpeedHistoryPtr];
}
class circuitItem : public QObject, public QListViewItem
{
Q_OBJECT
public:
circuitItem( DndListView *parent, const QString &id, const QString &status, const QString &server );
// bool acceptDrop( const QMimeSource *mime ) const;
// void dropped ( QDropEvent * e );
// void dragEntered( );
};
#endif // _TORKVIEW_H_
|