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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Sonic Visualiser
An audio file viewer and annotation editor.
Centre for Digital Music, Queen Mary, University of London.
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. See the file
COPYING included with this distribution for more information.
*/
#include "PluginScan.h"
#include "base/Debug.h"
#include "base/Preferences.h"
#include "base/HelperExecPath.h"
#include <sstream>
#include <set>
#include <QMutex>
#include <QCoreApplication>
#include <QSettings>
using namespace std;
namespace sv {
class PluginScan::Logger
#ifdef HAVE_PLUGIN_CHECKER_HELPER
: public PluginCandidates::LogCallback
#endif
{
protected:
void log(string message)
#ifdef HAVE_PLUGIN_CHECKER_HELPER
override
#endif
{
SVDEBUG << "PluginScan: " << message << endl;
}
};
PluginScan *PluginScan::getInstance()
{
static PluginScan *m_instance = new PluginScan();
return m_instance;
}
PluginScan::PluginScan() :
m_scanned(false),
m_succeeded(false),
m_logger(new Logger) {
}
PluginScan::~PluginScan() {
QMutexLocker locker(&m_mutex);
clear();
delete m_logger;
SVDEBUG << "PluginScan::~PluginScan completed" << endl;
}
void
PluginScan::scan()
{
#ifdef HAVE_PLUGIN_CHECKER_HELPER
QMutexLocker locker(&m_mutex);
if (m_scanned) return;
bool inProcess = Preferences::getInstance()->getRunPluginsInProcess();
HelperExecPath hep(inProcess ?
HelperExecPath::NativeArchitectureOnly :
HelperExecPath::AllInstalled);
QString helperName("vamp-plugin-load-checker");
auto helpers = hep.getHelperExecutables(helperName);
clear();
for (auto p: helpers) {
SVDEBUG << "NOTE: PluginScan: Found helper: " << p.executable << endl;
}
if (helpers.empty()) {
SVDEBUG << "NOTE: No plugin checker helpers found in installation;"
<< " found none of the following:" << endl;
for (auto d: hep.getHelperCandidatePaths(helperName)) {
SVDEBUG << "NOTE: " << d << endl;
}
}
QSettings settings;
settings.beginGroup("PluginScan");
auto ignoredSetting = settings.value("ignored").toMap();
settings.endGroup();
vector<string> ignored;
for (auto s: ignoredSetting.keys()) {
ignored.push_back(s.toStdString());
}
for (auto p: helpers) {
try {
KnownPluginCandidates *kp = new KnownPluginCandidates
(p.executable.toStdString(), ignored, m_logger);
if (m_kp.find(p.tag) != m_kp.end()) {
SVDEBUG << "WARNING: PluginScan::scan: Duplicate tag " << p.tag
<< " for helpers" << endl;
continue;
}
m_kp[p.tag] = kp;
m_succeeded = true;
} catch (const exception &e) {
SVDEBUG << "ERROR: PluginScan::scan: " << e.what()
<< " (with helper path = " << p.executable << ")" << endl;
}
}
SVDEBUG << "PluginScan::scan complete" << endl;
#endif
}
bool
PluginScan::scanSucceeded() const
{
QMutexLocker locker(&m_mutex);
return m_succeeded;
}
void
PluginScan::clear()
{
for (auto &p: m_kp) {
delete p.second;
}
m_kp.clear();
m_succeeded = false;
}
QList<PluginScan::Candidate>
PluginScan::getCandidateLibrariesFor(PluginType
#ifdef HAVE_PLUGIN_CHECKER_HELPER
type
#endif
) const
{
#ifdef HAVE_PLUGIN_CHECKER_HELPER
QMutexLocker locker(&m_mutex);
KnownPlugins::PluginType kpt;
switch (type) {
case VampPlugin: kpt = KnownPlugins::VampPlugin; break;
case LADSPAPlugin: kpt = KnownPlugins::LADSPAPlugin; break;
case DSSIPlugin: kpt = KnownPlugins::DSSIPlugin; break;
default: throw logic_error("Inconsistency in plugin type enums");
}
QList<Candidate> candidates;
for (auto rec: m_kp) {
KnownPluginCandidates *kp = rec.second;
auto c = kp->getCandidateLibrariesFor(kpt);
SVDEBUG << "PluginScan: helper \"" << kp->getHelperExecutableName()
<< "\" likes " << c.size() << " libraries of type "
<< kp->getTagFor(kpt) << endl;
for (auto s: c) {
candidates.push_back({ s.c_str(), rec.first });
}
if (type != VampPlugin) {
// We are only interested in querying multiple helpers
// when dealing with Vamp plugins, for which we can use
// external servers and so in some cases can support
// additional architectures. Other plugin formats are
// loaded directly and so must match the host, which is
// what the first helper is supposed to handle -- so
// break after the first one if not querying Vamp
break;
}
}
return candidates;
#else
return {};
#endif
}
#ifdef HAVE_PLUGIN_CHECKER_HELPER
QString
PluginScan::formatFailureMessage(QString tag,
pair<KnownPlugins::PluginType,
PluginCandidates::FailureRec> p)
const
{
auto f = p.second;
QString message = QString::fromStdString(f.message);
QString typeStr;
switch (p.first) {
case KnownPlugins::VampPlugin:
typeStr = QObject::tr("Vamp");
break;
case KnownPlugins::LADSPAPlugin:
typeStr = QObject::tr("LADSPA");
break;
case KnownPlugins::DSSIPlugin:
typeStr = QObject::tr("DSSI");
break;
}
switch (f.code) {
case PluginCheckCode::FAIL_LIBRARY_NOT_FOUND:
message = QObject::tr("Library file could not be opened");
break;
case PluginCheckCode::FAIL_WRONG_ARCHITECTURE:
if (tag == "64" || (sizeof(void *) == 8 && tag == "")) {
message = QObject::tr
("Library has wrong architecture - possibly a 32-bit plugin installed in a 64-bit plugin folder");
} else if (tag == "32" || (sizeof(void *) == 4 && tag == "")) {
message = QObject::tr
("Library has wrong architecture - possibly a 64-bit plugin installed in a 32-bit plugin folder");
}
break;
case PluginCheckCode::FAIL_DEPENDENCY_MISSING:
message = QObject::tr
("Library depends on another library that cannot be found: %1")
.arg(message);
break;
case PluginCheckCode::FAIL_NOT_LOADABLE:
message = QObject::tr
("Library cannot be loaded: %1").arg(message);
break;
case PluginCheckCode::FAIL_FORBIDDEN:
message = QObject::tr
("Permission to load library was refused");
break;
case PluginCheckCode::FAIL_DESCRIPTOR_MISSING:
message = QObject::tr
("Not a valid %1 plugin library (no descriptor found)")
.arg(typeStr);
break;
case PluginCheckCode::FAIL_NO_PLUGINS:
message = QObject::tr
("%1 plugin library contains no plugins")
.arg(typeStr);
break;
case PluginCheckCode::FAIL_OTHER:
if (message == "") {
message = QObject::tr
("Unknown error");
}
break;
case PluginCheckCode::FAIL_ON_IGNORE_LIST:
// should have been given special treatment already (by ignoring)
break;
case PluginCheckCode::SUCCESS:
// success shouldn't happen here!
break;
}
return message;
}
QString
PluginScan::formatFailureReport(QString tag,
vector<pair<KnownPlugins::PluginType,
PluginCandidates::FailureRec>>
failures)
const
{
int n = int(failures.size());
int i = 0;
ostringstream os;
os << "<ul>";
for (auto p: failures) {
auto f = p.second;
os << "<li><code>" + f.library + "</code>";
SVDEBUG << "PluginScan::formatFailureReport: tag is \"" << tag
<< "\", failure code is " << int(f.code) << ", message is \""
<< f.message << "\"" << endl;
QString userMessage = formatFailureMessage(tag, p);
os << "<br><i>" + userMessage.toStdString() + "</i>";
os << "</li>";
if (n > 10) {
if (++i == 5) {
os << "<li>";
os << QObject::tr("... and %n further failure(s)",
"", n - i)
.toStdString();
os << "</li>";
break;
}
}
}
os << "</ul>";
return QString::fromStdString(os.str());
}
#endif
QString
PluginScan::getStartupFailureReport() const
{
#ifdef HAVE_PLUGIN_CHECKER_HELPER
QMutexLocker locker(&m_mutex);
if (!m_succeeded) {
return QObject::tr("<b>Failed to scan for plugins</b>"
"<p>Failed to scan for plugins at startup. Possibly "
"the plugin checker program was not correctly "
"installed alongside %1?</p>")
.arg(QCoreApplication::applicationName());
}
if (m_kp.empty()) {
return QObject::tr("<b>Did not scan for plugins</b>"
"<p>Apparently no scan for plugins was attempted "
"(internal error?)</p>");
}
set<string> silenced;
#ifdef Q_OS_MAC
// On the Mac there are no separate locations for different plugin
// architectures, so all helpers scan the same set of
// plugins. It's therefore natural that a library should fail with
// one helper and succeed with another. We want to make a note of
// all libraries that succeeded with any helper, and avoid
// complaining about them just because they didn't succeed with
// all helpers.
//
// We only do this on the Mac, because on other platforms there is
// an expectation of separate plugin locations and so this
// situation would genuinely be an error.
//
// We also only omit libraries that fail with type
// FAIL_WRONG_ARCHITECTURE or generic FAIL_NOT_LOADABLE (actually
// FAIL_WRONG_ARCHITECTURE never appears on the Mac as we can't
// determine that from the return value of dlopen, so it's always
// FAIL_NOT_LOADABLE) - anything else is unexpected for this
// situation and so could be an actual problem.
//
// Note also this only applies to Vamp plugins - others are always
// handled in-process, so only the active architecture applies.
for (auto kp: m_kp) {
auto successes =
kp.second->getCandidateLibrariesFor(KnownPlugins::VampPlugin);
for (auto s: successes) {
silenced.insert(s);
}
}
#endif
QSettings settings;
settings.beginGroup("PluginScan");
auto ignored = settings.value("ignored").toMap();
QString report;
for (auto kp: m_kp) {
auto failures = kp.second->getFailures();
vector<pair<KnownPlugins::PluginType, PluginCandidates::FailureRec>>
filtered;
for (auto p: failures) {
auto f = p.second;
if (f.code == PluginCheckCode::FAIL_WRONG_ARCHITECTURE ||
f.code == PluginCheckCode::FAIL_NOT_LOADABLE) {
if (silenced.find(f.library) != silenced.end()) {
continue;
}
}
if (f.code != PluginCheckCode::FAIL_ON_IGNORE_LIST) {
ignored[QString::fromStdString(f.library)] =
formatFailureMessage(kp.first, p);
filtered.push_back(p);
}
}
if (!filtered.empty()) {
report += formatFailureReport(kp.first, filtered);
}
}
if (report == "") {
return report;
}
settings.setValue("ignored", ignored);
settings.endGroup();
return QObject::tr("<p>Failed to load one or more plugin libraries:</p>")
+ report
+ QObject::tr("<p>These plugin libraries may be incompatible with the system, and will be ignored on this and future runs of %1.</p><p>You can review the list of ignored libraries in the Plugins tab of the Preferences.</p>")
.arg(QCoreApplication::applicationName());
#else
return "";
#endif
}
} // end namespace sv
|