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
|
/*
* ksmbstatus.cpp
*
* 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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <QLayout>
#include <klocale.h>
#include <kdialog.h>
#include "ksmbstatus.h"
#include "ksmbstatus.moc"
#define Before(ttf,in) in.left(in.indexOf(ttf))
#define After(ttf,in) (in.contains(ttf)?QString(in.mid(in.indexOf(ttf)+QString(ttf).length())):QString(""))
NetMon::NetMon(QWidget * parent, KConfig *config) :
QWidget(parent), configFile(config), showmountProc(0), strShare(""), strUser(""), strGroup(""), strMachine(""), strSince(""), strPid(""), iUser(0), iGroup(0), iMachine(0), iPid(0) {
QBoxLayout *topLayout = new QVBoxLayout(this);
topLayout->setMargin(KDialog::marginHint());
topLayout->setSpacing(KDialog::spacingHint());
list = new QTreeWidget(this);
topLayout->addWidget(list);
version=new QLabel(this);
topLayout->addWidget(version);
list->setAllColumnsShowFocus(true);
list->setMinimumSize(425, 200);
QStringList headers;
headers << i18n("Type") << i18n("Service") << i18n("Accessed From")
<< i18n("UID") << i18n("GID") << i18n("PID") << i18n("Open Files");
list->setHeaderLabels(headers);
timer = new QTimer(this);
timer->start(15000);
QObject::connect(timer, SIGNAL(timeout()), this, SLOT(update()));
update();
}
void NetMon::processNFSLine(char *bufline, int) {
QByteArray line(bufline);
if (line.contains(":/")) {
QTreeWidgetItem *item = new QTreeWidgetItem(list);
item->setText(0, "NFS");
item->setText(0, After(":",line));
item->setText(0, Before(":/",line));
}
}
void NetMon::processSambaLine(char *bufline, int) {
QByteArray line(bufline);
rownumber++;
if (rownumber == 2)
version->setText(bufline); // second line = samba version
if ((readingpart==header) && line.contains("Service")) {
iUser=line.indexOf("uid");
iGroup=line.indexOf("gid");
iPid=line.indexOf("pid");
iMachine=line.indexOf("machine");
} else if ((readingpart==header) && (line.contains("---"))) {
readingpart=connexions;
} else if ((readingpart==connexions) && (int(line.length())>=iMachine)) {
strShare=line.mid(0, iUser);
strUser=line.mid(iUser, iGroup-iUser);
strGroup=line.mid(iGroup, iPid-iGroup);
strPid=line.mid(iPid, iMachine-iPid);
line=line.mid(iMachine, line.length());
strMachine=line;
QTreeWidgetItem * item = new QTreeWidgetItem(list);
item->setText(0, "SMB");
item->setText(1, strShare);
item->setText(2, strMachine);
item->setText(3, strUser);
item->setText(4, strGroup);
item->setText(5, strPid/*,strSince*/);
} else if (readingpart==connexions)
readingpart=locked_files;
else if ((readingpart==locked_files) && (line.indexOf("No ")==0))
readingpart=finished;
else if (readingpart==locked_files) {
if ((strncmp(bufline, "Pi", 2) !=0) // "Pid DenyMode ..."
&& (strncmp(bufline, "--", 2) !=0)) // "------------"
{
char *tok=strtok(bufline, " ");
if (tok) {
int pid=atoi(tok);
(lo)[pid]++;
}
}
}
}
// called when we get some data from smbstatus
// can be called for any size of buffer (one line, several lines,
// half of one ...)
void NetMon::readFromProcess() {
QProcess *process = qobject_cast<QProcess *>(sender());
if (!process || !process->canReadLine())
return;
qint64 buflen = 8046; // 8k enough?
char buffer[buflen];
buflen = process->readLine(buffer, buflen);
//kDebug()<<"received stuff";
char s[250], *start, *end;
size_t len;
start = buffer;
while ((end = strchr(start, '\n'))) // look for '\n'
{
len = end-start;
if (len>=sizeof(s))
len=sizeof(s)-1;
strncpy(s, start, len);
s[len] = '\0';
//kDebug() << "recived: "<<s;
if (readingpart==nfs)
processNFSLine(s, len);
else
processSambaLine(s, len); // process each line
start=end+1;
}
/* FIXME: is this needed? was here with the Q3Support classes, but seems a little inane
if (readingpart==nfs) {
list->viewport()->update();
list->update();
}
*/
// here we could save the remaining part of line, if ever buffer
// doesn't end with a '\n' ... but will this happen ?
}
void NetMon::smbstatusError()
{
version->setText(i18n("Error: Unable to run smbstatus"));
}
void NetMon::update() {
QProcess *process = new QProcess();
memset(&lo, 0, sizeof(lo));
list->clear();
/* Re-read the Contents ... */
QString path(::getenv("PATH"));
path += "/bin:/sbin:/usr/bin:/usr/sbin";
rownumber=0;
readingpart=header;
nrpid=0;
process->setEnvironment(QStringList() << ("PATH=" + path));
connect(process, SIGNAL(readyRead()), SLOT(readFromProcess()));
connect(process, SIGNAL(error(QProcess::ProcessError)), SLOT(smbstatusError()));
process->start("smbstatus");
process->waitForFinished();
if (rownumber==0) // empty result
version->setText(i18n("Error: Unable to open configuration file \"smb.conf\""));
else
{
// ok -> count the number of locked files for each pid
for (int i = 0; i < list->topLevelItemCount(); ++i)
{
QTreeWidgetItem *row = list->topLevelItem(i);
// cerr<<"NetMon::update: this should be the pid: "<<row->text(5)<<endl;
int pid=row->text(5).toInt();
row->setText(6,QString("%1").arg((lo)[pid]));
}
}
delete process;
process=0;
readingpart=nfs;
delete showmountProc;
showmountProc=new QProcess();
connect(showmountProc, SIGNAL(readyRead()), SLOT(readFromProcess()));
showmountProc->setEnvironment(QStringList() << ("PATH=" + path));
//without this timer showmount hangs up to 5 minutes
//if the portmapper daemon isn't running
QTimer::singleShot(5000,this,SLOT(killShowmount()));
//kDebug()<<"starting kill timer with 5 seconds";
connect(showmountProc,SIGNAL(finished(int,QProcess::ExitStatus)),this,SLOT(killShowmount()));
connect(showmountProc,SIGNAL(error(QProcess::ProcessError)),this,SLOT(killShowmount()));
showmountProc->start("showmount", QStringList() << "-a" << "localhost");
version->adjustSize();
list->show();
}
void NetMon::killShowmount() {
//kDebug()<<"killShowmount()";
showmountProc->deleteLater();
showmountProc=0;
}
|