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 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
|
/*---------------------------------------------------------------------------*\
____ _ _ __ _ __ ___ _ _
|_ / || | '_ \ '_ \/ -_) '_|
/__|\_, | .__/ .__/\___|_|
|__/|_| |_|
\*---------------------------------------------------------------------------*/
#include <sstream>
#include <iostream>
#include <unistd.h> // for getcwd()
#include <zypp/base/Logger.h>
#include <zypp/base/String.h>
#include <zypp/base/Easy.h>
#include <zypp/base/Regex.h>
#include <zypp/media/MediaManager.h>
#include <zypp/misc/CheckAccessDeleted.h>
#include <zypp/ExternalProgram.h>
#include <zypp/PoolItem.h>
#include <zypp/Product.h>
#include <zypp/Pattern.h>
#include "main.h"
#include "Zypper.h"
#include "Table.h" // for process list in suggest_restart_services
#include "utils/misc.h"
using namespace std;
using namespace zypp;
// ----------------------------------------------------------------------------
bool is_changeable_media(const zypp::Url & url)
{
MIL << "Checking if this is a changeable medium" << endl;
bool is_cd = false;
try
{
media::MediaManager mm;
media::MediaAccessId id = mm.open(url);
is_cd = mm.isChangeable(id);
mm.close(id);
}
catch (const media::MediaException & e)
{
ZYPP_CAUGHT(e);
WAR << "Could not determine if the URL points to a changeable medium" << endl;
}
return is_cd;
}
// ----------------------------------------------------------------------------
ResKind string_to_kind (const string & skind)
{
ResObject::Kind empty;
string lskind = str::toLower (skind);
if (lskind == "package")
return ResKind::package;
if (lskind == "pattern")
return ResKind::pattern;
if (lskind == "product")
return ResKind::product;
if (lskind == "patch")
return ResKind::patch;
if (lskind == "srcpackage")
return ResKind::srcpackage;
if (lskind == "application")
return ResKind::application;
// not recognized
return empty;
}
// ----------------------------------------------------------------------------
ResKindSet kindset_from(const std::list<std::string> & kindstrings)
{
ResKind kind;
ResKindSet kinds;
for_(it, kindstrings.begin(), kindstrings.end())
{
kind = string_to_kind(*it);
if (kind == ResKind::nokind)
continue;
kinds.insert(kind);
}
return kinds;
}
// ----------------------------------------------------------------------------
string kind_to_string_localized(const zypp::ResKind & kind, unsigned long count)
{
if (kind == ResKind::package)
return _PL("package", "packages", count);
if (kind == ResKind::pattern)
return _PL("pattern", "patterns", count);
if (kind == ResKind::product)
return _PL("product", "product", count);
if (kind == ResKind::patch)
return _PL("patch", "patches", count);
if (kind == ResKind::srcpackage)
return _PL("srcpackage", "srcpackages", count);
if (kind == ResKind::application)
return _PL("application", "applications", count);
// default
return _PL("resolvable", "resolvables", count);
}
// ----------------------------------------------------------------------------
string string_patch_status(const PoolItem & pi)
{
// make sure this will not happen
if (pi.isUndetermined())
return _("Unknown");
if (pi.isRelevant())
{
if (pi.isSatisfied())
return _("Installed"); //! \todo make this "Applied" instead?
if (pi.isBroken())
return _("Needed");
// can this ever happen?
return "";
}
return _("Not Needed");
}
// ----------------------------------------------------------------------------
bool looks_like_url (const string& s)
{
string::size_type pos = s.find (':');
if (pos != string::npos)
{
string scheme (s, 0, pos);
if (Url::isRegisteredScheme(scheme) || scheme == "obs")
return true;
}
return false;
}
// ----------------------------------------------------------------------------
Url make_url (const string & url_s)
{
Url u;
string urlstr(zypp::url::encode(url_s, URL_SAFE_CHARS));
if (!url_s.empty() && !looks_like_url(url_s))
{
DBG << "'" << url_s << "' does not look like a URL, trying to treat it like a local path" << endl;
Pathname path;
// make an url from absolute path
if (url_s[0] == '/')
path = url_s;
// make absolute path url from relative path
else
{
char buf[PATH_MAX];
if (::getcwd(buf, PATH_MAX) != NULL)
{
DBG << "current working directory: " << buf << endl;
path = string(buf) + "/" + url_s;
}
}
if (PathInfo(path).isExist())
{
urlstr = "dir:" + url::encode(path.absolutename().asString(),"/");
MIL << "resulting url: " << urlstr << endl;
}
else
{
Zypper::instance()->out().error(
_("Specified local path does not exist or is not accessible."));
ERR << "specified local path does not exist or is not accessible" << endl;
return u;
}
}
try {
u = Url(urlstr);
}
catch ( const Exception & excpt_r ) {
ZYPP_CAUGHT( excpt_r );
ostringstream s;
s << _("Given URI is invalid") << ": " << urlstr
<< " (" << excpt_r.asUserString() << ")";
Zypper::instance()->out().error(s.str());
}
return u;
}
// ----------------------------------------------------------------------------
// in the Estonian locale, a-z excludes t, for example. #302525
// http://en.wikipedia.org/wiki/Estonian_alphabet
#define ALNUM "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0-9_"
// valid OBS project name regex from OBS' ApplicationController.valid_project_name? method:
// http://gitorious.org/opensuse/build-service/blobs/master/src/webui/app/controllers/application_controller.rb
#define OBS_PROJECT_NAME_RX "[" ALNUM "][-+" ALNUM "\\.:]+"
Url make_obs_url( const string & obsuri, const Url & base_url, const string & default_platform )
{
// obs-server ==> < base_url, default_platform >
static std::map<std::string, std::pair<zypp::Url,std::string>> wellKnownServers({
{ "build.opensuse.org", { Url("http://download.opensuse.org/repositories/"), std::string() } }
});
static str::regex obs_uri_rx("^obs://(" OBS_PROJECT_NAME_RX ")(/(.*)?)?$");
str::smatch what;
if ( str::regex_match( obsuri, what, obs_uri_rx ) )
{
std::string project( what[1] );
std::string platform( what[3] );
// in case the project matches a well known obs://server,
// strip it and use it's base_url and platform defaults.
// If the servers platform default is empty, use the
// global one.
auto it( wellKnownServers.find( project ) );
if ( it != wellKnownServers.end() )
{
static str::regex obs_uri2_rx("^(" OBS_PROJECT_NAME_RX ")(/(.*)?)?$");
if ( str::regex_match( platform, what, obs_uri2_rx ) )
{
project = what[1];
platform = ( what[3].empty() ? it->second.second : what[3] );
}
else
it = wellKnownServers.end(); // we stay with the 1st match, thus will use the global defaults
}
// Now bulid the url; ':' in project is replaced by ':/'
Url ret( it == wellKnownServers.end() ? base_url : it->second.first );
Pathname path( ret.getPathName() );
path /= str::gsub( project, ":", ":/" );
path /= ( platform.empty() ? default_platform : platform );
ret.setPathName( path.asString() );
return ret;
}
else
{
Zypper::instance()->out().error(_("Invalid OBS URI."), _("Correct form is obs://<project>/[platform]"));
Zypper::instance()->out().info(str::form(_("Example: %s"), "obs://server:http/openSUSE_11.3"));
}
return Url();
}
// ----------------------------------------------------------------------------
bool looks_like_rpm_file(const string & s)
{
// don't even bother to check strings shorter than 4 chars.
if (s.size() <= 4)
return false;
if (s.rfind(".rpm") == s.size() - 4 || // ends with .rpm
s.find("./") == 0 || // starts with ./ or ../ indicating
s.find("../") == 0) // a local path
return true;
return false;
}
// ----------------------------------------------------------------------------
Pathname cache_rpm(const string & rpm_uri_str, const string & cache_dir)
{
Url rpmurl = make_url(rpm_uri_str);
Pathname rpmpath(rpmurl.getPathName());
rpmurl.setPathName(rpmpath.dirname().asString()); // directory
rpmpath = rpmpath.basename(); // rpm file name
try
{
media::MediaManager mm;
media::MediaAccessId mid = mm.open(rpmurl);
mm.attach(mid);
mm.provideFile(mid, rpmpath.basename());
Pathname localrpmpath = mm.localPath(mid, rpmpath.basename());
Pathname cachedrpmpath = cache_dir;
filesystem::assert_dir(cachedrpmpath);
bool error =
filesystem::copy(localrpmpath, cachedrpmpath / localrpmpath.basename());
mm.release(mid);
mm.close(mid);
if (error)
{
Zypper::instance()->out().error(
_("Problem copying the specified RPM file to the cache directory."),
_("Perhaps you are running out of disk space."));
return Pathname();
}
return cachedrpmpath / localrpmpath.basename();
}
catch (const Exception & e)
{
Zypper::instance()->out().error(e,
_("Problem retrieving the specified RPM file") + string(":"),
_("Please check whether the file is accessible."));
}
return Pathname();
}
std::string & indent(std::string & text, int columns)
{
string indent(columns, ' '); indent.insert(0, 1, '\n');
DBG << "to: '" << indent << "'" << endl;
text = str::gsub(text, "\n", indent);
text.insert(0, string(columns, ' '));
return text;
}
/**
* \todo this is an ugly quick-hack code, let's do something reusable and maintainable in libzypp later
*/
// ----------------------------------------------------------------------------
string asXML(const Product & p, bool is_installed)
{
ostringstream str;
{
// Legacy: Encoded almost everything as attribute
// Think about using subnodes for new stuff.
xmlout::Node parent( str, "product", xmlout::Node::optionalContent, {
{ "name", p.name() },
{ "version", p.edition().version() },
{ "release", p.edition().release() },
{ "epoch", p.edition().epoch() },
{ "arch", p.arch() },
{ "vendor", p.vendor() },
{ "summary", p.summary() },
{ "repo", p.repoInfo().alias() },
// ^^^ common --- specific vvv
{ "productline", p.productLine() },
{ "registerrelease",p.registerRelease() },
{ "shortname", p.shortName() },
{ "flavor", p.flavor() },
{ "isbase", p.isTargetDistribution() },
{ "installed", is_installed },
} );
dumpAsXmlOn( *parent, p.endOfLife(), "endoflife" );
{
const std::string & text( p.description() );
if ( ! text.empty() )
*xmlout::Node( *parent, "description" ) << xml::escape( text );
}
}
return str.str();
}
string asXML(const Pattern & p, bool is_installed)
{
ostringstream str;
{
// Legacy: Encoded almost everything as attribute
// Think about using subnodes for new stuff.
xmlout::Node parent( str, "pattern", xmlout::Node::optionalContent, {
{ "name", p.name() },
{ "version", p.edition().version() },
{ "release", p.edition().release() },
{ "epoch", p.edition().epoch() },
{ "arch", p.arch() },
{ "vendor", p.vendor() },
{ "summary", p.summary() },
{ "repo", p.repoInfo().alias() },
// ^^^ common --- specific vvv
{ "installed", is_installed },
{ "uservisible", p.userVisible() },
} );
{
const std::string & text( p.description() );
if ( ! text.empty() )
*xmlout::Node( *parent, "description" ) << xml::escape( text );
}
}
return str.str();
}
// ----------------------------------------------------------------------------
void list_processes_using_deleted_files(Zypper & zypper)
{
zypper.out().info(
_("Checking for running processes using deleted libraries..."), Out::HIGH);
zypp::CheckAccessDeleted checker(false); // wait for explicit call to check()
try
{
checker.check();
}
catch(const zypp::Exception & e)
{
zypper.out().error(e, _("Check failed:"));
return;
}
Table t;
t.allowAbbrev(6);
TableHeader th;
// process ID
th << _("PID");
// parent process ID
th << _("PPID");
// process user ID
th << _("UID");
// process login name
th << _("Login");
// process command name
th << _("Command");
// "/etc/init.d/ script that might be used to restart the command (guessed)
th << _("Service");
// "list of deleted files or libraries accessed"
th << _("Files");
t << th;
for_( it, checker.begin(), checker.end() )
{
TableRow tr;
vector<string>::const_iterator fit = it->files.begin();
tr << it->pid << it->ppid << it->puid << it->login << it->command
<< it->service() << (fit != it->files.end() ? *fit : "");
t << tr;
for (++fit; fit != it->files.end(); ++fit)
{
TableRow tr1;
tr1 << "" << "" << "" << "" << "" << "" << *fit;
t << tr1;
}
}
if (t.empty())
{
zypper.out().info(_("No processes using deleted files found."));
}
else
{
zypper.out().info(_("The following running processes use deleted files:"));
cout << endl;
cout << t << endl;
zypper.out().info(_("You may wish to restart these processes."));
zypper.out().info(str::form(
_("See '%s' for information about the meaning of values"
" in the above table."),
"man zypper"));
}
if ( geteuid() != 0 )
{
zypper.out().info("");
zypper.out().info(_("Note: Not running as root you are limited to searching for files"
" you have permission to examine with the system stat(2) function."
" The result might be incomplete."));
}
}
// ----------------------------------------------------------------------------
DownloadMode get_download_option(Zypper & zypper, bool quiet)
{
DownloadMode mode;
DownloadMode zconfig = ZConfig::instance().commit_downloadMode();
// check for --download-* options
if (zypper.cOpts().count("download-only"))
mode = DownloadOnly;
else if (zypper.cOpts().count("download-in-advance"))
mode = DownloadInAdvance;
else if (zypper.cOpts().count("download-in-heaps"))
mode = DownloadInHeaps;
else if (zypper.cOpts().count("download-as-needed"))
mode = DownloadAsNeeded;
else
mode = zconfig;
// check --download <mode>
// this option overrides the above aliases, if used simultaneously
string download;
parsed_opts::const_iterator it = zypper.cOpts().find("download");
if (it != zypper.cOpts().end())
download = it->second.front();
if (download == "only")
mode = DownloadOnly;
else if (download == "in-advance")
mode = DownloadInAdvance;
else if (download == "in-heaps")
mode = DownloadInHeaps;
else if (download == "as-needed")
mode = DownloadAsNeeded;
else if (!download.empty())
{
zypper.out().error(str::form(_("Unknown download mode '%s'."), download.c_str()));
zypper.out().info(str::form(_("Available download modes: %s"),
"only, in-advance, in-heaps, as-needed"));
zypper.setExitCode(ZYPPER_EXIT_ERR_INVALID_ARGS);
throw ExitRequestException("Unknown download mode");
}
// warn about the override, both were specified
if (!quiet && !download.empty() &&
(zypper.cOpts().count("download-only") ||
zypper.cOpts().count("download-in-advance") ||
zypper.cOpts().count("download-in-heaps") ||
zypper.cOpts().count("download-as-needed")))
{
zypper.out().warning(
str::form(_("Option '%s' overrides '%s'."), "--download", "--download-*"));
}
if (quiet)
return mode;
MIL << "Download mode: ";
if (mode == DownloadInAdvance) MIL << "in-advance";
else if (mode == DownloadInHeaps) MIL << "in-heaps";
else if (mode == DownloadOnly) MIL << "only";
else if (mode == DownloadAsNeeded) MIL << "as-needed";
else MIL << "UNKNOWN";
MIL << (mode == zconfig ? " (zconfig value)" : "") << endl;
return mode;
}
// ----------------------------------------------------------------------------
bool packagekit_running()
{
bool result = false;
const char* argv[] =
{
"dbus-send",
"--system",
"--dest=org.freedesktop.DBus",
"--type=method_call",
"--print-reply",
"--reply-timeout=200",
"/",
"org.freedesktop.DBus.NameHasOwner",
"string:org.freedesktop.PackageKit",
NULL
};
ExternalProgram pkcheck(argv);
string line;
for (line = pkcheck.receiveLine(); !line.empty(); line = pkcheck.receiveLine())
{
DBG << "dbus-send: " << line << endl;
if (line.find("boolean") != string::npos && line.find("true") != string::npos)
result = true;
}
pkcheck.close();
DBG << result << endl;
return result;
}
// ----------------------------------------------------------------------------
void packagekit_suggest_quit()
{
const char* argv[] =
{
"dbus-send",
"--system",
"--dest=org.freedesktop.PackageKit",
"--type=method_call",
"/org/freedesktop/PackageKit",
"org.freedesktop.PackageKit.SuggestDaemonQuit",
NULL
};
ExternalProgram pkcall(argv);
pkcall.close();
}
|