19 #include <sys/types.h> 28 #include <zypp-core/base/UserRequestException> 63 #include <zypp-core/zyppng/base/EventLoop> 64 #include <zypp-core/zyppng/base/UnixSignalSource> 65 #include <zypp-core/zyppng/io/AsyncDataSource> 66 #include <zypp-core/zyppng/io/Process> 70 #include <zypp-core/zyppng/base/EventDispatcher> 72 #include <shared/commit/CommitMessages.h> 79 #include "tools/zypp-rpm/errorcodes.h" 80 #include <rpm/rpmlog.h> 87 static bool val = [](){
88 const char *
env = getenv(
"TRANSACTIONAL_UPDATE");
100 #include <solv/repo_rpmdb.h> 101 #include <solv/chksum.h> 111 AutoDispose<Chksum*> chk { ::solv_chksum_create( REPOKEY_TYPE_SHA1 ), []( Chksum *chk ) ->
void {
112 ::solv_chksum_free( chk,
nullptr );
114 if ( ::rpm_hash_database_state( state, chk ) == 0 )
117 const unsigned char * md5 = ::solv_chksum_get( chk, &md5l );
121 WAR <<
"rpm_hash_database_state failed" << endl;
141 inline void sigMultiversionSpecChanged()
157 static const std::string strType(
"type" );
158 static const std::string strStage(
"stage" );
159 static const std::string strSolvable(
"solvable" );
161 static const std::string strTypeDel(
"-" );
162 static const std::string strTypeIns(
"+" );
163 static const std::string strTypeMul(
"M" );
165 static const std::string strStageDone(
"ok" );
166 static const std::string strStageFailed(
"err" );
168 static const std::string strSolvableN(
"n" );
169 static const std::string strSolvableE(
"e" );
170 static const std::string strSolvableV(
"v" );
171 static const std::string strSolvableR(
"r" );
172 static const std::string strSolvableA(
"a" );
179 case Transaction::TRANSACTION_IGNORE:
break;
180 case Transaction::TRANSACTION_ERASE: ret.
add( strType, strTypeDel );
break;
181 case Transaction::TRANSACTION_INSTALL: ret.
add( strType, strTypeIns );
break;
182 case Transaction::TRANSACTION_MULTIINSTALL: ret.
add( strType, strTypeMul );
break;
187 case Transaction::STEP_TODO:
break;
188 case Transaction::STEP_DONE: ret.
add( strStage, strStageDone );
break;
189 case Transaction::STEP_ERROR: ret.
add( strStage, strStageFailed );
break;
198 ident = solv.ident();
205 ident = step_r.
ident();
207 arch = step_r.
arch();
212 { strSolvableV, ed.
version() },
213 { strSolvableR, ed.
release() },
217 s.add( strSolvableE, epoch );
219 ret.
add( strSolvable, s );
231 for (
const Transaction::Step & step : steps_r )
233 if ( step.stepType() != Transaction::TRANSACTION_IGNORE )
248 struct InstallResolvableSAReportReceiver :
public callback::ReceiveReport<rpm::InstallResolvableReportSA>
250 using ReportType = callback::SendReport<rpm::InstallResolvableReport>;
252 InstallResolvableSAReportReceiver()
253 :
_report { std::make_unique<ReportType>() }
257 { (*_report)->start( resolvable ); }
260 { (*_report)->progress( value, resolvable ); }
263 { (*_report)->finish( resolvable, static_cast<rpm::InstallResolvableReport::Error>(error),
"", rpm::InstallResolvableReport::RpmLevel::RPM ); }
269 struct RemoveResolvableSAReportReceiver :
public callback::ReceiveReport<rpm::RemoveResolvableReportSA>
271 using ReportType = callback::SendReport<rpm::RemoveResolvableReport>;
273 RemoveResolvableSAReportReceiver()
274 :
_report { std::make_unique<ReportType>() }
278 { (*_report)->start( resolvable ); }
281 { (*_report)->progress( value, resolvable ); }
284 { (*_report)->finish( resolvable, static_cast<rpm::RemoveResolvableReport::Error>(error),
"" ); }
287 std::unique_ptr<ReportType>
_report;
295 struct SingleTransReportLegacyWrapper
300 SingleTransReportLegacyWrapper()
302 if ( not singleTransReportsConnected() and legacyReportsConnected() )
304 WAR <<
"Activating SingleTransReportLegacyWrapper! The application does not listen to the singletrans reports :(" << endl;
313 ~SingleTransReportLegacyWrapper()
317 bool singleTransReportsConnected()
const 328 bool legacyReportsConnected()
const 345 class AssertMountedBase
357 MIL <<
"We mounted " <<
_mountpoint <<
" so we unmount it" << endl;
358 execute({
"umount",
"-R",
"-l",
_mountpoint.asString() });
366 for( std::string line = prog.receiveLine(); ! line.empty(); line = prog.receiveLine() )
378 class AssertProcMounted :
private AssertMountedBase
381 AssertProcMounted( Pathname root_r )
384 if ( ! PathInfo(root_r/
"self").isDir() ) {
385 MIL <<
"Try to make sure proc is mounted at" << root_r << endl;
387 && execute({
"mount",
"-t",
"proc",
"/proc", root_r.asString() }) == 0 ) {
391 WAR <<
"Mounting proc at " << root_r <<
" failed" << endl;
399 class AssertDevMounted :
private AssertMountedBase
402 AssertDevMounted( Pathname root_r )
405 if ( ! PathInfo(root_r/
"null").isChr() ) {
406 MIL <<
"Try to make sure dev is mounted at" << root_r << endl;
411 && execute({
"mount",
"--rbind",
"--make-rslave",
"/dev", root_r.asString() }) == 0 ) {
415 WAR <<
"Mounting dev at " << root_r <<
" failed" << endl;
432 std::ifstream infile( historyFile_r.c_str() );
433 for( iostr::EachLine in( infile ); in; in.next() )
435 const char * ch( (*in).c_str() );
437 if ( *ch <
'1' ||
'9' < *ch )
439 const char * sep1 = ::strchr( ch,
'|' );
444 bool installs =
true;
445 if ( ::strncmp( sep1,
"install|", 8 ) )
447 if ( ::strncmp( sep1,
"remove |", 8 ) )
454 const char * sep2 = ::strchr( sep1,
'|' );
455 if ( !sep2 || sep1 == sep2 )
457 (*in)[sep2-ch] =
'\0';
462 onSystemByUserList.erase( pkg );
466 if ( (sep1 = ::strchr( sep2+1,
'|' ))
467 && (sep1 = ::strchr( sep1+1,
'|' ))
468 && (sep2 = ::strchr( sep1+1,
'|' )) )
470 (*in)[sep2-ch] =
'\0';
471 if ( ::strchr( sep1+1,
'@' ) )
474 onSystemByUserList.insert( pkg );
479 MIL <<
"onSystemByUserList found: " << onSystemByUserList.size() << endl;
480 return onSystemByUserList;
490 return PluginFrame( command_r, json::Object {
501 MIL <<
"Testcases to keep: " << toKeep << endl;
507 WAR <<
"No Target no Testcase!" << endl;
511 std::string stem(
"updateTestcase" );
512 Pathname dir( target->assertRootPrefix(
"/var/log/") );
516 std::list<std::string> content;
518 std::set<std::string> cases;
519 for_( c, content.begin(), content.end() )
524 if ( cases.size() >= toKeep )
526 unsigned toDel = cases.size() - toKeep + 1;
527 for_( c, cases.begin(), cases.end() )
536 MIL <<
"Write new testcase " << next << endl;
537 getZYpp()->resolver()->createSolverTestcase( next.asString(),
false );
554 std::pair<bool,PatchScriptReport::Action> doExecuteScript(
const Pathname & root_r,
564 for ( std::string output = prog.receiveLine(); output.length(); output = prog.receiveLine() )
569 WAR <<
"User request to abort script " << script_r << endl;
578 if ( prog.close() != 0 )
580 ret.second = report_r->problem( prog.execError() );
581 WAR <<
"ACTION" << ret.second <<
"(" << prog.execError() <<
")" << endl;
582 std::ostringstream sstr;
583 sstr << script_r <<
_(
" execution failed") <<
" (" << prog.execError() <<
")" << endl;
584 historylog.
comment(sstr.str(),
true);
596 bool executeScript(
const Pathname & root_r,
597 const Pathname & script_r,
598 callback::SendReport<PatchScriptReport> & report_r )
603 action = doExecuteScript( root_r, script_r, report_r );
607 switch ( action.second )
610 WAR <<
"User request to abort at script " << script_r << endl;
615 WAR <<
"User request to skip script " << script_r << endl;
625 INT <<
"Abort on unknown ACTION request " << action.second <<
" returned" << endl;
634 bool RunUpdateScripts(
const Pathname & root_r,
635 const Pathname & scriptsPath_r,
636 const std::vector<sat::Solvable> & checkPackages_r,
639 if ( checkPackages_r.empty() )
642 MIL <<
"Looking for new update scripts in (" << root_r <<
")" << scriptsPath_r << endl;
644 if ( ! PathInfo( scriptsDir ).isDir() )
647 std::list<std::string> scripts;
649 if ( scripts.empty() )
657 std::map<std::string, Pathname> unify;
658 for_( it, checkPackages_r.begin(), checkPackages_r.end() )
660 std::string prefix(
str::form(
"%s-%s", it->name().c_str(), it->edition().c_str() ) );
661 for_( sit, scripts.begin(), scripts.end() )
666 if ( (*sit)[prefix.size()] !=
'\0' && (*sit)[prefix.size()] !=
'-' )
669 PathInfo script( scriptsDir / *sit );
670 Pathname localPath( scriptsPath_r/(*sit) );
671 std::string unifytag;
673 if ( script.isFile() )
679 else if ( ! script.isExist() )
687 if ( unifytag.empty() )
691 if ( unify[unifytag].empty() )
693 unify[unifytag] = localPath;
700 std::string msg(
str::form(
_(
"%s already executed as %s)"), localPath.asString().c_str(), unify[unifytag].c_str() ) );
701 MIL <<
"Skip update script: " << msg << endl;
702 HistoryLog().comment( msg,
true );
706 if ( abort || aborting_r )
708 WAR <<
"Aborting: Skip update script " << *sit << endl;
709 HistoryLog().comment(
710 localPath.asString() +
_(
" execution skipped while aborting"),
715 MIL <<
"Found update script " << *sit << endl;
716 callback::SendReport<PatchScriptReport> report;
717 report->start( make<Package>( *it ), script.path() );
719 if ( ! executeScript( root_r, localPath, report ) )
731 inline void copyTo( std::ostream & out_r,
const Pathname & file_r )
733 std::ifstream infile( file_r.c_str() );
734 for( iostr::EachLine in( infile ); in; in.next() )
736 out_r << *in << endl;
740 inline std::string notificationCmdSubst(
const std::string & cmd_r,
const UpdateNotificationFile & notification_r )
742 std::string ret( cmd_r );
743 #define SUBST_IF(PAT,VAL) if ( ret.find( PAT ) != std::string::npos ) ret = str::gsub( ret, PAT, VAL ) 744 SUBST_IF(
"%p", notification_r.solvable().asString() );
745 SUBST_IF(
"%P", notification_r.file().asString() );
750 void sendNotification(
const Pathname & root_r,
753 if ( notifications_r.empty() )
757 MIL <<
"Notification command is '" << cmdspec <<
"'" << endl;
758 if ( cmdspec.empty() )
762 if ( pos == std::string::npos )
764 ERR <<
"Can't send Notification: Missing 'format |' in command spec." << endl;
765 HistoryLog().comment( str::Str() <<
_(
"Error sending update message notification."),
true );
770 std::string commandStr(
str::trim( cmdspec.substr( pos + 1 ) ) );
772 enum Format {
UNKNOWN, NONE, SINGLE, DIGEST, BULK };
774 if ( formatStr ==
"none" )
776 else if ( formatStr ==
"single" )
778 else if ( formatStr ==
"digest" )
780 else if ( formatStr ==
"bulk" )
784 ERR <<
"Can't send Notification: Unknown format '" << formatStr <<
" |' in command spec." << endl;
785 HistoryLog().comment( str::Str() <<
_(
"Error sending update message notification."),
true );
793 if ( format == NONE || format == SINGLE )
795 for_( it, notifications_r.begin(), notifications_r.end() )
797 std::vector<std::string> command;
798 if ( format == SINGLE )
800 str::splitEscaped( notificationCmdSubst( commandStr, *it ), std::back_inserter( command ) );
805 for( std::string line = prog.receiveLine(); ! line.empty(); line = prog.receiveLine() )
809 int ret = prog.close();
812 ERR <<
"Notification command returned with error (" << ret <<
")." << endl;
813 HistoryLog().comment( str::Str() <<
_(
"Error sending update message notification."),
true );
819 else if ( format == DIGEST || format == BULK )
821 filesystem::TmpFile tmpfile;
822 std::ofstream out( tmpfile.path().c_str() );
823 for_( it, notifications_r.begin(), notifications_r.end() )
825 if ( format == DIGEST )
827 out << it->file() << endl;
829 else if ( format == BULK )
835 std::vector<std::string> command;
836 command.push_back(
"<"+tmpfile.path().asString() );
837 str::splitEscaped( notificationCmdSubst( commandStr, *notifications_r.begin() ), std::back_inserter( command ) );
842 for( std::string line = prog.receiveLine(); ! line.empty(); line = prog.receiveLine() )
846 int ret = prog.close();
849 ERR <<
"Notification command returned with error (" << ret <<
")." << endl;
850 HistoryLog().comment( str::Str() <<
_(
"Error sending update message notification."),
true );
857 INT <<
"Can't send Notification: Missing handler for 'format |' in command spec." << endl;
858 HistoryLog().comment( str::Str() <<
_(
"Error sending update message notification."),
true );
869 void RunUpdateMessages(
const Pathname & root_r,
870 const Pathname & messagesPath_r,
871 const std::vector<sat::Solvable> & checkPackages_r,
872 ZYppCommitResult & result_r )
874 if ( checkPackages_r.empty() )
877 MIL <<
"Looking for new update messages in (" << root_r <<
")" << messagesPath_r << endl;
879 if ( ! PathInfo( messagesDir ).isDir() )
882 std::list<std::string> messages;
884 if ( messages.empty() )
890 HistoryLog historylog;
891 for_( it, checkPackages_r.begin(), checkPackages_r.end() )
893 std::string prefix(
str::form(
"%s-%s", it->name().c_str(), it->edition().c_str() ) );
894 for_( sit, messages.begin(), messages.end() )
899 if ( (*sit)[prefix.size()] !=
'\0' && (*sit)[prefix.size()] !=
'-' )
902 PathInfo message( messagesDir / *sit );
903 if ( ! message.isFile() || message.size() == 0 )
906 MIL <<
"Found update message " << *sit << endl;
907 Pathname localPath( messagesPath_r/(*sit) );
908 result_r.rUpdateMessages().push_back( UpdateNotificationFile( *it, localPath ) );
909 historylog.comment( str::Str() <<
_(
"New update message") <<
" " << localPath,
true );
912 sendNotification( root_r, result_r.updateMessages() );
918 void logPatchStatusChanges(
const sat::Transaction & transaction_r, TargetImpl & target_r )
921 if ( changedPseudoInstalled.empty() )
929 WAR <<
"Need to recompute the patch status changes as commit is incomplete!" << endl;
935 HistoryLog historylog;
936 for (
const auto & el : changedPseudoInstalled )
937 historylog.patchStateChange( el.first, el.second );
946 const std::vector<sat::Solvable> & checkPackages_r,
948 { RunUpdateMessages( root_r, messagesPath_r, checkPackages_r, result_r ); }
961 , _requestedLocalesFile( home() /
"RequestedLocales" )
962 , _autoInstalledFile( home() /
"AutoInstalled" )
963 , _hardLocksFile(
Pathname::assertprefix( _root,
ZConfig::instance().locksFile() ) )
964 , _vendorAttr(
Pathname::assertprefix( _root,
ZConfig::instance().vendorPath() ) )
971 sigMultiversionSpecChanged();
972 MIL <<
"Initialized target on " <<
_root << endl;
980 std::ifstream uuidprovider(
"/proc/sys/kernel/random/uuid" );
990 boost::function<
bool ()> condition,
991 boost::function<std::string ()> value )
993 std::string val = value();
1001 MIL <<
"updating '" << filename <<
"' content." << endl;
1005 std::ofstream filestr;
1008 filestr.open( filename.
c_str() );
1010 if ( filestr.good() )
1032 if (
root() !=
"/" )
1046 WAR <<
"Can't create anonymous id file" << endl;
1055 Pathname flavorpath(
home() /
"LastDistributionFlavor");
1061 WAR <<
"No base product, I won't create flavor cache" << endl;
1065 std::string flavor = p->flavor();
1077 WAR <<
"Can't create flavor cache" << endl;
1090 sigMultiversionSpecChanged();
1091 MIL <<
"Closed target on " <<
_root << endl;
1115 Pathname rpmsolvcookie = base/
"cookie";
1117 bool build_rpm_solv =
true;
1127 MIL <<
"Read cookie: " << cookie << endl;
1132 if ( status == rpmstatus )
1133 build_rpm_solv =
false;
1134 MIL <<
"Read cookie: " << rpmsolvcookie <<
" says: " 1135 << (build_rpm_solv ?
"outdated" :
"uptodate") << endl;
1139 if ( build_rpm_solv )
1153 bool switchingToTmpSolvfile =
false;
1154 Exception ex(
"Failed to cache rpm database.");
1160 rpmsolv = base/
"solv";
1161 rpmsolvcookie = base/
"cookie";
1168 WAR <<
"Using a temporary solv file at " << base << endl;
1169 switchingToTmpSolvfile =
true;
1178 if ( ! switchingToTmpSolvfile )
1188 #ifdef ZYPP_RPMDB2SOLV_PATH 1189 cmd.push_back( ZYPP_RPMDB2SOLV_PATH );
1191 cmd.push_back(
"rpmdb2solv" );
1194 cmd.push_back(
"-r" );
1197 cmd.push_back(
"-D" );
1199 cmd.push_back(
"-X" );
1201 cmd.push_back(
"-p" );
1204 if ( ! oldSolvFile.
empty() )
1205 cmd.push_back( oldSolvFile.
asString() );
1207 cmd.push_back(
"-o" );
1211 std::string errdetail;
1214 WAR <<
" " << output;
1215 if ( errdetail.empty() ) {
1219 errdetail += output;
1222 int ret = prog.
close();
1243 if (
root() ==
"/" )
1254 if ( !
PathInfo(base/
"solv.idx").isExist() )
1257 return build_rpm_solv;
1275 MIL <<
"New cache built: " << (newCache?
"true":
"false") <<
1276 ", force loading: " << (force?
"true":
"false") << endl;
1281 MIL <<
"adding " << rpmsolv <<
" to pool(" << satpool.
systemRepoAlias() <<
")" << endl;
1288 if ( newCache || force )
1305 MIL <<
"adding " << rpmsolv <<
" to system" << endl;
1311 MIL <<
"Try to handle exception by rebuilding the solv-file" << endl;
1336 if (
PathInfo( historyFile ).isExist() )
1343 if ( onSystemByUser.find( ident ) == onSystemByUser.end() )
1344 onSystemByAuto.insert( ident );
1365 if (
PathInfo( needrebootFile ).isFile() )
1366 needrebootSpec.
parseFrom( needrebootFile );
1369 if (
PathInfo( needrebootDir ).isDir() )
1374 [&](
const Pathname & dir_r,
const char *
const str_r )->
bool 1376 if ( ! isRpmConfigBackup( str_r ) )
1378 Pathname needrebootFile { needrebootDir / str_r };
1379 if (
PathInfo( needrebootFile ).isFile() )
1380 needrebootSpec.
parseFrom( needrebootFile );
1391 if ( ! hardLocks.empty() )
1400 MIL <<
"Target loaded: " << system.
solvablesSize() <<
" resolvables" << endl;
1412 bool explicitDryRun = policy_r.
dryRun();
1422 if (
root() ==
"/" )
1436 MIL <<
"TargetImpl::commit(<pool>, " << policy_r <<
")" << endl;
1455 steps.push_back( *it );
1462 MIL <<
"Todo: " << result << endl;
1473 if ( commitPlugins )
1474 commitPlugins.
send( transactionPluginFrame(
"COMMITBEGIN", steps ) );
1481 if ( ! policy_r.
dryRun() )
1487 DBG <<
"dryRun: Not writing upgrade testcase." << endl;
1494 if ( ! policy_r.
dryRun() )
1516 DBG <<
"dryRun: Not storing non-package data." << endl;
1523 if ( ! policy_r.
dryRun() )
1525 for_( it, steps.begin(), steps.end() )
1527 if ( ! it->satSolvable().isKind<
Patch>() )
1535 if ( ! patch ||patch->message().empty() )
1538 MIL <<
"Show message for " << patch << endl;
1540 if ( ! report->show( patch ) )
1542 WAR <<
"commit aborted by the user" << endl;
1549 DBG <<
"dryRun: Not checking patch messages." << endl;
1564 std::unique_ptr<CommitPackagePreloader> preloader;
1570 preloader = std::make_unique<CommitPackagePreloader>();
1571 preloader->preloadTransaction( steps );
1572 miss = preloader->missed ();
1579 for_( it, steps.begin(), steps.end() )
1581 switch ( it->stepType() )
1600 localfile = packageCache.
get( pi );
1603 catch (
const AbortRequestException & exp )
1607 WAR <<
"commit cache preload aborted by the user" << endl;
1611 catch (
const SkipRequestException & exp )
1616 WAR <<
"Skipping cache preload package " << pi->asKind<
Package>() <<
" in commit" << endl;
1626 INT <<
"Unexpected Error: Skipping cache preload package " << pi->asKind<
Package>() <<
" in commit" << endl;
1637 ERR <<
"Some packages could not be provided. Aborting commit."<< endl;
1641 if ( ! policy_r.
dryRun() )
1649 commit( policy_r, packageCache, result );
1653 preloader->cleanupCaches ();
1657 DBG <<
"dryRun/downloadOnly: Not installing/deleting anything." << endl;
1658 if ( explicitDryRun ) {
1672 DBG <<
"dryRun: Not downloading/installing/deleting anything." << endl;
1673 if ( explicitDryRun ) {
1685 WAR <<
"(rpm removed in commit?) Inject missing /var/lib/rpm compat symlink to /usr/lib/sysimage/rpm" << endl;
1694 if ( commitPlugins )
1695 commitPlugins.
send( transactionPluginFrame(
"COMMITEND", steps ) );
1700 if ( ! policy_r.
dryRun() )
1705 MIL <<
"TargetImpl::commit(<pool>, " << policy_r <<
") returns: " << result << endl;
1716 struct NotifyAttemptToModify
1734 MIL <<
"TargetImpl::commit(<list>" << policy_r <<
")" << steps.size() << endl;
1739 NotifyAttemptToModify attemptToModify( result_r );
1744 AssertProcMounted assertProcMounted(
_root );
1745 AssertDevMounted assertDevMounted(
_root );
1752 std::vector<sat::Solvable> successfullyInstalledPackages;
1755 for_( step, steps.begin(), steps.end() )
1764 obsoletedPackages.insert( citem->
ident() );
1778 localfile = packageCache_r.
get( citem );
1780 catch (
const AbortRequestException &e )
1782 WAR <<
"commit aborted by the user" << endl;
1787 catch (
const SkipRequestException &e )
1790 WAR <<
"Skipping package " << p <<
" in commit" << endl;
1799 INT <<
"Unexpected Error: Skipping package " << p <<
" in commit" << endl;
1808 bool success =
false;
1832 if ( progress.aborted() )
1834 WAR <<
"commit aborted by the user" << endl;
1843 auto rebootNeededFile =
root() /
"/run/reboot-needed";
1859 WAR <<
"dry run failed" << endl;
1864 if ( progress.aborted() )
1866 WAR <<
"commit aborted by the user" << endl;
1871 WAR <<
"Install failed" << endl;
1877 if ( success && !policy_r.
dryRun() )
1880 successfullyInstalledPackages.push_back( citem.
satSolvable() );
1889 bool success =
false;
1900 if ( progress.aborted() )
1902 WAR <<
"commit aborted by the user" << endl;
1916 if ( progress.aborted() )
1918 WAR <<
"commit aborted by the user" << endl;
1924 WAR <<
"removal of " << p <<
" failed";
1927 if ( success && !policy_r.
dryRun() )
1934 else if ( ! policy_r.
dryRun() )
1938 if ( ! citem.
buddy() )
1945 ERR <<
"Can't install orphan product without release-package! " << citem << endl;
1951 std::string referenceFilename( p->referenceFilename() );
1952 if ( referenceFilename.empty() )
1954 ERR <<
"Can't remove orphan product without 'referenceFilename'! " << citem << endl;
1958 Pathname referencePath {
Pathname(
"/etc/products.d") / referenceFilename };
1959 if ( !
rpm().hasFile( referencePath.asString() ) )
1964 ERR <<
"Delete orphan product failed: " << referencePath << endl;
1968 WAR <<
"Won't remove orphan product: '/etc/products.d/" << referenceFilename <<
"' is owned by a package." << endl;
1997 if ( ! successfullyInstalledPackages.empty() )
2000 successfullyInstalledPackages, abort ) )
2002 WAR <<
"Commit aborted by the user" << endl;
2008 successfullyInstalledPackages,
2015 logPatchStatusChanges( result_r.
transaction(), *this );
2034 void sendLogline(
const std::string & line_r, ReportType::loglevel level_r = ReportType::loglevel::msg )
2037 data.
set(
"line", std::cref(line_r) );
2038 data.set(
"level", level_r );
2044 auto u2rpmlevel = [](
unsigned rpmlevel_r ) -> ReportType::loglevel {
2045 switch ( rpmlevel_r ) {
2046 case RPMLOG_EMERG: [[fallthrough]];
2047 case RPMLOG_ALERT: [[fallthrough]];
2049 return ReportType::loglevel::crt;
2051 return ReportType::loglevel::err;
2052 case RPMLOG_WARNING:
2053 return ReportType::loglevel::war;
2054 default: [[fallthrough]];
2055 case RPMLOG_NOTICE: [[fallthrough]];
2057 return ReportType::loglevel::msg;
2059 return ReportType::loglevel::dbg;
2067 { (*this)->report( userData_r ); }
2072 SingleTransReportLegacyWrapper _legacyWrapper;
2077 MIL <<
"TargetImpl::commit(<list>" << policy_r <<
")" << steps.size() << endl;
2082 NotifyAttemptToModify attemptToModify( result_r );
2088 AssertProcMounted assertProcMounted(
_root );
2089 AssertDevMounted assertDevMounted(
_root );
2103 proto::target::Commit
commit;
2113 for (
auto &[
_, value] : data ) {
2115 value.resetDispose();
2122 auto &step = steps[stepId];
2139 locCache.value()[stepId] = packageCache_r.
get( citem );
2141 proto::target::InstallStep tStep;
2142 tStep.stepId = stepId;
2143 tStep.pathname = locCache.
value()[stepId]->asString();
2144 tStep.multiversion = p->multiversionInstall() ;
2146 commit.transactionSteps.push_back( std::move(tStep) );
2148 catch (
const AbortRequestException &e )
2150 WAR <<
"commit aborted by the user" << endl;
2155 catch (
const SkipRequestException &e )
2158 WAR <<
"Skipping package " << p <<
" in commit" << endl;
2167 INT <<
"Unexpected Error: Skipping package " << p <<
" in commit" << endl;
2173 proto::target::RemoveStep tStep;
2174 tStep.stepId = stepId;
2175 tStep.name = p->name();
2176 tStep.version = p->edition().version();
2177 tStep.release = p->edition().release();
2178 tStep.arch = p->arch().asString();
2179 commit.transactionSteps.push_back(std::move(tStep));
2190 proto::target::InstallStep tStep;
2191 tStep.stepId = stepId;
2192 tStep.pathname = locCache.value()[stepId]->asString();
2193 tStep.multiversion =
false;
2194 commit.transactionSteps.push_back(std::move(tStep));
2198 INT <<
"Unexpected Error: Skipping package " << p <<
" in commit" << endl;
2205 std::vector<sat::Solvable> successfullyInstalledPackages;
2207 if (
commit.transactionSteps.size() ) {
2214 const std::vector<int> interceptedSignals {
2221 auto unixSignals = loop->eventDispatcher()->unixSignalSource();
2222 unixSignals->sigReceived ().connect ([](
int signum ){
2224 JobReport::error (
str::Format(
_(
"Received signal :\"%1% (%2%)\", to ensure the consistency of the system it is not possible to cancel a running rpm transaction.") ) % strsignal(signum) % signum );
2226 for(
const auto &sig : interceptedSignals )
2227 unixSignals->addSignal ( sig );
2230 for(
const auto &sig : interceptedSignals )
2231 unixSignals->removeSignal ( sig );
2238 int currentStepId = -1;
2244 bool gotEndOfScript =
false;
2247 std::unique_ptr<callback::SendReport <rpm::TransactionReportSA>> transactionreport;
2248 std::unique_ptr<callback::SendReport <rpm::InstallResolvableReportSA>> installreport;
2249 std::unique_ptr<callback::SendReport <rpm::RemoveResolvableReportSA>> uninstallreport;
2250 std::unique_ptr<callback::SendReport <rpm::CommitScriptReportSA>> scriptreport;
2251 std::unique_ptr<callback::SendReport <rpm::CleanupPackageReportSA>> cleanupreport;
2254 std::optional<proto::target::TransactionError> transactionError;
2257 std::string currentScriptType;
2258 std::string currentScriptPackage;
2268 unsigned lineno = 0;
2276 zyppng::StompFrameStreamRef msgStream;
2281 const auto &sendRpmLineToReport = [&](
const std::string &line ){
2283 const auto &sendLogRep = [&](
auto &report,
const auto &cType ){
2285 if ( currentStepId >= 0 )
2286 cmdout.
set(
"solvable", steps.at(currentStepId).satSolvable() );
2287 cmdout.
set(
"line", line );
2291 if ( installreport ) {
2292 sendLogRep( (*installreport), rpm::InstallResolvableReportSA::contentRpmout );
2293 }
else if ( uninstallreport ) {
2294 sendLogRep( (*uninstallreport), rpm::RemoveResolvableReportSA::contentRpmout );
2295 }
else if ( scriptreport ) {
2296 sendLogRep( (*scriptreport), rpm::CommitScriptReportSA::contentRpmout );
2297 }
else if ( transactionreport ) {
2298 sendLogRep( (*transactionreport), rpm::TransactionReportSA::contentRpmout );
2299 }
else if ( cleanupreport ) {
2300 sendLogRep( (*cleanupreport), rpm::CleanupPackageReportSA::contentRpmout );
2302 WAR <<
"Got rpm output without active report " << line;
2307 if ( line.find(
" scriptlet failed, " ) == std::string::npos )
2311 if ( line.back() !=
'\n' )
2317 const auto &processDataFromScriptFd = [&](){
2319 while ( scriptSource->canReadLine() ) {
2321 if ( gotEndOfScript )
2324 std::string l = scriptSource->readLine().asString();
2326 gotEndOfScript =
true;
2330 l = l.substr( 0, rawsize );
2332 L_DBG(
"zypp-rpm") <<
"[rpm> " << l;
2333 sendRpmLineToReport( l );
2336 scriptSource->sigReadyRead().connect( processDataFromScriptFd );
2339 const auto &waitForScriptEnd = [&]() {
2342 if ( gotEndOfScript )
2346 processDataFromScriptFd();
2349 while ( scriptSource->readFdOpen() && scriptSource->canRead() && !gotEndOfScript ) {
2352 scriptSource->waitForReadyRead( 100 );
2356 const auto &aboutToStartNewReport = [&](){
2358 if ( transactionreport || installreport || uninstallreport || scriptreport || cleanupreport ) {
2359 ERR <<
"There is still a running report, this is a bug" << std::endl;
2363 gotEndOfScript =
false;
2366 const auto &writeRpmMsgToHistory = [&](){
2367 if ( rpmmsg.size() == 0 )
2371 rpmmsg +=
"[truncated]\n";
2373 std::ostringstream sstr;
2374 sstr <<
"rpm output:" << endl << rpmmsg << endl;
2379 const auto &finalizeCurrentReport = [&]() {
2382 if ( currentStepId >= 0 ) {
2383 step = &steps.at(currentStepId);
2387 if ( installreport ) {
2395 writeRpmMsgToHistory();
2399 ( *installreport)->progress( 100, resObj );
2402 if ( currentStepId >= 0 )
2403 locCache.value().erase( currentStepId );
2404 successfullyInstalledPackages.push_back( step->
satSolvable() );
2410 auto rebootNeededFile =
root() /
"/run/reboot-needed";
2422 writeRpmMsgToHistory();
2425 if ( uninstallreport ) {
2433 writeRpmMsgToHistory();
2437 ( *uninstallreport)->progress( 100, resObj );
2447 writeRpmMsgToHistory();
2450 if ( scriptreport ) {
2452 ( *scriptreport)->progress( 100, resObj );
2455 if ( transactionreport ) {
2457 ( *transactionreport)->progress( 100 );
2460 if ( cleanupreport ) {
2462 ( *cleanupreport)->progress( 100 );
2468 currentScriptType.clear();
2469 currentScriptPackage.clear();
2470 installreport.reset();
2471 uninstallreport.reset();
2472 scriptreport.reset();
2473 transactionreport.reset();
2474 cleanupreport.reset();
2484 constexpr std::string_view zyppRpmBinary(ZYPP_RPM_BINARY);
2486 const char *argv[] = {
2489 zyppRpmBinary.data(),
2506 prog->addFd( messagePipe->writeFd );
2507 prog->addFd( scriptPipe->writeFd );
2510 if ( !scriptSource->openFds( std::vector<int>{ scriptPipe->readFd } ) )
2513 const auto &processMessages = [&] ( ) {
2517 const auto &checkMsgWithStepId = [&steps](
auto &p ){
2519 ERR <<
"Failed to parse message from zypp-rpm." << std::endl;
2523 auto id = p->stepId;
2524 if ( id < 0 || id >= steps.size() ) {
2525 ERR <<
"Received invalid stepId: " <<
id <<
" in " << p->typeName <<
" message from zypp-rpm, ignoring." << std::endl;
2531 while (
const auto &m = msgStream->nextMessage() ) {
2537 const auto &mName = m->command();
2538 if ( mName == proto::target::RpmLog::typeName ) {
2542 ERR <<
"Failed to parse " << proto::target::RpmLog::typeName <<
" message from zypp-rpm." << std::endl;
2545 ( p->level >= RPMLOG_ERR ?
L_ERR(
"zypp-rpm")
2546 : p->level >= RPMLOG_WARNING ?
L_WAR(
"zypp-rpm")
2547 :
L_DBG(
"zypp-rpm") ) <<
"[rpm " << p->level <<
"> " << p->line;
2550 }
else if ( mName == proto::target::PackageBegin::typeName ) {
2551 finalizeCurrentReport();
2554 if ( !checkMsgWithStepId( p ) )
2557 aboutToStartNewReport();
2559 auto & step = steps.at( p->stepId );
2560 currentStepId = p->stepId;
2562 uninstallreport = std::make_unique< callback::SendReport <rpm::RemoveResolvableReportSA> > ();
2563 ( *uninstallreport )->start(
makeResObject( step.satSolvable() ) );
2565 installreport = std::make_unique< callback::SendReport <rpm::InstallResolvableReportSA> > ();
2566 ( *installreport )->start(
makeResObject( step.satSolvable() ) );
2569 }
else if ( mName == proto::target::PackageFinished::typeName ) {
2571 if ( !checkMsgWithStepId( p ) )
2578 }
else if ( mName == proto::target::PackageProgress::typeName ) {
2580 if ( !checkMsgWithStepId( p ) )
2583 if ( uninstallreport )
2584 (*uninstallreport)->progress( p->amount,
makeResObject( steps.at( p->stepId ) ));
2585 else if ( installreport )
2586 (*installreport)->progress( p->amount,
makeResObject( steps.at( p->stepId ) ));
2588 ERR <<
"Received a " << mName <<
" message but there is no corresponding report running." << std::endl;
2590 }
else if ( mName == proto::target::PackageError::typeName ) {
2592 if ( !checkMsgWithStepId( p ) )
2595 if ( p->stepId >= 0 && p->stepId < steps.size() )
2598 finalizeCurrentReport();
2600 }
else if ( mName == proto::target::ScriptBegin::typeName ) {
2601 finalizeCurrentReport();
2605 ERR <<
"Failed to parse " << proto::target::ScriptBegin::typeName <<
" message from zypp-rpm." << std::endl;
2609 aboutToStartNewReport();
2612 const auto stepId = p->stepId;
2613 if ( stepId >= 0 && static_cast<size_t>(stepId) < steps.size() ) {
2617 currentStepId = p->stepId;
2618 scriptreport = std::make_unique< callback::SendReport <rpm::CommitScriptReportSA> > ();
2619 currentScriptType = p->scriptType;
2620 currentScriptPackage = p->scriptPackage;
2621 (*scriptreport)->start( currentScriptType, currentScriptPackage, resPtr );
2623 }
else if ( mName == proto::target::ScriptFinished::typeName ) {
2627 }
else if ( mName == proto::target::ScriptError::typeName ) {
2631 ERR <<
"Failed to parse " << proto::target::ScriptError::typeName <<
" message from zypp-rpm." << std::endl;
2636 const auto stepId = p->stepId;
2637 if ( stepId >= 0 && static_cast<size_t>(stepId) < steps.size() ) {
2647 str::form(
"Failed to execute %s script for %s ", currentScriptType.c_str(), currentScriptPackage.size() ? currentScriptPackage.c_str() :
"unknown" ),
2650 writeRpmMsgToHistory();
2652 if ( !scriptreport ) {
2653 ERR <<
"Received a ScriptError message, but there is no running report. " << std::endl;
2662 scriptreport.reset();
2665 }
else if ( mName == proto::target::CleanupBegin::typeName ) {
2666 finalizeCurrentReport();
2670 ERR <<
"Failed to parse " << proto::target::CleanupBegin::typeName <<
" message from zypp-rpm." << std::endl;
2674 aboutToStartNewReport();
2675 cleanupreport = std::make_unique< callback::SendReport <rpm::CleanupPackageReportSA> > ();
2676 (*cleanupreport)->start( beg->nvra );
2677 }
else if ( mName == proto::target::CleanupFinished::typeName ) {
2679 finalizeCurrentReport();
2681 }
else if ( mName == proto::target::CleanupProgress::typeName ) {
2684 ERR <<
"Failed to parse " << proto::target::CleanupProgress::typeName <<
" message from zypp-rpm." << std::endl;
2688 if ( !cleanupreport ) {
2689 ERR <<
"Received a CleanupProgress message, but there is no running report. " << std::endl;
2693 (*cleanupreport)->progress( prog->amount );
2695 }
else if ( mName == proto::target::TransBegin::typeName ) {
2696 finalizeCurrentReport();
2700 ERR <<
"Failed to parse " << proto::target::TransBegin::typeName <<
" message from zypp-rpm." << std::endl;
2704 aboutToStartNewReport();
2705 transactionreport = std::make_unique< callback::SendReport <rpm::TransactionReportSA> > ();
2706 (*transactionreport)->start( beg->name );
2707 }
else if ( mName == proto::target::TransFinished::typeName ) {
2709 finalizeCurrentReport();
2711 }
else if ( mName == proto::target::TransProgress::typeName ) {
2714 ERR <<
"Failed to parse " << proto::target::TransProgress::typeName <<
" message from zypp-rpm." << std::endl;
2718 if ( !transactionreport ) {
2719 ERR <<
"Received a TransactionProgress message, but there is no running report. " << std::endl;
2723 (*transactionreport)->progress( prog->amount );
2724 }
else if ( mName == proto::target::TransactionError::typeName ) {
2728 ERR <<
"Failed to parse " << proto::target::TransactionError::typeName <<
" message from zypp-rpm." << std::endl;
2733 transactionError = std::move(*error);
2736 ERR <<
"Received unexpected message from zypp-rpm: "<< m->command() <<
", ignoring" << std::endl;
2744 prog->sigStarted().connect( [&](){
2747 messagePipe->unrefWrite();
2748 scriptPipe->unrefWrite();
2752 while( prog->canReadLine( channel ) ) {
2753 L_ERR(
"zypp-rpm") << ( channel ==
zyppng::Process::StdOut ?
"<stdout> " :
"<stderr> " ) << prog->channelReadLine( channel ).asStringView();
2759 if ( !msgSource->openFds( std::vector<int>{ messagePipe->readFd }, prog->stdinFd() ) )
2765 const auto &msg =
commit.toStompMessage();
2767 std::rethrow_exception ( msg.error() );
2769 if ( !msgStream->sendMessage( *msg ) ) {
2770 prog->stop( SIGKILL );
2776 int zyppRpmExitCode = -1;
2778 zyppRpmExitCode = code;
2782 if ( !prog->start( argv ) ) {
2791 msgStream->readAllMessages();
2798 finalizeCurrentReport();
2801 bool readMsgs =
false;
2811 while ( scriptSource->canReadLine() ) {
2813 MIL <<
"rpm-script-fd: " << scriptSource->readLine().asStringView();
2815 if ( scriptSource->bytesAvailable() > 0 ) {
2817 MIL <<
"rpm-script-fd: " << scriptSource->readAll().asStringView();
2822 switch ( zyppRpmExitCode ) {
2824 case zypprpm::NoError:
2825 case zypprpm::RpmFinishedWithError:
2827 case zypprpm::RpmFinishedWithTransactionError: {
2829 if ( transactionError ) {
2831 std::ostringstream sstr;
2832 sstr <<
_(
"Executing the transaction failed because of the following problems:") <<
"\n";
2833 for (
const auto & err : transactionError->problems ) {
2834 sstr <<
" " << err <<
"\n";
2844 case zypprpm::FailedToOpenDb:
2847 case zypprpm::WrongHeaderSize:
2848 case zypprpm::WrongMessageFormat:
2851 case zypprpm::RpmInitFailed:
2854 case zypprpm::FailedToReadPackage:
2857 case zypprpm::FailedToAddStepToTransaction:
2860 case zypprpm::RpmOrderFailed:
2863 case zypprpm::FailedToCreateLock:
2869 auto &step = steps[stepId];
2881 ERR <<
"Can't install orphan product without release-package! " << citem << endl;
2885 std::string referenceFilename( p->referenceFilename() );
2887 if ( referenceFilename.empty() ) {
2888 ERR <<
"Can't remove orphan product without 'referenceFilename'! " << citem << endl;
2890 Pathname referencePath {
Pathname(
"/etc/products.d") / referenceFilename };
2892 if ( !
rpm().hasFile( referencePath.asString() ) ) {
2896 ERR <<
"Delete orphan product failed: " << referencePath << endl;
2898 WAR <<
"Won't remove orphan product: '/etc/products.d/" << referenceFilename <<
"' is owned by a package." << endl;
2912 if ( ! successfullyInstalledPackages.empty() )
2915 successfullyInstalledPackages, abort ) )
2917 WAR <<
"Commit aborted by the user" << endl;
2923 successfullyInstalledPackages,
2930 logPatchStatusChanges( result_r.
transaction(), *this );
2958 if ( baseproduct.isFile() )
2971 ERR <<
"baseproduct symlink is dangling or missing: " << baseproduct << endl;
2976 inline Pathname staticGuessRoot(
const Pathname & root_r )
2978 if ( root_r.empty() )
2983 return Pathname(
"/");
2989 inline std::string firstNonEmptyLineIn(
const Pathname & file_r )
2991 std::ifstream idfile( file_r.c_str() );
2992 for( iostr::EachLine in( idfile ); in; in.next() )
2995 if ( ! line.empty() )
2998 return std::string();
3009 if ( p->isTargetDistribution() )
3017 const Pathname needroot( staticGuessRoot(root_r) );
3018 const Target_constPtr target( getZYpp()->getTarget() );
3019 if ( target && target->root() == needroot )
3020 return target->requestedLocales();
3026 MIL <<
"updateAutoInstalled if changed..." << endl;
3034 {
return baseproductdata(
_root ).registerTarget(); }
3037 {
return baseproductdata( staticGuessRoot(root_r) ).registerTarget(); }
3040 {
return baseproductdata(
_root ).registerRelease(); }
3043 {
return baseproductdata( staticGuessRoot(root_r) ).registerRelease();}
3046 {
return baseproductdata(
_root ).registerFlavor(); }
3049 {
return baseproductdata( staticGuessRoot(root_r) ).registerFlavor();}
3082 const Pathname & needroot = staticGuessRoot(root_r);
3100 return firstNonEmptyLineIn(
home() /
"LastDistributionFlavor" );
3105 return firstNonEmptyLineIn( staticGuessRoot(root_r) /
"/var/lib/zypp/LastDistributionFlavor" );
3111 std::string guessAnonymousUniqueId(
const Pathname & root_r )
3114 std::string ret( firstNonEmptyLineIn( root_r /
"/var/lib/zypp/AnonymousUniqueId" ) );
3115 if ( ret.
empty() && root_r !=
"/" )
3118 ret = firstNonEmptyLineIn(
"/var/lib/zypp/AnonymousUniqueId" );
3126 return guessAnonymousUniqueId(
root() );
3131 return guessAnonymousUniqueId( staticGuessRoot(root_r) );
3138 MIL <<
"New VendorAttr: " << vendorAttr_r << endl;
std::string asString(const Patch::Category &obj)
static bool fileMissing(const Pathname &pathname)
helper functor
std::string toLower(const std::string &s)
Return lowercase version of s.
ZYppCommitResult commit(ResPool pool_r, const ZYppCommitPolicy &policy_r)
Commit changes in the pool.
VendorAttr _vendorAttr
vendor equivalence settings.
TraitsType::constPtrType constPtr
Interface to the rpm program.
Convenience SendReport<rpm::SingleTransReport> wrapper.
TraitsType::constPtrType constPtr
const Pathname & root() const
Remembered root directory of the target.
zypp::RepoStatus RepoStatus
sat::Transaction getTransaction()
Return the Transaction computed by the last solver run.
int assert_file(const Pathname &path, unsigned mode)
Create an empty file if it does not yet exist.
bool upgradingRepos() const
Whether there is at least one UpgradeRepo request pending.
A Solvable object within the sat Pool.
Save and restore locale set from file.
static bool error(const std::string &msg_r, const UserData &userData_r=UserData())
send error text
Namespace intended to collect all environment variables we use.
Alternating download and install.
int assert_dir(const Pathname &path, unsigned mode)
Like 'mkdir -p'.
static Ptr create(IODevice::Ptr iostr)
ZYppCommitPolicy & rpmNoSignature(bool yesNo_r)
Use rpm option –nosignature (default: false)
const LocaleSet & getRequestedLocales() const
Return the requested locales.
ManagedFile provideSrcPackage(const SrcPackage_constPtr &srcPackage_r) const
Provide SrcPackage in a local file.
[M] Install(multiversion) item (
unsigned splitEscaped(const C_Str &line_r, TOutputIterator result_r, const C_Str &sepchars_r=" \, bool withEmpty=false)
Split line_r into words with respect to escape delimeters.
bool solvfilesPathIsTemp() const
Whether we're using a temp.
#define ZYPP_THROW(EXCPT)
Drops a logline and throws the Exception.
Solvable satSolvable() const
Return the corresponding Solvable.
Result returned from ZYpp::commit.
void updateFileContent(const Pathname &filename, boost::function< bool()> condition, boost::function< std::string()> value)
updates the content of filename if condition is true, setting the content the the value returned by v...
static ZConfig & instance()
Singleton ctor.
First download all packages to the local cache.
bool isToBeInstalled() const
void addSolv(const Pathname &file_r)
Load Solvables from a solv-file.
std::string md5sum(const Pathname &file)
Compute a files md5sum.
Command frame for communication with PluginScript.
Pathname _tmpSolvfilesPath
int readlink(const Pathname &symlink_r, Pathname &target_r)
Like 'readlink'.
void setData(const Data &data_r)
Store new Data.
IMPL_PTR_TYPE(TargetImpl)
SolvIdentFile _autoInstalledFile
user/auto installed database
SignalProxy< void(int)> sigFinished()
std::string asJSON() const
JSON representation.
static ProductFileData scanFile(const Pathname &file_r)
Parse one file (or symlink) and return the ProductFileData parsed.
String matching (STRING|SUBSTRING|GLOB|REGEX).
TargetImpl(const Pathname &root_r="/", bool doRebuild_r=false)
Ctor.
void stampCommand()
Log info about the current process.
Target::commit helper optimizing package provision.
bool isNeedreboot() const
ZYppCommitPolicy & rpmInstFlags(target::rpm::RpmInstFlags newFlags_r)
The default target::rpm::RpmInstFlags.
TransactionStepList & rTransactionStepList()
Manipulate transactionStepList.
std::unordered_set< Locale > LocaleSet
const sat::Transaction & transaction() const
The full transaction list.
void discardScripts()
Discard all remembered scripts and/or or dump_posttrans lines.
StepStage stepStage() const
Step action result.
const Pathname & file() const
Return the file path.
int chmod(const Pathname &path, mode_t mode)
Like 'chmod'.
int dirForEach(const Pathname &dir_r, const StrMatcher &matcher_r, function< bool(const Pathname &, const char *const)> fnc_r)
ResStatus & status() const
Returns the current status.
void installPackage(const Pathname &filename, RpmInstFlags flags=RPMINST_NONE)
install rpm package
ZYppCommitPolicy & dryRun(bool yesNo_r)
Set dry run (default: false).
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
byKind_iterator byKindBegin(const ResKind &kind_r) const
void updateAutoInstalled()
Update the database of autoinstalled packages.
ZYppCommitPolicy & rpmExcludeDocs(bool yesNo_r)
Use rpm option –excludedocs (default: false)
const char * c_str() const
String representation.
std::string _distributionVersion
Cache distributionVersion.
void commitFindFileConflicts(const ZYppCommitPolicy &policy_r, ZYppCommitResult &result_r)
Commit helper checking for file conflicts after download.
Parallel execution of stateful PluginScripts.
void setData(const Data &data_r)
Store new Data.
detail::IdType value_type
void setAutoInstalled(const Queue &autoInstalled_r)
Set ident list of all autoinstalled solvables.
sat::Solvable buddy() const
Return the buddy we share our status object with.
std::string getline(std::istream &str)
Read one line from stream.
Access to the sat-pools string space.
Libsolv transaction wrapper.
Edition represents [epoch:]version[-release]
Attempts to create a lock to prevent the system from going into hibernate/shutdown.
std::string receiveLine()
Read one line from the input stream.
std::list< UpdateNotificationFile > UpdateNotifications
bool resetTransact(TransactByValue causer_r)
Not the same as setTransact( false ).
Similar to DownloadInAdvance, but try to split the transaction into heaps, where at the end of each h...
bool providesFile(const std::string &path_str, const std::string &name_str) const
If the package is installed and provides the file Needed to evaluate split provides during Resolver::...
std::list< PoolItem > PoolItemList
list of pool items
const_iterator end() const
Iterator behind the last TransactionStep.
Provide a new empty temporary file and delete it when no longer needed.
void writeUpgradeTestcase()
std::string form(const char *format,...) __attribute__((format(printf
Printf style construction of std::string.
static RepoStatus fromCookieFile(const Pathname &path)
Reads the status from a cookie file.
Class representing a patch.
void installSrcPackage(const SrcPackage_constPtr &srcPackage_r)
Install a source package on the Target.
std::string targetDistributionFlavor() const
This is register.flavor attribute of the installed base product.
bool compatibleWith(const Arch &targetArch_r) const
Compatibility relation.
int recursive_rmdir(const Pathname &path)
Like 'rm -r DIR'.
void install(const PoolItem &pi)
Log installation (or update) of a package.
ResObject::constPtr resolvable() const
Returns the ResObject::constPtr.
ChangedPseudoInstalled changedPseudoInstalled() const
Return all pseudo installed items whose current state differs from their initial one.
std::string targetDistributionRelease() const
This is register.release attribute of the installed base product.
Define a set of Solvables by ident and provides.
Extract and remember posttrans scripts for later execution.
TraitsType::constPtrType constPtr
SignalProxy< void()> sigMessageReceived()
expected< T > fromStompMessage(const zypp::PluginFrame &message)
void remember(const Exception &old_r)
Store an other Exception as history.
EstablishedStates establishedStates() const
Factory for EstablishedStates.
rpm::RpmDb _rpm
RPM database.
Repository systemRepo()
Return the system repository, create it if missing.
std::string distributionVersion() const
This is version attribute of the installed base product.
const LocaleSet & locales() const
Return the loacale set.
void createLastDistributionFlavorCache() const
generates a cache of the last product flavor
std::optional< RemoveResolvableSAReportReceiver > _removeResolvableSAReportReceiver
void initRequestedLocales(const LocaleSet &locales_r)
Start tracking changes based on this locales_r.
void saveToCookieFile(const Pathname &path_r) const
Save the status information to a cookie file.
StringQueue autoInstalled() const
Return the ident strings of all packages that would be auto-installed after the transaction is run...
LocaleSet requestedLocales() const
Languages to be supported by the system.
[ ] Nothing (includes implicit deletes due to obsoletes and non-package actions)
bool empty() const
Test for an empty path.
zypp::callback::UserData UserData
int addmod(const Pathname &path, mode_t mode)
Add the mode bits to the file given by path.
void push(value_type val_r)
Push a value to the end off the Queue.
std::unordered_set< IdString > IdStringSet
const StrMatcher & matchNoDots()
Convenience returning StrMatcher( "[^.]*", Match::GLOB )
Store and operate on date (time_t).
SolvableIterator solvablesEnd() const
Iterator behind the last Solvable.
std::string shortName() const
static Pool instance()
Singleton ctor.
const Data & data() const
Return the data.
std::string version() const
Version.
Pathname _root
Path to the target.
int touch(const Pathname &path)
Change file's modification and access times.
std::string rpmDbStateHash(const Pathname &root_r)
Execute a program and give access to its io An object of this class encapsulates the execution of an ...
std::string trim(const std::string &s, const Trim trim_r)
bool set(const std::string &key_r, AnyType val_r)
Set the value for key (nonconst version always returns true).
pool::PoolTraits::HardLockQueries Data
static const std::string & systemRepoAlias()
Reserved system repository alias .
TraitsType::constPtrType constPtr
static const Pathname & fname()
Get the current log file path.
const std::string & asString() const
String representation.
void send(const PluginFrame &frame_r)
Send PluginFrame to all open plugins.
Just download all packages to the local cache.
Options and policies for ZYpp::commit.
bool isExist() const
Return whether valid stat info exists.
libzypp will decide what to do.
db_const_iterator() ZYPP_DEPRECATED
Open the default rpmdb below the host system (at /).
A single step within a Transaction.
ZYppCommitPolicy & downloadMode(DownloadMode val_r)
Commit download policy to use.
void parseFrom(const InputStream &istr_r)
Parse file istr_r and add its specs (one per line, #-comments).
RequestedLocalesFile _requestedLocalesFile
Requested Locales database.
void setLocales(const LocaleSet &locales_r)
Store a new locale set.
Pathname rootDir() const
Get rootdir (for file conflicts check)
void getHardLockQueries(HardLockQueries &activeLocks_r)
Suggest a new set of queries based on the current selection.
Pathname dirname() const
Return all but the last component od this path.
static Pathname assertprefix(const Pathname &root_r, const Pathname &path_r)
Return path_r prefixed with root_r, unless it is already prefixed.
ChangedPseudoInstalled changedPseudoInstalled() const
Return all pseudo installed items whose current state differs from the established one...
std::string release() const
Release.
Interim helper class to collect global options and settings.
Definition of vendor equivalence.
SolvableIterator solvablesBegin() const
Iterator to the first Solvable.
bool startsWith(const C_Str &str_r, const C_Str &prefix_r)
alias for hasPrefix
int close() override
Wait for the progamm to complete.
void sendLoglineRpm(const std::string &line_r, unsigned rpmlevel_r)
Convenience to send a contentLogline translating a rpm loglevel.
std::unique_ptr< ReportType > _report
unsigned int epoch_t
Type of an epoch.
std::string summary() const
bool order()
Order transaction steps for commit.
Pathname solvfilesPath() const
The solv file location actually in use (default or temp).
void updateSolvFileIndex(const Pathname &solvfile_r)
Create solv file content digest for zypper bash completion.
std::string targetDistribution() const
This is register.target attribute of the installed base product.
Resolver & resolver() const
The Resolver.
Writing the zypp history fileReference counted signleton for writhing the zypp history file...
const VendorAttr & vendorAttr() const
The targets current vendor equivalence settings.
void initDatabase(Pathname root_r=Pathname(), bool doRebuild_r=false)
Prepare access to the rpm database below root_r.
int readdir(std::list< std::string > &retlist_r, const Pathname &path_r, bool dots_r)
Return content of directory via retlist.
TraitsType::constPtrType constPtr
void closeDatabase()
Block further access to the rpm database and go back to uninitialized state.
ZYppCommitPolicy & restrictToMedia(unsigned mediaNr_r)
Restrict commit to media 1.
std::string anonymousUniqueId() const
anonymous unique id
static PoolImpl & myPool()
RepoStatus rpmDbRepoStatus(const Pathname &root_r)
const char * c_str() const
Conversion to const char *
std::vector< std::string > Arguments
bool endsWith(const C_Str &str_r, const C_Str &prefix_r)
alias for hasSuffix
int unlink(const Pathname &path)
Like 'unlink'.
Pathname home() const
The directory to store things.
void addProvides(Capability provides_r)
A all sat::Solvable matching this provides_r.
static std::string generateRandomId()
generates a random id using uuidgen
void resetDispose()
Set no dispose function.
ManagedFile get(const PoolItem &citem_r)
Provide a package.
HardLocksFile _hardLocksFile
Hard-Locks database.
void add(Value val_r)
Push JSON Value to Array.
static void setRoot(const Pathname &root)
Set new root directory to the default history log file path.
byKind_iterator byKindEnd(const ResKind &kind_r) const
void setHardLockQueries(const HardLockQueries &newLocks_r)
Set a new set of queries.
void setSingleTransactionMode(bool yesno_r)
#define SUBST_IF(PAT, VAL)
Libsolv Id queue wrapper.
int symlink(const Pathname &oldpath, const Pathname &newpath)
Like 'symlink'.
#define ZYPP_CAUGHT(EXCPT)
Drops a logline telling the Exception was caught (in order to handle it).
SignalProxy< void(uint)> sigChannelReadyRead()
Product::constPtr baseProduct() const
returns the target base installed product, also known as the distribution or platform.
EstablishedStates::ChangedPseudoInstalled ChangedPseudoInstalled
Map holding pseudo installed items where current and established status differ.
void createAnonymousId() const
generates the unique anonymous id which is called when creating the target
ZYppCommitPolicy & allMedia()
Process all media (default)
const_iterator begin() const
Iterator to the first TransactionStep.
~TargetImpl() override
Dtor.
#define NON_MOVABLE(CLASS)
Delete move ctor and move assign.
StepType stepType() const
Type of action to perform in this step.
const Data & data() const
Return the data.
Base class for Exception.
bool preloaded() const
Whether preloaded hint is set.
const std::string & command() const
The command we're executing.
const Pathname & root() const
static std::optional< Pipe > create(int flags=0)
reference value() const
Reference to the Tp object.
const Pathname & dbPath() const
void load(const Pathname &path_r)
Find and launch plugins sending PLUGINBEGIN.
Data returned by ProductFileReader.
static Date now()
Return the current time.
void remove(const PoolItem &pi)
Log removal of a package.
bool TRANSACTIONAL_UPDATE()
void add(String key_r, Value val_r)
Add key/value pair.
void removePackage(const std::string &name_r, RpmInstFlags flags=RPMINST_NONE)
remove rpm package
std::vector< sat::Transaction::Step > TransactionStepList
Typesafe passing of user data via callbacks.
json::Value toJSON(const sat::Transaction::Step &step_r)
See commitbegin on page plugin-commit for the specs.
bool strToBool(const C_Str &str, bool default_r)
Parse str into a bool depending on the default value.
epoch_t epoch() const
Epoch.
std::string distroverpkg() const
Package telling the "product version" on systems not using /etc/product.d/baseproduct.
Pathname root() const
The root set for this target.
void setNeedrebootSpec(sat::SolvableSpec needrebootSpec_r)
Solvables which should trigger the reboot-needed hint if installed/updated.
Reference counted access to a Tp object calling a custom Dispose function when the last AutoDispose h...
void eraseFromPool()
Remove this Repository from its Pool.
bool hasFile(const std::string &file_r, const std::string &name_r="") const
Return true if at least one package owns a certain file (name_r empty) Return true if package name_r ...
void comment(const std::string &comment, bool timestamp=false)
Log a comment (even multiline).
#define NON_COPYABLE(CLASS)
Delete copy ctor and copy assign.
Wrapper class for ::stat/::lstat.
Arch systemArchitecture() const
The system architecture zypp uses.
bool solvablesEmpty() const
Whether Repository contains solvables.
void executeScripts(rpm::RpmDb &rpm_r, const IdStringSet &obsoletedPackages_r)
Execute the remembered scripts and/or or dump_posttrans lines.
sat::Transaction & rTransaction()
Manipulate transaction.
Combining sat::Solvable and ResStatus.
bool singleTransModeEnabled() const
Whether the single_rpmtrans backend is enabled (or the classic_rpmtrans)
ManagedFile provideSrcPackage(const SrcPackage_constPtr &srcPackage_r)
Provides a source package on the Target.
static TmpFile makeSibling(const Pathname &sibling_r)
Provide a new empty temporary directory as sibling.
Target::DistributionLabel distributionLabel() const
This is shortName and summary attribute of the installed base product.
Track changing files or directories.
std::string asString() const
Conversion to std::string
bool isKind(const ResKind &kind_r) const
std::optional< InstallResolvableSAReportReceiver > _installResolvableSAReportReceiver
const std::string & asString() const
std::unordered_set< IdString > Data
void XRunUpdateMessages(const Pathname &root_r, const Pathname &messagesPath_r, const std::vector< sat::Solvable > &checkPackages_r, ZYppCommitResult &result_r)
static zypp::Pathname lockfileDir()
std::string distributionFlavor() const
This is flavor attribute of the installed base product but does not require the target to be loaded a...
int rename(const Pathname &oldpath, const Pathname &newpath)
Like 'rename'.
size_type solvablesSize() const
Number of solvables in Repository.
ResObject::Ptr makeResObject(const sat::Solvable &solvable_r)
Create ResObject from sat::Solvable.
void commitInSingleTransaction(const ZYppCommitPolicy &policy_r, CommitPackageCache &packageCache_r, ZYppCommitResult &result_r)
Commit ordered changes (internal helper)
Easy-to use interface to the ZYPP dependency resolver.
Pathname defaultSolvfilesPath() const
The systems default solv file location.
Solvable satSolvable() const
Return the corresponding sat::Solvable.
bool hasPrefix(const C_Str &str_r, const C_Str &prefix_r)
Return whether str_r has prefix prefix_r.
void setCommitList(std::vector< sat::Solvable > commitList_r)
Download(commit) sequence of solvables to compute read ahead.
bool empty() const
Whether this is an empty object without valid data.
void report(const callback::UserData &userData_r)
rpm::RpmDb & rpm()
The RPM database.
void multiversionSpecChanged()
#define MAXRPMMESSAGELINES
ZYppCommitResult & _result
static ResPool instance()
Singleton ctor.
void sendLogline(const std::string &line_r, ReportType::loglevel level_r=ReportType::loglevel::msg)
Convenience to send a contentLogline.
void load(bool force=true)