From ca82c064ab8834546c55b29c6b2f5c922075b450 Mon Sep 17 00:00:00 2001 From: alwin Date: Mon, 07 Mar 2005 21:22:42 +0000 Subject: hostname should be filtered. Check return value of setting the hostname and write operations. --- (limited to 'noncore/settings/networksettings') diff --git a/noncore/settings/networksettings/mainwindow/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindow/mainwindowimp.cpp index 0a3312c..3222e50 100644 --- a/noncore/settings/networksettings/mainwindow/mainwindowimp.cpp +++ b/noncore/settings/networksettings/mainwindow/mainwindowimp.cpp @@ -26,6 +26,7 @@ #include // in order to disable the profiles tab #include #include +#include #if QT_VERSION < 0x030000 @@ -726,28 +727,43 @@ void MainWindowImp::receive(const QCString &msg, const QByteArray &arg) void MainWindowImp::setHostname() { - QFile f(_HOSTFILE); + static QRegExp filter("[^A-Za-z0-9_\\-\\.]"); + if (filter.match(m_Nameinput->text())!=-1) { + odebug << "Wrong hostname" << oendl; + QMessageBox::critical(0, tr("Sorry"), tr("This is a wrong name.
Please use A-Z, a-z, _, - or a single dot.")); + return; + } - OProcess*h = new OProcess; + OProcess h; _procTemp=""; - *h << "hostname" << m_Nameinput->text(); - connect(h,SIGNAL(receivedStderr(Opie::Core::OProcess*,char*,int)),this,SLOT(slotHostname(Opie::Core::OProcess*,char*,int))); - h->start(OProcess::Block,OProcess::Stderr); - odebug << "Got " << _procTemp << " - " << h->exitStatus() << oendl; + h << "hostname" << m_Nameinput->text(); + connect(&h,SIGNAL(receivedStderr(Opie::Core::OProcess*,char*,int)),this,SLOT(slotHostname(Opie::Core::OProcess*,char*,int))); + h.start(OProcess::Block,OProcess::Stderr); + odebug << "Got " << _procTemp << " - " << h.exitStatus() << oendl; + if (h.exitStatus()!=0) { + QMessageBox::critical(0, tr("Sorry"), QString(tr("Could not set name.\n%1")).arg(_procTemp.stripWhiteSpace())); + return; + } _procTemp=""; - delete h; + QFile f(_HOSTFILE); if (f.open(IO_Truncate|IO_WriteOnly)) { QTextStream s(&f); s << m_Nameinput->text(); + } else { + QMessageBox::critical(0, tr("Sorry"), tr("Could not save name.")); + return; } + f.close(); f.setName(_IRDANAME); if (f.open(IO_WriteOnly)) { QTextStream s(&f); s << m_Nameinput->text(); + } else { + QMessageBox::critical(0, tr("Sorry"), tr("Could not set infrared name.")); } } @@ -760,7 +776,7 @@ void MainWindowImp::initHostname() connect(&h,SIGNAL(receivedStdout(Opie::Core::OProcess*,char*,int)),this,SLOT(slotHostname(Opie::Core::OProcess*,char*,int))); h.start(OProcess::Block,OProcess::AllOutput); odebug << "Got " << _procTemp <setText(_procTemp); + m_Nameinput->setText(_procTemp.stripWhiteSpace()); _procTemp=""; } -- cgit v0.9.0.2