summaryrefslogtreecommitdiff
path: root/net/knemo-kde4/files/patch-knemod-interfaceupdater.cpp
blob: 09ad62f0543f29855af700e9864af3d74774614d (plain) (blame)
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
--- src/knemod/interfaceupdater.cpp.orig	Mon Jun 12 13:20:13 2006
+++ src/knemod/interfaceupdater.cpp	Mon Jun 12 14:43:02 2006
@@ -17,6 +17,24 @@
    Boston, MA 02110-1301, USA.
 */
 
+#ifdef __FreeBSD__
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/sysctl.h>
+#include <sys/time.h>
+#include <sys/ioctl.h>
+#include <net/ethernet.h>
+#include <net/if_media.h>
+#include <net/if_types.h>
+#include <net/if.h>
+#include <net/if_dl.h>
+#include <net/if_mib.h>
+#include <netdb.h>
+#include <ifaddrs.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#endif
+
 #include <qmap.h>
 #include <qregexp.h>
 #include <qstringlist.h>
@@ -40,6 +58,7 @@
 
 InterfaceUpdater::~InterfaceUpdater()
 {
+#ifndef Q_OS_FREEBSD
     if ( mRouteProcess )
     {
         mRouteProcess->kill();
@@ -55,10 +74,12 @@
         mIwconfigProcess->kill();
         delete mIwconfigProcess;
     }
+#endif
 }
 
 void InterfaceUpdater::checkConfig()
 {
+#ifndef Q_OS_FREEBSD    
     if ( !mIfconfigProcess )
     {
         mIfconfigStdout = QString::null;
@@ -100,6 +121,7 @@
         }
     }
 #endif
+#endif // Q_OS_FREEBSD
 
 #ifdef PATH_ROUTE
     if ( !mRouteProcess )
@@ -108,7 +130,11 @@
         mRouteProcess = new KProcess();
         mRouteProcess->setEnvironment( "LANG", "C" );
         mRouteProcess->setEnvironment( "LC_ALL", "C" );
+#ifdef Q_OS_FREEBSD        
+        *mRouteProcess << PATH_ROUTE << "-n" << "get" << "default";
+#else
         *mRouteProcess << PATH_ROUTE << "-n";
+#endif
         connect( mRouteProcess,  SIGNAL( receivedStdout( KProcess*, char*, int ) ),
                  this, SLOT( routeProcessStdout( KProcess*, char*, int ) ) );
         connect( mRouteProcess,  SIGNAL( receivedStderr( KProcess*, char*, int ) ),
@@ -123,6 +149,140 @@
         }
     }
 #endif
+
+#ifdef Q_OS_FREEBSD
+    // Check interfaces and update accordingly
+
+    Interface* interface = 0;
+    InterfaceData* data = 0;
+    
+    struct if_data* ifd;
+    struct ifaddrs *ifap;
+    char buf[NI_MAXHOST];
+
+    // Reset all devices first
+    QDictIterator<Interface> ifIt( mInterfaceDict );
+    for ( ; ifIt.current(); ++ifIt )
+    {
+        interface = ifIt.current();
+        interface->getData().existing = false;
+        interface->getData().available = false;
+        interface->getData().addrData.clear();
+    }
+   
+    // Get IP address and related information
+    if ( getifaddrs(&ifap) == 0 ) {
+        for ( ifaddrs *ifa = ifap; ifa; ifa = ifa->ifa_next ) {
+            switch ( ifa->ifa_addr->sa_family ) {
+                case AF_INET6:
+                case AF_INET:
+                    interface = mInterfaceDict[QString::fromLatin1(ifa->ifa_name)];
+                    if ( interface ) {
+                        data = &interface->getData();
+                     
+                        bzero(buf, NI_MAXHOST);
+                        getnameinfo(ifa->ifa_addr, ifa->ifa_addr->sa_len, buf, sizeof(buf), 0, 0, NI_NUMERICHOST);
+                        AddrData *addrData = new AddrData;
+                        data->addrData.insert( QString::fromLatin1(buf), addrData);
+
+                        if ( ifa->ifa_netmask != NULL ) {
+                            if (ifa->ifa_addr->sa_family == AF_INET6 ) {
+                                bzero(buf, NI_MAXHOST);
+                                getnameinfo(ifa->ifa_netmask, ifa->ifa_netmask->sa_len, buf, sizeof(buf), 0, 0, NI_NUMERICHOST);
+                                addrData->subnetMask = QString::fromLatin1( buf );
+                            } else {
+                                struct sockaddr_in *sin = (struct sockaddr_in *)ifa->ifa_netmask;
+                                addrData->subnetMask = QString::fromLatin1( inet_ntoa(sin->sin_addr) );
+                            }
+                        }
+
+                        if ( ifa->ifa_broadaddr != NULL ) {
+                            bzero(buf, NI_MAXHOST);
+                            getnameinfo(ifa->ifa_broadaddr, ifa->ifa_broadaddr->sa_len, buf, sizeof(buf), 0, 0, NI_NUMERICHOST);
+                            addrData->broadcastAddress = QString::fromLatin1(buf);
+                        }
+                       
+                        if ( ifa->ifa_dstaddr != NULL ) {
+                            bzero(buf, NI_MAXHOST);
+                            getnameinfo(ifa->ifa_dstaddr, ifa->ifa_dstaddr->sa_len, buf, sizeof(buf), 0, 0, NI_NUMERICHOST);
+                            data->ptpAddress = QString::fromLatin1(buf);
+                        }
+                        
+                        data->existing = true;
+                        interface->setType((ifa->ifa_flags & IFF_POINTOPOINT ) ? Interface::PPP : Interface::ETHERNET );
+
+                        // Get media status
+                        int s;
+                        if ((s = socket(ifa->ifa_addr->sa_family, SOCK_DGRAM, 0)) >= 0) {
+                            struct ifmediareq ifmr;
+                            (void) memset(&ifmr, 0, sizeof(ifmr));
+                            (void) strncpy(ifmr.ifm_name, ifa->ifa_name, sizeof(ifmr.ifm_name));
+
+                            if (ioctl(s, SIOCGIFMEDIA, (caddr_t)&ifmr) >= 0) {
+                                if (ifmr.ifm_status & IFM_AVALID)
+                                     /* 
+                                      * The interface is marked available, if the interface is up
+                                      * and if it is has carrier (LAN) or is associated (WLAN)
+                                      */
+                                     data->available = (ifa->ifa_flags & IFF_UP) && (ifmr.ifm_status & IFM_ACTIVE);
+                            }
+                            else
+                                data->available = (ifa->ifa_flags & IFF_UP);
+                            
+                            close(s);
+                        }
+                    }
+                    break;
+                 
+                 case AF_LINK:                
+                    interface = mInterfaceDict[QString::fromLatin1(ifa->ifa_name)];
+                    if ( interface ) {
+                        data = &interface->getData();
+
+                        // get MAC address
+                        struct sockaddr_dl* sdl = (struct sockaddr_dl*)ifa->ifa_addr;
+                        if (sdl->sdl_type == IFT_ETHER && sdl->sdl_alen == ETHER_ADDR_LEN)
+                            data->hwAddress = QString::fromLatin1(ether_ntoa((struct ether_addr*)LLADDR(sdl)));
+                        else
+                            data->hwAddress = "";
+                        
+                        // Get traffic statistics
+                        if (ifa->ifa_data != NULL) {
+                            ifd = (if_data *)ifa->ifa_data;
+                            
+                            data->rxPackets = ifd->ifi_ipackets;
+                            data->txPackets = ifd->ifi_opackets;
+                        
+                            if ( data->prevRxBytes == 0L )
+                                data->prevRxBytes = ifd->ifi_ibytes;
+                            else 
+                                data->prevRxBytes = data->rxBytes;
+                        
+                            data->rxBytes = ifd->ifi_ibytes;
+                            data->incomingBytes = data->rxBytes - data->prevRxBytes;
+                            data->rxString = KIO::convertSize( data->rxBytes );
+                    
+                            if ( data->prevTxBytes == 0L )
+                                data->prevTxBytes = ifd->ifi_obytes;
+                            else 
+                                data->prevTxBytes = data->txBytes;
+                            
+                            data->txBytes = ifd->ifi_obytes;
+                            data->outgoingBytes = data->txBytes - data->prevTxBytes;
+                            data->txString = KIO::convertSize( data->txBytes );
+                        }
+                    }
+                    break;
+            }
+        }
+        freeifaddrs(ifap);
+    }
+
+    // Update the display
+    for ( ifIt.toFirst(); ifIt.current(); ++ifIt )
+        ifIt.current()->activateMonitor();
+
+#endif // Q_OS_FREEBSD
 }
 
 void InterfaceUpdater::routeProcessExited( KProcess* process )
@@ -172,6 +332,7 @@
 
 void InterfaceUpdater::parseIfconfigOutput()
 {
+#ifndef Q_OS_FREEBSD    
     /* mIfconfigStdout contains the complete output of 'ifconfig' which we
      * are going to parse here.
      */
@@ -228,10 +389,12 @@
         }
         interface->activateMonitor();
     }
+#endif
 }
 
 void InterfaceUpdater::updateInterfaceData( QString& config, InterfaceData& data, int type )
 {
+#ifndef Q_OS_FREEBSD    
     QRegExp regExp( ".*RX.*:(\\d+).*:\\d+.*:\\d+.*:\\d+" );
     if ( regExp.search( config ) > -1 )
         data.rxPackets = regExp.cap( 1 ).toULong();
@@ -321,10 +484,12 @@
         if ( regExp.search( config ) > -1 )
             data.ptpAddress = regExp.cap( 2 );
     }
+#endif
 }
 
 void InterfaceUpdater::parseIwconfigOutput()
 {
+#ifndef Q_OS_FREEBSD
     /* mIwconfigStdout contains the complete output of 'iwconfig' which we
      * are going to parse here.
      */
@@ -367,10 +532,12 @@
             updateWirelessData( configs[key], interface->getWirelessData() );
         }
     }
+#endif
 }
 
 void InterfaceUpdater::updateWirelessData( QString& config, WirelessData& data )
 {
+#ifndef Q_OS_FREEBSD
     QRegExp regExp( "ESSID:\"?([^\"]*)\"?" );
     if ( regExp.search( config ) > -1 )
         data.essid = regExp.cap( 1 );
@@ -404,6 +571,7 @@
     regExp.setPattern( "Link Quality[=:]([\\d/]*)" );
     if ( regExp.search( config ) > -1 )
         data.linkQuality = regExp.cap( 1 );
+#endif
 }
 
 void InterfaceUpdater::parseRouteOutput()
@@ -412,16 +580,25 @@
      * are going to parse here.
      */
     QMap<QString, QStringList> configs;
-    QStringList routeList = QStringList::split( "\n", mRouteStdout );
+    QStringList gateway, routeList = QStringList::split( "\n", mRouteStdout );
     QStringList::Iterator it;
     for ( it = routeList.begin(); it != routeList.end(); ++it )
     {
         QStringList routeParameter = QStringList::split( " ", *it );
+#ifdef Q_OS_FREEBSD
+        if ( routeParameter.count() != 2 )
+            continue;
+        if ( routeParameter[0] == "gateway:" )
+            gateway = routeParameter;
+        if ( routeParameter[0] == "interface:" )
+            configs[routeParameter[1]] = gateway;
+#else        
         if ( routeParameter.count() < 8 ) // no routing entry
             continue;
         if ( routeParameter[0] != "0.0.0.0" ) // no default route
             continue;
         configs[routeParameter[7]] = routeParameter;
+#endif
     }
 
     /* We loop over the interfaces the user wishs to monitor.