/////////////////////////////////////////////////////////////////////////////// // MuldeR's Utilities for Qt // Copyright (C) 2004-2016 LoRd_MuldeR // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library 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 // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // // http://www.gnu.org/licenses/lgpl-2.1.txt ////////////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include #include #include #include #include using namespace MUtils; /////////////////////////////////////////////////////////////////////////////// // CONSTANTS /////////////////////////////////////////////////////////////////////////////// static const char *header_id = "!Update"; static const char *mirror_url_postfix[] = { "update.ver", "update_beta.ver", NULL }; static const char *update_mirrors[] = { "http://muldersoft.com/", "http://mulder.bplaced.net/", "http://mulder.6te.net/", "http://mulder.webuda.com/", "http://mulder.pe.hu/", "http://muldersoft.square7.ch/", "http://muldersoft.co.nf/", "http://muldersoft.eu.pn/", "http://muldersoft.lima-city.de/", "http://www.muldersoft.keepfree.de/", "http://lamexp.sourceforge.net/", "http://lordmulder.github.io/LameXP/", "http://lord_mulder.bitbucket.org/", "http://www.tricksoft.de/", "http://repo.or.cz/LameXP.git/blob_plain/gh-pages:/", "http://gitlab.com/lamexp/lamexp/raw/gh-pages/", NULL }; static const char *known_hosts[] = //Taken form: http://www.alexa.com/topsites !!! { "www.163.com", "www.7-zip.org", "www.ac3filter.net", "clbianco.altervista.org", "status.aws.amazon.com", "build.antergos.com", "www.aol.com", "www.apache.org", "www.apple.com", "www.adobe.com", "archive.org", "www.artlebedev.ru", "web.audacityteam.org", "status.automattic.com", "www.avidemux.org", "www.babylon.com", "www.baidu.com", "bandcamp.com", "www.bbc.co.uk", "www.berlios.de", "www.bing.com", "www.bingeandgrab.com", "www.bucketheadpikes.com", "www.buckethead-coop.com", "www.buzzfeed.com", "www.ccc.de", "www.citizeninsomniac.com", "www.cnet.com", "cnzz.com", "www.codeplex.com", "www.codeproject.com", "www.der-postillon.com", "www.ebay.com", "www.equation.com", "www.farbrausch.de", "fc2.com", "fedoraproject.org", "blog.fefe.de", "www.ffmpeg.org", "blog.flickr.net", "free-codecs.com", "git-scm.com", "doc.gitlab.com", "www.gmx.net", "news.gnome.org", "www.gnu.org", "go.com", "code.google.com", "haali.su", "www.heise.de", "www.huffingtonpost.co.uk", "www.iana.org", "www.imdb.com", "www.imgburn.com", "imgur.com", "www.jd.com", "www.jiscdigitalmedia.ac.uk", "kannmanumdieuhrzeitschonnbierchentrinken.de", "mirrors.kernel.org", "komisar.gin.by", "lame.sourceforge.net", "www.libav.org", "blog.linkedin.com", "www.linuxmint.com", "www.livedoor.com", "www.livejournal.com", "longplayer.org", "go.mail.ru", "marknelson.us", "www.mediafire.com", "www.mod-technologies.com", "ftp.mozilla.org", "mplayerhq.hu", "www.msn.com", "wiki.multimedia.cx", "www.nch.com.au", "mirror.netcologne.de", "oss.netfarm.it", "blog.netflix.com", "netrenderer.de", "www.nytimes.com", "www.opera.com", "www.partha.com", "pastebin.com", "pastie.org", "portableapps.com", "www.portablefreeware.com", "support.proboards.com", "www.qq.com", "www.qt.io", "www.quakelive.com", "rationalqm.us", "www.seamonkey-project.org", "selfhtml.org", "www.sina.com.cn", "www.sohu.com", "help.sogou.com", "sourceforge.net", "www.spiegel.de", "www.sputnikmusic.com", "stackoverflow.com", "www.t-online.de", "www.tagesschau.de", "tdm-gcc.tdragon.net", "www.tdrsmusic.com", "www.ubuntu.com", "www.uol.com.br", "www.videohelp.com", "www.videolan.org", "virtualdub.org", "blog.virustotal.com", "www.vkgoeswild.com", "www.warr.org", "www.weibo.com", "status.wikimedia.org", "www.winamp.com", "www.winhoros.de", "wpde.org", "x265.org", "xhmikosr.1f0.de", "xiph.org", "us.mail.yahoo.com", "www.youtube.com", "www.zedo.com", "ffmpeg.zeranoe.com", NULL }; static const int MIN_CONNSCORE = 5; static const int VERSION_INFO_EXPIRES_MONTHS = 6; static char *USER_AGENT_STR = "Mozilla/5.0 (X11; Linux i686; rv:10.0) Gecko/20100101 Firefox/10.0"; /*use something innocuous*/ //////////////////////////////////////////////////////////// // Helper Functions //////////////////////////////////////////////////////////// static int getMaxProgress(void) { int counter = MIN_CONNSCORE + 2; for(int i = 0; update_mirrors[i]; i++) counter++; return counter; } static QStringList buildRandomList(const char *const values[]) { QStringList list; for (int index = 0; values[index]; index++) { const int pos = next_rand_u32() % (index + 1); list.insert(pos, QString::fromLatin1(values[index])); } return list; } //////////////////////////////////////////////////////////// // Update Info Class //////////////////////////////////////////////////////////// UpdateCheckerInfo::UpdateCheckerInfo(void) { resetInfo(); } void UpdateCheckerInfo::resetInfo(void) { m_buildNo = 0; m_buildDate.setDate(1900, 1, 1); m_downloadSite.clear(); m_downloadAddress.clear(); m_downloadFilename.clear(); m_downloadFilecode.clear(); m_downloadChecksum.clear(); } bool UpdateCheckerInfo::isComplete(void) { if(this->m_buildNo < 1) return false; if(this->m_buildDate.year() < 2010) return false; if(this->m_downloadSite.isEmpty()) return false; if(this->m_downloadAddress.isEmpty()) return false; if(this->m_downloadFilename.isEmpty()) return false; if(this->m_downloadFilecode.isEmpty()) return false; if(this->m_downloadChecksum.isEmpty()) return false; return true; } //////////////////////////////////////////////////////////// // Constructor & Destructor //////////////////////////////////////////////////////////// UpdateChecker::UpdateChecker(const QString &binWGet, const QString &binNC, const QString &binGnuPG, const QString &binKeys, const QString &applicationId, const quint32 &installedBuildNo, const bool betaUpdates, const bool testMode) : m_updateInfo(new UpdateCheckerInfo()), m_binaryWGet(binWGet), m_binaryNC(binNC), m_binaryGnuPG(binGnuPG), m_binaryKeys(binKeys), m_applicationId(applicationId), m_installedBuildNo(installedBuildNo), m_betaUpdates(betaUpdates), m_testMode(testMode), m_maxProgress(getMaxProgress()) { m_success = false; m_status = UpdateStatus_NotStartedYet; m_progress = 0; if(m_binaryWGet.isEmpty() || m_binaryGnuPG.isEmpty() || m_binaryKeys.isEmpty()) { MUTILS_THROW("Tools not initialized correctly!"); } } UpdateChecker::~UpdateChecker(void) { } //////////////////////////////////////////////////////////// // Protected functions //////////////////////////////////////////////////////////// void UpdateChecker::run(void) { qDebug("Update checker thread started!"); MUTILS_EXCEPTION_HANDLER(m_testMode ? testKnownHosts() : checkForUpdates()); qDebug("Update checker thread completed."); } void UpdateChecker::checkForUpdates(void) { // ----- Initialization ----- // m_success = false; m_updateInfo->resetInfo(); setProgress(0); // ----- Test Internet Connection ----- // log("Checking internet connection...", ""); setStatus(UpdateStatus_CheckingConnection); const int networkStatus = OS::network_status(); if(networkStatus == OS::NETWORK_TYPE_NON) { log("Operating system reports that the computer is currently offline !!!"); setProgress(m_maxProgress); setStatus(UpdateStatus_ErrorNoConnection); return; } setProgress(1); // ----- Test Known Hosts Connectivity ----- // int connectionScore = 0, connectionRetry = MIN_CONNSCORE; QStringList hostList = buildRandomList(known_hosts); while((!hostList.isEmpty()) && (connectionScore < MIN_CONNSCORE) && (connectionRetry > 0)) { connectionRetry--; if(tryContactHost(hostList.takeFirst())) { connectionScore += 1; connectionRetry = MIN_CONNSCORE; } setProgress(qBound(1, connectionScore + 1, MIN_CONNSCORE + 1)); msleep(25); } if(connectionScore < MIN_CONNSCORE) { log("", "Connectivity test has failed: Internet connection appears to be broken!"); setProgress(m_maxProgress); setStatus(UpdateStatus_ErrorConnectionTestFailed); return; } // ----- Fetch Update Info From Server ----- // log("----", "", "Checking for updates online..."); setStatus(UpdateStatus_FetchingUpdates); QStringList mirrorList = buildRandomList(update_mirrors); while(!mirrorList.isEmpty()) { QString currentMirror = mirrorList.takeFirst(); setProgress(m_progress + 1); if(!m_success) { if(tryUpdateMirror(m_updateInfo.data(), currentMirror)) { m_success = true; } } else { msleep(25); } } setProgress(m_maxProgress); if(m_success) { if(m_updateInfo->m_buildNo > m_installedBuildNo) { setStatus(UpdateStatus_CompletedUpdateAvailable); } else if(m_updateInfo->m_buildNo == m_installedBuildNo) { setStatus(UpdateStatus_CompletedNoUpdates); } else { setStatus(UpdateStatus_CompletedNewVersionOlder); } } else { setStatus(UpdateStatus_ErrorFetchUpdateInfo); } } void UpdateChecker::testKnownHosts(void) { QStringList hostList; for(int i = 0; known_hosts[i]; i++) { hostList << QString::fromLatin1(known_hosts[i]); } qDebug("\n[Known Hosts]"); log("Testing all known hosts...", "", "---"); int hostCount = hostList.count(); while(!hostList.isEmpty()) { QString currentHost = hostList.takeFirst(); qDebug("Testing: %s", currentHost.toLatin1().constData()); log("", "Testing:", currentHost, ""); if (!tryContactHost(currentHost)) { qWarning("\nConnectivity test FAILED on the following host:\n%s\n", currentHost.toLatin1().constData()); } log("", "---"); } } //////////////////////////////////////////////////////////// // PRIVATE FUNCTIONS //////////////////////////////////////////////////////////// void UpdateChecker::setStatus(const int status) { if(m_status != status) { m_status = status; emit statusChanged(status); } } void UpdateChecker::setProgress(const int progress) { if(m_progress != progress) { m_progress = progress; emit progressChanged(progress); } } void UpdateChecker::log(const QString &str1, const QString &str2, const QString &str3, const QString &str4) { if(!str1.isNull()) emit messageLogged(str1); if(!str2.isNull()) emit messageLogged(str2); if(!str3.isNull()) emit messageLogged(str3); if(!str4.isNull()) emit messageLogged(str4); } bool UpdateChecker::tryUpdateMirror(UpdateCheckerInfo *updateInfo, const QString &url) { bool success = false; log("", "Trying mirror:", url); const QString randPart = next_rand_str(); const QString outFileVers = QString("%1/%2.ver").arg(temp_folder(), randPart); const QString outFileSign = QString("%1/%2.sig").arg(temp_folder(), randPart); if(getUpdateInfo(url, outFileVers, outFileSign)) { log("", "Download okay, checking signature:"); if(checkSignature(outFileVers, outFileSign)) { log("", "Signature okay, parsing info:"); success = parseVersionInfo(outFileVers, updateInfo); } else { log("", "Bad signature, take care!"); } } else { log("", "Download has failed!"); } QFile::remove(outFileVers); QFile::remove(outFileSign); return success; } bool UpdateChecker::getUpdateInfo(const QString &url, const QString &outFileVers, const QString &outFileSign) { log("", "Downloading update info:"); if(!getFile(QString("%1%2" ).arg(url, mirror_url_postfix[m_betaUpdates ? 1 : 0]), outFileVers)) { return false; } log("", "Downloading signature:"); if(!getFile(QString("%1%2.sig2").arg(url, mirror_url_postfix[m_betaUpdates ? 1 : 0]), outFileSign)) { return false; } return true; } bool UpdateChecker::parseVersionInfo(const QString &file, UpdateCheckerInfo *updateInfo) { QRegExp value("^(\\w+)=(.+)$"); QRegExp section("^\\[(.+)\\]$"); QDate updateInfoDate; updateInfo->resetInfo(); QFile data(file); if(!data.open(QIODevice::ReadOnly)) { qWarning("Cannot open update info file for reading!"); return false; } bool inHdr = false; bool inSec = false; while(!data.atEnd()) { QString line = QString::fromLatin1(data.readLine()).trimmed(); if(section.indexIn(line) >= 0) { log(QString("Sec: [%1]").arg(section.cap(1))); inSec = (section.cap(1).compare(m_applicationId, Qt::CaseInsensitive) == 0); inHdr = (section.cap(1).compare(QString::fromLatin1(header_id), Qt::CaseInsensitive) == 0); continue; } if(inSec && (value.indexIn(line) >= 0)) { log(QString("Val: '%1' ==> '%2").arg(value.cap(1), value.cap(2))); if(value.cap(1).compare("BuildNo", Qt::CaseInsensitive) == 0) { bool ok = false; const unsigned int temp = value.cap(2).toUInt(&ok); if(ok) updateInfo->m_buildNo = temp; } else if(value.cap(1).compare("BuildDate", Qt::CaseInsensitive) == 0) { const QDate temp = QDate::fromString(value.cap(2).trimmed(), Qt::ISODate); if(temp.isValid()) updateInfo->m_buildDate = temp; } else if(value.cap(1).compare("DownloadSite", Qt::CaseInsensitive) == 0) { updateInfo->m_downloadSite = value.cap(2).trimmed(); } else if(value.cap(1).compare("DownloadAddress", Qt::CaseInsensitive) == 0) { updateInfo->m_downloadAddress = value.cap(2).trimmed(); } else if(value.cap(1).compare("DownloadFilename", Qt::CaseInsensitive) == 0) { updateInfo->m_downloadFilename = value.cap(2).trimmed(); } else if(value.cap(1).compare("DownloadFilecode", Qt::CaseInsensitive) == 0) { updateInfo->m_downloadFilecode = value.cap(2).trimmed(); } else if(value.cap(1).compare("DownloadChecksum", Qt::CaseInsensitive) == 0) { updateInfo->m_downloadChecksum = value.cap(2).trimmed(); } } if(inHdr && (value.indexIn(line) >= 0)) { log(QString("Val: '%1' ==> '%2").arg(value.cap(1), value.cap(2))); if(value.cap(1).compare("TimestampCreated", Qt::CaseInsensitive) == 0) { QDate temp = QDate::fromString(value.cap(2).trimmed(), Qt::ISODate); if(temp.isValid()) updateInfoDate = temp; } } } if(!updateInfoDate.isValid()) { updateInfo->resetInfo(); log("WARNING: Version info timestamp is missing!"); return false; } const QDate currentDate = OS::current_date(); if(updateInfoDate.addMonths(VERSION_INFO_EXPIRES_MONTHS) < currentDate) { updateInfo->resetInfo(); log(QString::fromLatin1("WARNING: This version info has expired at %1!").arg(updateInfoDate.addMonths(VERSION_INFO_EXPIRES_MONTHS).toString(Qt::ISODate))); return false; } else if(currentDate < updateInfoDate) { log("Version info is from the future, take care!"); qWarning("Version info is from the future, take care!"); } if(!updateInfo->isComplete()) { log("WARNING: Version info is incomplete!"); return false; } return true; } //---------------------------------------------------------- // EXTERNAL TOOLS //---------------------------------------------------------- bool UpdateChecker::getFile(const QString &url, const QString &outFile, const unsigned int maxRedir, bool *httpOk) { for (int i = 0; i < 2; i++) { if (getFile(url, (i > 0), outFile, maxRedir, httpOk)) { return true; } } return false; } bool UpdateChecker::getFile(const QString &url, const bool forceIp4, const QString &outFile, const unsigned int maxRedir, bool *httpOk) { QFileInfo output(outFile); output.setCaching(false); if (httpOk) *httpOk = false; if (output.exists()) { QFile::remove(output.canonicalFilePath()); if (output.exists()) { return false; } } QProcess process; init_process(process, output.absolutePath()); QStringList args; if (forceIp4) { args << "-4"; } args << "--no-config" << "--no-cache" << "--no-dns-cache" << "--no-check-certificate" << "--no-hsts"; args << QString().sprintf("--max-redirect=%u", maxRedir) << "--timeout=15"; args << QString("--referer=%1://%2/").arg(QUrl(url).scheme(), QUrl(url).host()) << "-U" << USER_AGENT_STR; args << "-O" << output.fileName() << url; QEventLoop loop; connect(&process, SIGNAL(error(QProcess::ProcessError)), &loop, SLOT(quit())); connect(&process, SIGNAL(finished(int, QProcess::ExitStatus)), &loop, SLOT(quit())); connect(&process, SIGNAL(readyRead()), &loop, SLOT(quit())); QTimer timer; timer.setSingleShot(true); connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); const QRegExp httpResponseOK("200 OK$"); process.start(m_binaryWGet, args); if (!process.waitForStarted()) { return false; } timer.start(25000); while (process.state() != QProcess::NotRunning) { loop.exec(); const bool bTimeOut = (!timer.isActive()); while (process.canReadLine()) { QString line = QString::fromLatin1(process.readLine()).simplified(); if (line.contains(httpResponseOK)) { line.append(" [OK]"); if (httpOk) *httpOk = true; } log(line); } if (bTimeOut) { qWarning("WGet process timed out <-- killing!"); process.kill(); process.waitForFinished(); log("!!! TIMEOUT !!!"); return false; } } timer.stop(); timer.disconnect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); log(QString().sprintf("Exited with code %d", process.exitCode())); return (process.exitCode() == 0) && output.exists() && output.isFile(); } bool UpdateChecker::tryContactHost(const QString &hostname) { log(QString("Connecting to host: %1").arg(hostname)); QProcess process; init_process(process, temp_folder()); QStringList args; args << "-z" << hostname << QString::number(80); QEventLoop loop; connect(&process, SIGNAL(error(QProcess::ProcessError)), &loop, SLOT(quit())); connect(&process, SIGNAL(finished(int, QProcess::ExitStatus)), &loop, SLOT(quit())); connect(&process, SIGNAL(readyRead()), &loop, SLOT(quit())); QTimer timer; timer.setSingleShot(true); connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); process.start(m_binaryNC, args); if (!process.waitForStarted()) { return false; } timer.start(10000); while (process.state() != QProcess::NotRunning) { loop.exec(); const bool bTimeOut = (!timer.isActive()); while (process.canReadLine()) { QString line = QString::fromLatin1(process.readLine()).simplified(); log(line); } if (bTimeOut) { qWarning("NC process timed out <-- killing!"); process.kill(); process.waitForFinished(); log("!!! TIMEOUT !!!"); return false; } } timer.stop(); timer.disconnect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); if (process.exitCode() != 0) { log("Connection has failed!"); } log(QString().sprintf("Exited with code %d", process.exitCode()), ""); return (process.exitCode() == 0); } bool UpdateChecker::checkSignature(const QString &file, const QString &signature) { if (QFileInfo(file).absolutePath().compare(QFileInfo(signature).absolutePath(), Qt::CaseInsensitive) != 0) { qWarning("CheckSignature: File and signature should be in same folder!"); return false; } QString keyRingPath(m_binaryKeys); bool removeKeyring = false; if (QFileInfo(file).absolutePath().compare(QFileInfo(m_binaryKeys).absolutePath(), Qt::CaseInsensitive) != 0) { keyRingPath = make_temp_file(QFileInfo(file).absolutePath(), "gpg"); removeKeyring = true; if (!QFile::copy(m_binaryKeys, keyRingPath)) { qWarning("CheckSignature: Failed to copy the key-ring file!"); return false; } } QProcess process; init_process(process, QFileInfo(file).absolutePath()); QEventLoop loop; connect(&process, SIGNAL(error(QProcess::ProcessError)), &loop, SLOT(quit())); connect(&process, SIGNAL(finished(int, QProcess::ExitStatus)), &loop, SLOT(quit())); connect(&process, SIGNAL(readyRead()), &loop, SLOT(quit())); process.start(m_binaryGnuPG, QStringList() << "--homedir" << "." << "--keyring" << QFileInfo(keyRingPath).fileName() << QFileInfo(signature).fileName() << QFileInfo(file).fileName()); if (!process.waitForStarted()) { if (removeKeyring) { remove_file(keyRingPath); } return false; } while (process.state() == QProcess::Running) { loop.exec(); while (process.canReadLine()) { log(QString::fromLatin1(process.readLine()).simplified()); } } if (removeKeyring) { remove_file(keyRingPath); } log(QString().sprintf("Exited with code %d", process.exitCode())); return (process.exitCode() == 0); } //////////////////////////////////////////////////////////// // SLOTS //////////////////////////////////////////////////////////// /*NONE*/ //////////////////////////////////////////////////////////// // EVENTS //////////////////////////////////////////////////////////// /*NONE*/