summaryrefslogtreecommitdiff
path: root/libopie2/opienet/onetwork.h
authormickeyl <mickeyl>2003-03-28 15:11:52 (UTC)
committer mickeyl <mickeyl>2003-03-28 15:11:52 (UTC)
commit11304d02942e9fa493e4e80943a828f9c65f6772 (patch) (side-by-side diff)
treea0223c10c067e1afc70d15c2b82be3f3c15e41ae /libopie2/opienet/onetwork.h
parentb271d575fa05cf570a1a829136517761bd47e69b (diff)
downloadopie-11304d02942e9fa493e4e80943a828f9c65f6772.zip
opie-11304d02942e9fa493e4e80943a828f9c65f6772.tar.gz
opie-11304d02942e9fa493e4e80943a828f9c65f6772.tar.bz2
skeleton and the start of libopie2, please read README, ROADMAP and STATUS and comment...
Diffstat (limited to 'libopie2/opienet/onetwork.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opienet/onetwork.h307
1 files changed, 307 insertions, 0 deletions
diff --git a/libopie2/opienet/onetwork.h b/libopie2/opienet/onetwork.h
new file mode 100644
index 0000000..9a68a74
--- a/dev/null
+++ b/libopie2/opienet/onetwork.h
@@ -0,0 +1,307 @@
+/*
+                 This file is part of the Opie Project
+              Copyright (C) 2003 by the Wellenreiter team:
+ Martin J. Muench <mjm@remote-exploit.org>
+ Max Moser <mmo@remote-exploit.org
+ Michael 'Mickey' Lauer <mickey@tm.informatik.uni-frankfurt.de>
+ =.
+ .=l.
+           .>+-=
+ _;:,     .>    :=|. This program is free software; you can
+.> <`_,   >  .   <= redistribute it and/or modify it under
+:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
+.="- .-=="i,     .._ License as published by the Free Software
+ - .   .-<_>     .<> Foundation; either version 2 of the License,
+     ._= =}       : or (at your option) any later version.
+    .%`+i>       _;_.
+    .i_,=:_.      -<s. 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
+..}^=.=       =       ; Library General Public License for more
+++=   -.     .`     .: details.
+ :     =  ...= . :.=-
+ -.   .:....=;==+<; You should have received a copy of the GNU
+  -_. . .   )=.  = Library General Public License along with
+    --        :-=` this library; see the file COPYING.LIB.
+ If not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+*/
+
+#ifndef ONETWORK_H
+#define ONETWORK_H
+
+/* QT */
+
+#include <qdict.h>
+#include <qmap.h>
+#include <qobject.h>
+#include <qhostaddress.h>
+
+/* OPIE */
+
+#include <opie2/onetutils.h>
+
+// ML: Yeah, I hate to include kernel headers, but it's necessary here
+// ML: Recent RedHat and MandrakePatches to the Kernel and WE broke something
+// ML: #include <net/if.h> e.g. conflicts with #include <linux/wireless.h>
+#define IFNAMSIZ 16
+#include <linux/wireless.h>
+#include <net/if.h>
+
+class ONetworkInterface;
+class OWirelessNetworkInterface;
+class OChannelHopper;
+class OMonitoringInterface;
+
+typedef struct ifreq ifreqstruct;
+typedef struct iwreq iwreqstruct;
+typedef struct iw_event iweventstruct;
+typedef struct iw_freq iwfreqstruct;
+typedef struct iw_priv_args iwprivargsstruct;
+typedef struct iw_range iwrangestruct;
+
+/*======================================================================================
+ * ONetwork
+ *======================================================================================*/
+
+class ONetwork : public QObject
+{
+ Q_OBJECT
+
+ public:
+ typedef QDict<ONetworkInterface> InterfaceMap;
+ typedef QDictIterator<ONetworkInterface> InterfaceIterator;
+
+ public:
+ static ONetwork* instance();
+ InterfaceIterator iterator() const;
+ bool isWirelessInterface( const char* ) const;
+ ONetworkInterface* interface( QString ) const;
+
+ protected:
+ ONetwork();
+ void synchronize();
+
+ private:
+ static ONetwork* _instance;
+ InterfaceMap _interfaces;
+};
+
+
+/*======================================================================================
+ * ONetworkInterface
+ *======================================================================================*/
+
+class ONetworkInterface
+{
+ friend class OMonitoringInterface;
+ friend class OCiscoMonitoringInterface;
+ friend class OWlanNGMonitoringInterface;
+ friend class OHostAPMonitoringInterface;
+ friend class OOrinocoMonitoringInterface;
+
+ public:
+ ONetworkInterface( const QString& name );
+ virtual ~ONetworkInterface();
+
+ const QString& name() const;
+ void setMonitoring( OMonitoringInterface* );
+ OMonitoringInterface* monitoring() const;
+ bool setPromiscuousMode( bool );
+ bool promiscuousMode() const;
+ bool setUp( bool );
+ bool isUp() const;
+ bool isLoopback() const;
+ bool isWireless() const;
+ QString ipV4Address() const;
+ OMacAddress macAddress() const;
+
+ protected:
+ const QString _name;
+ const int _sfd;
+ mutable ifreqstruct _ifr;
+ OMonitoringInterface* _mon;
+
+ protected:
+ ifreqstruct& ifr() const;
+ virtual void init();
+ bool ioctl( int call ) const;
+ bool ioctl( int call, ifreqstruct& ) const;
+};
+
+/*======================================================================================
+ * OChannelHopper
+ *======================================================================================*/
+
+class OChannelHopper : public QObject
+{
+ public:
+ OChannelHopper( OWirelessNetworkInterface* );
+ virtual ~OChannelHopper();
+ virtual void timerEvent( QTimerEvent* );
+ void setInterval( int );
+ int interval() const;
+
+ private:
+ OWirelessNetworkInterface* _iface;
+ int _interval;
+ int _channel;
+ int _tid;
+};
+
+
+/*======================================================================================
+ * OWirelessNetworkInterface
+ *======================================================================================*/
+
+class OWirelessNetworkInterface : public ONetworkInterface
+{
+ friend class OMonitoringInterface;
+ friend class OCiscoMonitoringInterface;
+ friend class OWlanNGMonitoringInterface;
+ friend class OHostAPMonitoringInterface;
+ friend class OOrinocoMonitoringInterface;
+
+ public:
+ enum Mode { AdHoc, Managed, Monitor };
+
+ OWirelessNetworkInterface( const QString& name );
+ virtual ~OWirelessNetworkInterface();
+
+ virtual void setChannel( int ) const;
+ virtual int channel() const;
+ virtual double frequency() const;
+ virtual int channels() const;
+ //virtual double frequency(int) const;
+
+ virtual void setMode( Mode ) {};
+ virtual bool mode() const {};
+
+ virtual void setMonitorMode( bool );
+ virtual bool monitorMode() const;
+
+ virtual void setChannelHopping( int interval );
+ virtual int channelHopping() const;
+
+ virtual void setNickName( const QString& ) {};
+ virtual QString nickName() const;
+
+ virtual bool isAssociated() const {};
+ virtual QString associatedAP() const;
+
+ virtual void setSSID( const QString& );
+ virtual QString SSID() const;
+
+ protected:
+ mutable iwreqstruct _iwr;
+ QMap<int,int> _channels;
+
+ protected:
+ virtual void init();
+ iwreqstruct& iwr() const;
+ bool wioctl( int call ) const;
+ bool wioctl( int call, iwreqstruct& ) const;
+
+ private:
+ OChannelHopper _hopper;
+};
+
+
+/*======================================================================================
+ * OMonitoringInterface
+ *======================================================================================*/
+
+
+class OMonitoringInterface
+{
+ public:
+ OMonitoringInterface();
+ OMonitoringInterface( ONetworkInterface* );
+ virtual ~OMonitoringInterface();
+
+ public:
+ virtual void setEnabled( bool );
+ virtual bool enabled() const;
+ virtual void setChannel( int );
+
+ virtual QString name() const = 0;
+
+ protected:
+ bool _enabled;
+ const OWirelessNetworkInterface* _if;
+
+};
+
+
+/*======================================================================================
+ * OCiscoMonitoring
+ *======================================================================================*/
+
+
+class OCiscoMonitoringInterface : public OMonitoringInterface
+{
+ public:
+ OCiscoMonitoringInterface( ONetworkInterface* );
+ virtual ~OCiscoMonitoringInterface();
+
+ virtual void setEnabled( bool );
+ virtual QString name() const;
+ virtual void setChannel( int );
+
+};
+
+/*======================================================================================
+ * OWlanNGMonitoringInterface
+ *======================================================================================*/
+
+class OWlanNGMonitoringInterface : public OMonitoringInterface
+{
+ public:
+ OWlanNGMonitoringInterface( ONetworkInterface* );
+ virtual ~OWlanNGMonitoringInterface();
+
+ public:
+ virtual void setEnabled( bool );
+ virtual QString name() const;
+ virtual void setChannel( int );
+
+};
+
+/*======================================================================================
+ * OHostAPMonitoringInterface
+ *======================================================================================*/
+
+class OHostAPMonitoringInterface : public OMonitoringInterface
+{
+ public:
+ OHostAPMonitoringInterface( ONetworkInterface* );
+ virtual ~OHostAPMonitoringInterface();
+
+ public:
+ virtual void setEnabled( bool );
+ virtual QString name() const;
+ };
+
+/*======================================================================================
+ * OOrinocoMonitoringInterface
+ *======================================================================================*/
+
+class OOrinocoMonitoringInterface : public OMonitoringInterface
+{
+ public:
+ OOrinocoMonitoringInterface( ONetworkInterface* );
+ virtual ~OOrinocoMonitoringInterface();
+
+ public:
+ virtual void setChannel( int );
+ virtual void setEnabled( bool );
+ virtual QString name() const;
+
+};
+
+#endif // ONETWORK_H
+