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
|
/*
This file is part of procinfo-NG
procinfo-NG 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; version 2.
procinfo-NG 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 procinfo-NG; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Procinfo-NG is Copyright tabris@tabris.net 2007, 2008, 2009
#include <dirent.h>
#include <sys/stat.h>
#include <map>
#include <vector>
#include <string>
#include <algorithm>
const static string pathSysFs = "/sys/class/net/";
const static string netdevSkipListFile = "/etc/procinfo/skip_interfaces";
vector<string> netdevSkipList;
const static void loadNetdevSkipList(void) {
//vector<string> netdevSkipList;
try {
netdevSkipList = readFile(netdevSkipListFile);
} catch (string exceptionMsg) {
// we don't care, really.
// we just want to catch the exception.
}
//return netdevSkipList;
}
static inline bool pathIsDir(const string path) {
struct stat buf;
if(stat(path.c_str(), &buf) != 0) {
return false;
}
return ((buf.st_mode & S_IFMT) == S_IFDIR);
}
static inline bool pathIsDir(const string basePath, const string dname) {
const string path = basePath + "/" + dname;
return pathIsDir(path);
}
static inline bool pathIsDir(const string basePath, const char *dname) {
const string path = basePath + "/" + dname;
return pathIsDir(path);
}
static inline bool dentryIsDir(const string basePath, const struct dirent64 *dentry) {
if(dentry->d_type == DT_DIR) {
return true;
} else if(dentry->d_type == DT_LNK) {
return pathIsDir(basePath, dentry->d_name);
}
return false;
}
vector <string> findInterfaces(void) {
vector <string> result;
DIR *dirHandle = opendir(pathSysFs.c_str());
if(dirHandle == NULL) {
throw "Unable to opendir(/sys/class/net/)";
}
struct dirent64 *dentry;
const static string thisDir("."), parentDir("..");
struct stat buf;
while((dentry = readdir64(dirHandle)) != NULL) {
if(dentryIsDir(pathSysFs, dentry)) {
// if the dentry is a dir, and not a magic dir ('.' or '..')
// then we process it. Otherwise, we ignore it.
// perl's 'next' is the same as C's 'continue'
if(dentry->d_name == thisDir || dentry->d_name == parentDir) {
continue;
}
// This double if-block could be just one,
// but I think this is more readable.
} else {
// if dentry is not a directory, we aren't interested.
continue;
}
string path = pathSysFs + (dentry->d_name) + ("/statistics/rx_bytes");
if( stat(path.c_str(), &buf) == 0 ) {
// if stat(...) == 0, that is success
// (all we care about is that it's not -ENOENT or some other error)
result.push_back(dentry->d_name);
}
}
closedir(dirHandle);
sort(result.begin(), result.end());
return result;
}
struct __netStat {
char iface[32];
uint64_t rx_bytes, tx_bytes;
uint64_t rx_packets, tx_packets;
};
struct __netStat getIfaceStats(const string interface) {
struct __netStat ifStat;
bzero(&ifStat, sizeof(ifStat));
vector <string> lines;
lines = readFile(pathSysFs+interface+"/statistics/rx_bytes");
if(lines.size()) {
ifStat.rx_bytes = string2uint64(lines[0]);
}
lines = readFile(pathSysFs+interface+"/statistics/tx_bytes");
if(lines.size()) {
ifStat.tx_bytes = string2uint64(lines[0]);
}
lines = readFile(pathSysFs+interface+"/statistics/rx_packets");
if(lines.size()) {
ifStat.rx_packets = string2uint64(lines[0]);
}
lines = readFile(pathSysFs+interface+"/statistics/tx_packets");
if(lines.size()) {
ifStat.tx_packets = string2uint64(lines[0]);
}
return ifStat;
}
struct ltstr
{
// This is a bastard concept, only used for the STL hashtable we use.
// It requires a compare function, and this provides it.
bool operator()(string s1, string s2) const
{
return (s1 < s2);
}
};
const static inline uint64_t getRXdiff(const struct __netStat &newStat,
const struct __netStat &oldStat)
{
return newStat.rx_bytes - oldStat.rx_bytes;
}
const static inline uint64_t getTXdiff(const struct __netStat &newStat,
const struct __netStat &oldStat)
{
return newStat.tx_bytes - oldStat.tx_bytes;
}
vector <vector <string> > getNetStats(bool perSecond, bool showTotals, bool skipIfaces, const double interval) {
static map<string, struct __netStat, ltstr> oldInterfaceStats;
static map<string, struct __netStat, ltstr> interfaceStats;
vector <string> interfaces = findInterfaces();
vector <vector <string > > entries; entries.reserve(interfaces.size());
for(unsigned int i = 0; i < interfaces.size(); i++) {
string iface = interfaces[i];
interfaceStats[iface] = getIfaceStats(iface);
const bool newIF = ( oldInterfaceStats.find(iface) == oldInterfaceStats.end() );
struct __netStat ifaceStats;
const struct __netStat ifaceStat = interfaceStats[iface];
const struct __netStat oldIfaceStat = oldInterfaceStats[iface];
if( perSecond && !showTotals && !newIF ) {
ifaceStats.rx_bytes = uint64_t(getRXdiff(ifaceStat, oldIfaceStat) / interval);
ifaceStats.tx_bytes = uint64_t(getTXdiff(ifaceStat, oldIfaceStat) / interval);
} else if( !perSecond && !showTotals && !newIF ) {
ifaceStats.rx_bytes = getRXdiff(ifaceStat, oldIfaceStat);
ifaceStats.tx_bytes = getTXdiff(ifaceStat, oldIfaceStat);
} else {
ifaceStats.rx_bytes = ifaceStat.rx_bytes;
ifaceStats.tx_bytes = ifaceStat.tx_bytes;
}
bool skipIface = false;
if(skipIfaces) {
if(unsigned int netdevSkipListSize = netdevSkipList.size()) {
for(unsigned int i = 0; i < netdevSkipListSize; ++i) {
const string netdevPrefix = netdevSkipList[i];
if(iface.find(netdevPrefix) != string::npos) {
skipIface = true;
}
}
}
}
if(!skipIface) {
vector <string> row(3);
row[0] = iface;
row[1] = "TX " + humanizeBigNums(ifaceStats.tx_bytes);
row[2] = "RX " + humanizeBigNums(ifaceStats.rx_bytes);
entries.push_back(row);
}
}
oldInterfaceStats = interfaceStats;
interfaceStats.clear();
const unsigned int split = entries.size() / 2 + (entries.size() & 1); // is equiv to (entries.size() % 2)
vector <vector <string > > rows; rows.reserve(split);
for(unsigned int i = 0; i < split; i++) {
vector <string> row(entries[i]); // note initial initializing, saves time/space
if(entries.size() > i+split)
//row.insert(row.end, entries[i+split].begin(), entries[i+split].end());
try {
// foo.at() throws an exception instead of segfaulting.
row.push_back(entries.at(i+split)[0]);
row.push_back(entries.at(i+split)[1]);
row.push_back(entries.at(i+split)[2]);
} catch(...) {
// We don't do anything.
}
rows.push_back(row);
}
return rows;
}
|