275f93a33cf84585f93c51ac3565e2cac012c257
[platform/upstream/libzypp.git] / zypp / target / TargetImpl.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/target/TargetImpl.cc
10  *
11 */
12 #include <iostream>
13 #include <fstream>
14 #include <sstream>
15 #include <string>
16 #include <list>
17 #include <set>
18
19 #include <sys/types.h>
20 #include <dirent.h>
21
22 #include "zypp/base/LogTools.h"
23 #include "zypp/base/Exception.h"
24 #include "zypp/base/Iterator.h"
25 #include "zypp/base/Gettext.h"
26 #include "zypp/base/IOStream.h"
27 #include "zypp/base/Functional.h"
28 #include "zypp/base/UserRequestException.h"
29 #include "zypp/base/Json.h"
30
31 #include "zypp/ZConfig.h"
32 #include "zypp/ZYppFactory.h"
33
34 #include "zypp/PoolItem.h"
35 #include "zypp/ResObjects.h"
36 #include "zypp/Url.h"
37 #include "zypp/TmpPath.h"
38 #include "zypp/RepoStatus.h"
39 #include "zypp/ExternalProgram.h"
40 #include "zypp/Repository.h"
41
42 #include "zypp/ResFilters.h"
43 #include "zypp/HistoryLog.h"
44 #include "zypp/target/TargetImpl.h"
45 #include "zypp/target/TargetCallbackReceiver.h"
46 #include "zypp/target/rpm/librpmDb.h"
47 #include "zypp/target/CommitPackageCache.h"
48 #include "zypp/target/RpmPostTransCollector.h"
49
50 #include "zypp/parser/ProductFileReader.h"
51
52 #include "zypp/solver/detail/Testcase.h"
53
54 #include "zypp/repo/SrcPackageProvider.h"
55
56 #include "zypp/sat/Pool.h"
57 #include "zypp/sat/Transaction.h"
58
59 #include "zypp/PluginExecutor.h"
60
61 using namespace std;
62
63 ///////////////////////////////////////////////////////////////////
64 namespace zypp
65 { /////////////////////////////////////////////////////////////////
66   ///////////////////////////////////////////////////////////////////
67   namespace json
68   {
69     // Lazy via template specialisation / should switch to overloading
70
71     template<>
72     inline std::string toJSON( const ZYppCommitResult::TransactionStepList & steps_r )
73     {
74       using sat::Transaction;
75       json::Array ret;
76
77       for ( const Transaction::Step & step : steps_r )
78         // ignore implicit deletes due to obsoletes and non-package actions
79         if ( step.stepType() != Transaction::TRANSACTION_IGNORE )
80           ret.add( step );
81
82       return ret.asJSON();
83     }
84
85     /** See \ref commitbegin on page \ref plugin-commit for the specs. */
86     template<>
87     inline std::string toJSON( const sat::Transaction::Step & step_r )
88     {
89       static const std::string strType( "type" );
90       static const std::string strStage( "stage" );
91       static const std::string strSolvable( "solvable" );
92
93       static const std::string strTypeDel( "-" );
94       static const std::string strTypeIns( "+" );
95       static const std::string strTypeMul( "M" );
96
97       static const std::string strStageDone( "ok" );
98       static const std::string strStageFailed( "err" );
99
100       static const std::string strSolvableN( "n" );
101       static const std::string strSolvableE( "e" );
102       static const std::string strSolvableV( "v" );
103       static const std::string strSolvableR( "r" );
104       static const std::string strSolvableA( "a" );
105
106       using sat::Transaction;
107       json::Object ret;
108
109       switch ( step_r.stepType() )
110       {
111         case Transaction::TRANSACTION_IGNORE:   /*empty*/ break;
112         case Transaction::TRANSACTION_ERASE:    ret.add( strType, strTypeDel ); break;
113         case Transaction::TRANSACTION_INSTALL:  ret.add( strType, strTypeIns ); break;
114         case Transaction::TRANSACTION_MULTIINSTALL: ret.add( strType, strTypeMul ); break;
115       }
116
117       switch ( step_r.stepStage() )
118       {
119         case Transaction::STEP_TODO:            /*empty*/ break;
120         case Transaction::STEP_DONE:            ret.add( strStage, strStageDone ); break;
121         case Transaction::STEP_ERROR:           ret.add( strStage, strStageFailed ); break;
122       }
123
124       {
125         IdString ident;
126         Edition ed;
127         Arch arch;
128         if ( sat::Solvable solv = step_r.satSolvable() )
129         {
130           ident = solv.ident();
131           ed    = solv.edition();
132           arch  = solv.arch();
133         }
134         else
135         {
136           // deleted package; post mortem data stored in Transaction::Step
137           ident = step_r.ident();
138           ed    = step_r.edition();
139           arch  = step_r.arch();
140         }
141
142         json::Object s {
143           { strSolvableN, ident.asString() },
144           { strSolvableV, ed.version() },
145           { strSolvableR, ed.release() },
146           { strSolvableA, arch.asString() }
147         };
148         if ( Edition::epoch_t epoch = ed.epoch() )
149           s.add( strSolvableE, epoch );
150
151         ret.add( strSolvable, s );
152       }
153
154       return ret.asJSON();
155     }
156   } // namespace json
157   ///////////////////////////////////////////////////////////////////
158
159   ///////////////////////////////////////////////////////////////////
160   namespace target
161   {
162     ///////////////////////////////////////////////////////////////////
163     namespace
164     {
165       SolvIdentFile::Data getUserInstalledFromHistory( const Pathname & historyFile_r )
166       {
167         SolvIdentFile::Data onSystemByUserList;
168         // go and parse it: 'who' must constain an '@', then it was installed by user request.
169         // 2009-09-29 07:25:19|install|lirc-remotes|0.8.5-3.2|x86_64|root@opensuse|InstallationImage|a204211eb0...
170         std::ifstream infile( historyFile_r.c_str() );
171         for( iostr::EachLine in( infile ); in; in.next() )
172         {
173           const char * ch( (*in).c_str() );
174           // start with year
175           if ( *ch < '1' || '9' < *ch )
176             continue;
177           const char * sep1 = ::strchr( ch, '|' );      // | after date
178           if ( !sep1 )
179             continue;
180           ++sep1;
181           // if logs an install or delete
182           bool installs = true;
183           if ( ::strncmp( sep1, "install|", 8 ) )
184           {
185             if ( ::strncmp( sep1, "remove |", 8 ) )
186               continue; // no install and no remove
187               else
188                 installs = false; // remove
189           }
190           sep1 += 8;                                    // | after what
191           // get the package name
192           const char * sep2 = ::strchr( sep1, '|' );    // | after name
193           if ( !sep2 || sep1 == sep2 )
194             continue;
195           (*in)[sep2-ch] = '\0';
196           IdString pkg( sep1 );
197           // we're done, if a delete
198           if ( !installs )
199           {
200             onSystemByUserList.erase( pkg );
201             continue;
202           }
203           // now guess whether user installed or not (3rd next field contains 'user@host')
204           if ( (sep1 = ::strchr( sep2+1, '|' ))         // | after version
205             && (sep1 = ::strchr( sep1+1, '|' ))         // | after arch
206             && (sep2 = ::strchr( sep1+1, '|' )) )       // | after who
207           {
208             (*in)[sep2-ch] = '\0';
209             if ( ::strchr( sep1+1, '@' ) )
210             {
211               // by user
212               onSystemByUserList.insert( pkg );
213               continue;
214             }
215           }
216         }
217         MIL << "onSystemByUserList found: " << onSystemByUserList.size() << endl;
218         return onSystemByUserList;
219       }
220     } // namespace
221     ///////////////////////////////////////////////////////////////////
222
223     ///////////////////////////////////////////////////////////////////
224     namespace
225     {
226       inline PluginFrame transactionPluginFrame( const std::string & command_r, ZYppCommitResult::TransactionStepList & steps_r )
227       {
228         return PluginFrame( command_r, json::Object {
229           { "TransactionStepList", steps_r }
230         }.asJSON() );
231       }
232     } // namespace
233     ///////////////////////////////////////////////////////////////////
234
235     /** \internal Manage writing a new testcase when doing an upgrade. */
236     void writeUpgradeTestcase()
237     {
238       unsigned toKeep( ZConfig::instance().solver_upgradeTestcasesToKeep() );
239       MIL << "Testcases to keep: " << toKeep << endl;
240       if ( !toKeep )
241         return;
242       Target_Ptr target( getZYpp()->getTarget() );
243       if ( ! target )
244       {
245         WAR << "No Target no Testcase!" << endl;
246         return;
247       }
248
249       std::string stem( "updateTestcase" );
250       Pathname dir( target->assertRootPrefix("/var/log/") );
251       Pathname next( dir / Date::now().form( stem+"-%Y-%m-%d-%H-%M-%S" ) );
252
253       {
254         std::list<std::string> content;
255         filesystem::readdir( content, dir, /*dots*/false );
256         std::set<std::string> cases;
257         for_( c, content.begin(), content.end() )
258         {
259           if ( str::startsWith( *c, stem ) )
260             cases.insert( *c );
261         }
262         if ( cases.size() >= toKeep )
263         {
264           unsigned toDel = cases.size() - toKeep + 1; // +1 for the new one
265           for_( c, cases.begin(), cases.end() )
266           {
267             filesystem::recursive_rmdir( dir/(*c) );
268             if ( ! --toDel )
269               break;
270           }
271         }
272       }
273
274       MIL << "Write new testcase " << next << endl;
275       getZYpp()->resolver()->createSolverTestcase( next.asString(), false/*no solving*/ );
276     }
277
278     ///////////////////////////////////////////////////////////////////
279     namespace
280     { /////////////////////////////////////////////////////////////////
281
282       /** Execute script and report against report_r.
283        * Return \c std::pair<bool,PatchScriptReport::Action> to indicate if
284        * execution was successfull (<tt>first = true</tt>), or the desired
285        * \c PatchScriptReport::Action in case execution failed
286        * (<tt>first = false</tt>).
287        *
288        * \note The packager is responsible for setting the correct permissions
289        * of the script. If the script is not executable it is reported as an
290        * error. We must not modify the permessions.
291        */
292       std::pair<bool,PatchScriptReport::Action> doExecuteScript( const Pathname & root_r,
293                                                                  const Pathname & script_r,
294                                                                  callback::SendReport<PatchScriptReport> & report_r )
295       {
296         MIL << "Execute script " << PathInfo(Pathname::assertprefix( root_r,script_r)) << endl;
297
298         HistoryLog historylog;
299         historylog.comment(script_r.asString() + _(" executed"), /*timestamp*/true);
300         ExternalProgram prog( script_r.asString(), ExternalProgram::Stderr_To_Stdout, false, -1, true, root_r );
301
302         for ( std::string output = prog.receiveLine(); output.length(); output = prog.receiveLine() )
303         {
304           historylog.comment(output);
305           if ( ! report_r->progress( PatchScriptReport::OUTPUT, output ) )
306           {
307             WAR << "User request to abort script " << script_r << endl;
308             prog.kill();
309             // the rest is handled by exit code evaluation
310             // in case the script has meanwhile finished.
311           }
312         }
313
314         std::pair<bool,PatchScriptReport::Action> ret( std::make_pair( false, PatchScriptReport::ABORT ) );
315
316         if ( prog.close() != 0 )
317         {
318           ret.second = report_r->problem( prog.execError() );
319           WAR << "ACTION" << ret.second << "(" << prog.execError() << ")" << endl;
320           std::ostringstream sstr;
321           sstr << script_r << _(" execution failed") << " (" << prog.execError() << ")" << endl;
322           historylog.comment(sstr.str(), /*timestamp*/true);
323           return ret;
324         }
325
326         report_r->finish();
327         ret.first = true;
328         return ret;
329       }
330
331       /** Execute script and report against report_r.
332        * Return \c false if user requested \c ABORT.
333        */
334       bool executeScript( const Pathname & root_r,
335                           const Pathname & script_r,
336                           callback::SendReport<PatchScriptReport> & report_r )
337       {
338         std::pair<bool,PatchScriptReport::Action> action( std::make_pair( false, PatchScriptReport::ABORT ) );
339
340         do {
341           action = doExecuteScript( root_r, script_r, report_r );
342           if ( action.first )
343             return true; // success
344
345           switch ( action.second )
346           {
347             case PatchScriptReport::ABORT:
348               WAR << "User request to abort at script " << script_r << endl;
349               return false; // requested abort.
350               break;
351
352             case PatchScriptReport::IGNORE:
353               WAR << "User request to skip script " << script_r << endl;
354               return true; // requested skip.
355               break;
356
357             case PatchScriptReport::RETRY:
358               break; // again
359           }
360         } while ( action.second == PatchScriptReport::RETRY );
361
362         // THIS is not intended to be reached:
363         INT << "Abort on unknown ACTION request " << action.second << " returned" << endl;
364         return false; // abort.
365       }
366
367       /** Look for update scripts named 'name-version-release-*' and
368        *  execute them. Return \c false if \c ABORT was requested.
369        *
370        * \see http://en.opensuse.org/Software_Management/Code11/Scripts_and_Messages
371        */
372       bool RunUpdateScripts( const Pathname & root_r,
373                              const Pathname & scriptsPath_r,
374                              const std::vector<sat::Solvable> & checkPackages_r,
375                              bool aborting_r )
376       {
377         if ( checkPackages_r.empty() )
378           return true; // no installed packages to check
379
380         MIL << "Looking for new update scripts in (" <<  root_r << ")" << scriptsPath_r << endl;
381         Pathname scriptsDir( Pathname::assertprefix( root_r, scriptsPath_r ) );
382         if ( ! PathInfo( scriptsDir ).isDir() )
383           return true; // no script dir
384
385         std::list<std::string> scripts;
386         filesystem::readdir( scripts, scriptsDir, /*dots*/false );
387         if ( scripts.empty() )
388           return true; // no scripts in script dir
389
390         // Now collect and execute all matching scripts.
391         // On ABORT: at least log all outstanding scripts.
392         // - "name-version-release"
393         // - "name-version-release-*"
394         bool abort = false;
395         std::map<std::string, Pathname> unify; // scripts <md5,path>
396         for_( it, checkPackages_r.begin(), checkPackages_r.end() )
397         {
398           std::string prefix( str::form( "%s-%s", it->name().c_str(), it->edition().c_str() ) );
399           for_( sit, scripts.begin(), scripts.end() )
400           {
401             if ( ! str::hasPrefix( *sit, prefix ) )
402               continue;
403
404             if ( (*sit)[prefix.size()] != '\0' && (*sit)[prefix.size()] != '-' )
405               continue; // if not exact match it had to continue with '-'
406
407             PathInfo script( scriptsDir / *sit );
408             Pathname localPath( scriptsPath_r/(*sit) ); // without root prefix
409             std::string unifytag;                       // must not stay empty
410
411             if ( script.isFile() )
412             {
413               // Assert it's set executable, unify by md5sum.
414               filesystem::addmod( script.path(), 0500 );
415               unifytag = filesystem::md5sum( script.path() );
416             }
417             else if ( ! script.isExist() )
418             {
419               // Might be a dangling symlink, might be ok if we are in
420               // instsys (absolute symlink within the system below /mnt).
421               // readlink will tell....
422               unifytag = filesystem::readlink( script.path() ).asString();
423             }
424
425             if ( unifytag.empty() )
426               continue;
427
428             // Unify scripts
429             if ( unify[unifytag].empty() )
430             {
431               unify[unifytag] = localPath;
432             }
433             else
434             {
435               // translators: We may find the same script content in files with different names.
436               // Only the first occurence is executed, subsequent ones are skipped. It's a one-line
437               // message for a log file. Preferably start translation with "%s"
438               std::string msg( str::form(_("%s already executed as %s)"), localPath.asString().c_str(), unify[unifytag].c_str() ) );
439               MIL << "Skip update script: " << msg << endl;
440               HistoryLog().comment( msg, /*timestamp*/true );
441               continue;
442             }
443
444             if ( abort || aborting_r )
445             {
446               WAR << "Aborting: Skip update script " << *sit << endl;
447               HistoryLog().comment(
448                   localPath.asString() + _(" execution skipped while aborting"),
449                   /*timestamp*/true);
450             }
451             else
452             {
453               MIL << "Found update script " << *sit << endl;
454               callback::SendReport<PatchScriptReport> report;
455               report->start( make<Package>( *it ), script.path() );
456
457               if ( ! executeScript( root_r, localPath, report ) ) // script path without root prefix!
458                 abort = true; // requested abort.
459             }
460           }
461         }
462         return !abort;
463       }
464
465       ///////////////////////////////////////////////////////////////////
466       //
467       ///////////////////////////////////////////////////////////////////
468
469       inline void copyTo( std::ostream & out_r, const Pathname & file_r )
470       {
471         std::ifstream infile( file_r.c_str() );
472         for( iostr::EachLine in( infile ); in; in.next() )
473         {
474           out_r << *in << endl;
475         }
476       }
477
478       inline std::string notificationCmdSubst( const std::string & cmd_r, const UpdateNotificationFile & notification_r )
479       {
480         std::string ret( cmd_r );
481 #define SUBST_IF(PAT,VAL) if ( ret.find( PAT ) != std::string::npos ) ret = str::gsub( ret, PAT, VAL )
482         SUBST_IF( "%p", notification_r.solvable().asString() );
483         SUBST_IF( "%P", notification_r.file().asString() );
484 #undef SUBST_IF
485         return ret;
486       }
487
488       void sendNotification( const Pathname & root_r,
489                              const UpdateNotifications & notifications_r )
490       {
491         if ( notifications_r.empty() )
492           return;
493
494         std::string cmdspec( ZConfig::instance().updateMessagesNotify() );
495         MIL << "Notification command is '" << cmdspec << "'" << endl;
496         if ( cmdspec.empty() )
497           return;
498
499         std::string::size_type pos( cmdspec.find( '|' ) );
500         if ( pos == std::string::npos )
501         {
502           ERR << "Can't send Notification: Missing 'format |' in command spec." << endl;
503           HistoryLog().comment( str::Str() << _("Error sending update message notification."), /*timestamp*/true );
504           return;
505         }
506
507         std::string formatStr( str::toLower( str::trim( cmdspec.substr( 0, pos ) ) ) );
508         std::string commandStr( str::trim( cmdspec.substr( pos + 1 ) ) );
509
510         enum Format { UNKNOWN, NONE, SINGLE, DIGEST, BULK };
511         Format format = UNKNOWN;
512         if ( formatStr == "none" )
513           format = NONE;
514         else if ( formatStr == "single" )
515           format = SINGLE;
516         else if ( formatStr == "digest" )
517           format = DIGEST;
518         else if ( formatStr == "bulk" )
519           format = BULK;
520         else
521         {
522           ERR << "Can't send Notification: Unknown format '" << formatStr << " |' in command spec." << endl;
523           HistoryLog().comment( str::Str() << _("Error sending update message notification."), /*timestamp*/true );
524          return;
525         }
526
527         // Take care: commands are ececuted chroot(root_r). The message file
528         // pathnames in notifications_r are local to root_r. For physical access
529         // to the file they need to be prefixed.
530
531         if ( format == NONE || format == SINGLE )
532         {
533           for_( it, notifications_r.begin(), notifications_r.end() )
534           {
535             std::vector<std::string> command;
536             if ( format == SINGLE )
537               command.push_back( "<"+Pathname::assertprefix( root_r, it->file() ).asString() );
538             str::splitEscaped( notificationCmdSubst( commandStr, *it ), std::back_inserter( command ) );
539
540             ExternalProgram prog( command, ExternalProgram::Stderr_To_Stdout, false, -1, true, root_r );
541             if ( true ) // Wait for feedback
542             {
543               for( std::string line = prog.receiveLine(); ! line.empty(); line = prog.receiveLine() )
544               {
545                 DBG << line;
546               }
547               int ret = prog.close();
548               if ( ret != 0 )
549               {
550                 ERR << "Notification command returned with error (" << ret << ")." << endl;
551                 HistoryLog().comment( str::Str() << _("Error sending update message notification."), /*timestamp*/true );
552                 return;
553               }
554             }
555           }
556         }
557         else if ( format == DIGEST || format == BULK )
558         {
559           filesystem::TmpFile tmpfile;
560           ofstream out( tmpfile.path().c_str() );
561           for_( it, notifications_r.begin(), notifications_r.end() )
562           {
563             if ( format == DIGEST )
564             {
565               out << it->file() << endl;
566             }
567             else if ( format == BULK )
568             {
569               copyTo( out << '\f', Pathname::assertprefix( root_r, it->file() ) );
570             }
571           }
572
573           std::vector<std::string> command;
574           command.push_back( "<"+tmpfile.path().asString() ); // redirect input
575           str::splitEscaped( notificationCmdSubst( commandStr, *notifications_r.begin() ), std::back_inserter( command ) );
576
577           ExternalProgram prog( command, ExternalProgram::Stderr_To_Stdout, false, -1, true, root_r );
578           if ( true ) // Wait for feedback otherwise the TmpFile goes out of scope.
579           {
580             for( std::string line = prog.receiveLine(); ! line.empty(); line = prog.receiveLine() )
581             {
582               DBG << line;
583             }
584             int ret = prog.close();
585             if ( ret != 0 )
586             {
587               ERR << "Notification command returned with error (" << ret << ")." << endl;
588               HistoryLog().comment( str::Str() << _("Error sending update message notification."), /*timestamp*/true );
589               return;
590             }
591           }
592         }
593         else
594         {
595           INT << "Can't send Notification: Missing handler for 'format |' in command spec." << endl;
596           HistoryLog().comment( str::Str() << _("Error sending update message notification."), /*timestamp*/true );
597           return;
598         }
599       }
600
601
602       /** Look for update messages named 'name-version-release-*' and
603        *  send notification according to \ref ZConfig::updateMessagesNotify.
604        *
605        * \see http://en.opensuse.org/Software_Management/Code11/Scripts_and_Messages
606        */
607       void RunUpdateMessages( const Pathname & root_r,
608                               const Pathname & messagesPath_r,
609                               const std::vector<sat::Solvable> & checkPackages_r,
610                               ZYppCommitResult & result_r )
611       {
612         if ( checkPackages_r.empty() )
613           return; // no installed packages to check
614
615         MIL << "Looking for new update messages in (" <<  root_r << ")" << messagesPath_r << endl;
616         Pathname messagesDir( Pathname::assertprefix( root_r, messagesPath_r ) );
617         if ( ! PathInfo( messagesDir ).isDir() )
618           return; // no messages dir
619
620         std::list<std::string> messages;
621         filesystem::readdir( messages, messagesDir, /*dots*/false );
622         if ( messages.empty() )
623           return; // no messages in message dir
624
625         // Now collect all matching messages in result and send them
626         // - "name-version-release"
627         // - "name-version-release-*"
628         HistoryLog historylog;
629         for_( it, checkPackages_r.begin(), checkPackages_r.end() )
630         {
631           std::string prefix( str::form( "%s-%s", it->name().c_str(), it->edition().c_str() ) );
632           for_( sit, messages.begin(), messages.end() )
633           {
634             if ( ! str::hasPrefix( *sit, prefix ) )
635               continue;
636
637             if ( (*sit)[prefix.size()] != '\0' && (*sit)[prefix.size()] != '-' )
638               continue; // if not exact match it had to continue with '-'
639
640             PathInfo message( messagesDir / *sit );
641             if ( ! message.isFile() || message.size() == 0 )
642               continue;
643
644             MIL << "Found update message " << *sit << endl;
645             Pathname localPath( messagesPath_r/(*sit) ); // without root prefix
646             result_r.rUpdateMessages().push_back( UpdateNotificationFile( *it, localPath ) );
647             historylog.comment( str::Str() << _("New update message") << " " << localPath, /*timestamp*/true );
648           }
649         }
650         sendNotification( root_r, result_r.updateMessages() );
651       }
652
653       /////////////////////////////////////////////////////////////////
654     } // namespace
655     ///////////////////////////////////////////////////////////////////
656
657     void XRunUpdateMessages( const Pathname & root_r,
658                              const Pathname & messagesPath_r,
659                              const std::vector<sat::Solvable> & checkPackages_r,
660                              ZYppCommitResult & result_r )
661     { RunUpdateMessages( root_r, messagesPath_r, checkPackages_r, result_r ); }
662
663     ///////////////////////////////////////////////////////////////////
664
665     IMPL_PTR_TYPE(TargetImpl);
666
667     TargetImpl_Ptr TargetImpl::_nullimpl;
668
669     /** Null implementation */
670     TargetImpl_Ptr TargetImpl::nullimpl()
671     {
672       if (_nullimpl == 0)
673         _nullimpl = new TargetImpl;
674       return _nullimpl;
675     }
676
677     ///////////////////////////////////////////////////////////////////
678     //
679     //  METHOD NAME : TargetImpl::TargetImpl
680     //  METHOD TYPE : Ctor
681     //
682     TargetImpl::TargetImpl( const Pathname & root_r, bool doRebuild_r )
683     : _root( root_r )
684     , _requestedLocalesFile( home() / "RequestedLocales" )
685     , _autoInstalledFile( home() / "AutoInstalled" )
686     , _hardLocksFile( Pathname::assertprefix( _root, ZConfig::instance().locksFile() ) )
687     {
688       _rpm.initDatabase( root_r, Pathname(), doRebuild_r );
689
690       HistoryLog::setRoot(_root);
691
692       createAnonymousId();
693
694       MIL << "Initialized target on " << _root << endl;
695     }
696
697     /**
698      * generates a random id using uuidgen
699      */
700     static std::string generateRandomId()
701     {
702       std::ifstream uuidprovider( "/proc/sys/kernel/random/uuid" );
703       return iostr::getline( uuidprovider );
704     }
705
706     /**
707      * updates the content of \p filename
708      * if \p condition is true, setting the content
709      * the the value returned by \p value
710      */
711     void updateFileContent( const Pathname &filename,
712                             boost::function<bool ()> condition,
713                             boost::function<string ()> value )
714     {
715         string val = value();
716         // if the value is empty, then just dont
717         // do anything, regardless of the condition
718         if ( val.empty() )
719             return;
720
721         if ( condition() )
722         {
723             MIL << "updating '" << filename << "' content." << endl;
724
725             // if the file does not exist we need to generate the uuid file
726
727             std::ofstream filestr;
728             // make sure the path exists
729             filesystem::assert_dir( filename.dirname() );
730             filestr.open( filename.c_str() );
731
732             if ( filestr.good() )
733             {
734                 filestr << val;
735                 filestr.close();
736             }
737             else
738             {
739                 // FIXME, should we ignore the error?
740                 ZYPP_THROW(Exception("Can't openfile '" + filename.asString() + "' for writing"));
741             }
742         }
743     }
744
745     /** helper functor */
746     static bool fileMissing( const Pathname &pathname )
747     {
748         return ! PathInfo(pathname).isExist();
749     }
750
751     void TargetImpl::createAnonymousId() const
752     {
753
754       // create the anonymous unique id
755       // this value is used for statistics
756       Pathname idpath( home() / "AnonymousUniqueId");
757
758       try
759       {
760         updateFileContent( idpath,
761                            boost::bind(fileMissing, idpath),
762                            generateRandomId );
763       }
764       catch ( const Exception &e )
765       {
766         WAR << "Can't create anonymous id file" << endl;
767       }
768
769     }
770
771     void TargetImpl::createLastDistributionFlavorCache() const
772     {
773       // create the anonymous unique id
774       // this value is used for statistics
775       Pathname flavorpath( home() / "LastDistributionFlavor");
776
777       // is there a product
778       Product::constPtr p = baseProduct();
779       if ( ! p )
780       {
781           WAR << "No base product, I won't create flavor cache" << endl;
782           return;
783       }
784
785       string flavor = p->flavor();
786
787       try
788       {
789
790         updateFileContent( flavorpath,
791                            // only if flavor is not empty
792                            functor::Constant<bool>( ! flavor.empty() ),
793                            functor::Constant<string>(flavor) );
794       }
795       catch ( const Exception &e )
796       {
797         WAR << "Can't create flavor cache" << endl;
798         return;
799       }
800     }
801
802     ///////////////////////////////////////////////////////////////////
803     //
804     //  METHOD NAME : TargetImpl::~TargetImpl
805     //  METHOD TYPE : Dtor
806     //
807     TargetImpl::~TargetImpl()
808     {
809       _rpm.closeDatabase();
810       MIL << "Targets closed" << endl;
811     }
812
813     ///////////////////////////////////////////////////////////////////
814     //
815     // solv file handling
816     //
817     ///////////////////////////////////////////////////////////////////
818
819     Pathname TargetImpl::defaultSolvfilesPath() const
820     {
821       return Pathname::assertprefix( _root, ZConfig::instance().repoSolvfilesPath() / sat::Pool::instance().systemRepoAlias() );
822     }
823
824     void TargetImpl::clearCache()
825     {
826       Pathname base = solvfilesPath();
827       filesystem::recursive_rmdir( base );
828     }
829
830     bool TargetImpl::buildCache()
831     {
832       Pathname base = solvfilesPath();
833       Pathname rpmsolv       = base/"solv";
834       Pathname rpmsolvcookie = base/"cookie";
835
836       bool build_rpm_solv = true;
837       // lets see if the rpm solv cache exists
838
839       RepoStatus rpmstatus( RepoStatus(_root/"var/lib/rpm/Name") && RepoStatus(_root/"etc/products.d") );
840
841       bool solvexisted = PathInfo(rpmsolv).isExist();
842       if ( solvexisted )
843       {
844         // see the status of the cache
845         PathInfo cookie( rpmsolvcookie );
846         MIL << "Read cookie: " << cookie << endl;
847         if ( cookie.isExist() )
848         {
849           RepoStatus status = RepoStatus::fromCookieFile(rpmsolvcookie);
850           // now compare it with the rpm database
851           if ( status == rpmstatus )
852             build_rpm_solv = false;
853           MIL << "Read cookie: " << rpmsolvcookie << " says: "
854           << (build_rpm_solv ? "outdated" : "uptodate") << endl;
855         }
856       }
857
858       if ( build_rpm_solv )
859       {
860         // if the solvfile dir does not exist yet, we better create it
861         filesystem::assert_dir( base );
862
863         Pathname oldSolvFile( solvexisted ? rpmsolv : Pathname() ); // to speedup rpmdb2solv
864
865         filesystem::TmpFile tmpsolv( filesystem::TmpFile::makeSibling( rpmsolv ) );
866         if ( !tmpsolv )
867         {
868           // Can't create temporary solv file, usually due to insufficient permission
869           // (user query while @System solv needs refresh). If so, try switching
870           // to a location within zypps temp. space (will be cleaned at application end).
871
872           bool switchingToTmpSolvfile = false;
873           Exception ex("Failed to cache rpm database.");
874           ex.remember(str::form("Cannot create temporary file under %s.", base.c_str()));
875
876           if ( ! solvfilesPathIsTemp() )
877           {
878             base = getZYpp()->tmpPath() / sat::Pool::instance().systemRepoAlias();
879             rpmsolv       = base/"solv";
880             rpmsolvcookie = base/"cookie";
881
882             filesystem::assert_dir( base );
883             tmpsolv = filesystem::TmpFile::makeSibling( rpmsolv );
884
885             if ( tmpsolv )
886             {
887               WAR << "Using a temporary solv file at " << base << endl;
888               switchingToTmpSolvfile = true;
889               _tmpSolvfilesPath = base;
890             }
891             else
892             {
893               ex.remember(str::form("Cannot create temporary file under %s.", base.c_str()));
894             }
895           }
896
897           if ( ! switchingToTmpSolvfile )
898           {
899             ZYPP_THROW(ex);
900           }
901         }
902
903         // Take care we unlink the solvfile on exception
904         ManagedFile guard( base, filesystem::recursive_rmdir );
905
906         std::ostringstream cmd;
907         cmd << "rpmdb2solv";
908         if ( ! _root.empty() )
909           cmd << " -r '" << _root << "'";
910         cmd << " -X";   // autogenerate pattern/product/... from -package
911         cmd << " -A";   // autogenerate application pseudo packages
912         cmd << " -p '" << Pathname::assertprefix( _root, "/etc/products.d" ) << "'";
913
914         if ( ! oldSolvFile.empty() )
915           cmd << " '" << oldSolvFile << "'";
916
917         cmd << "  > '" << tmpsolv.path() << "'";
918
919         MIL << "Executing: " << cmd << endl;
920         ExternalProgram prog( cmd.str(), ExternalProgram::Stderr_To_Stdout );
921
922         cmd << endl;
923         for ( std::string output( prog.receiveLine() ); output.length(); output = prog.receiveLine() ) {
924           WAR << "  " << output;
925           cmd << "     " << output;
926         }
927
928         int ret = prog.close();
929         if ( ret != 0 )
930         {
931           Exception ex(str::form("Failed to cache rpm database (%d).", ret));
932           ex.remember( cmd.str() );
933           ZYPP_THROW(ex);
934         }
935
936         ret = filesystem::rename( tmpsolv, rpmsolv );
937         if ( ret != 0 )
938           ZYPP_THROW(Exception("Failed to move cache to final destination"));
939         // if this fails, don't bother throwing exceptions
940         filesystem::chmod( rpmsolv, 0644 );
941
942         rpmstatus.saveToCookieFile(rpmsolvcookie);
943
944         // We keep it.
945         guard.resetDispose();
946
947         // system-hook: Finally send notification to plugins
948         if ( root() == "/" )
949         {
950           PluginExecutor plugins;
951           plugins.load( ZConfig::instance().pluginsPath()/"system" );
952           if ( plugins )
953             plugins.send( PluginFrame( "PACKAGESETCHANGED" ) );
954         }
955       }
956       return build_rpm_solv;
957     }
958
959     void TargetImpl::reload()
960     {
961         load( false );
962     }
963
964     void TargetImpl::unload()
965     {
966       Repository system( sat::Pool::instance().findSystemRepo() );
967       if ( system )
968         system.eraseFromPool();
969     }
970
971     void TargetImpl::load( bool force )
972     {
973       bool newCache = buildCache();
974       MIL << "New cache built: " << (newCache?"true":"false") <<
975         ", force loading: " << (force?"true":"false") << endl;
976
977       // now add the repos to the pool
978       sat::Pool satpool( sat::Pool::instance() );
979       Pathname rpmsolv( solvfilesPath() / "solv" );
980       MIL << "adding " << rpmsolv << " to pool(" << satpool.systemRepoAlias() << ")" << endl;
981
982       // Providing an empty system repo, unload any old content
983       Repository system( sat::Pool::instance().findSystemRepo() );
984
985       if ( system && ! system.solvablesEmpty() )
986       {
987         if ( newCache || force )
988         {
989           system.eraseFromPool(); // invalidates system
990         }
991         else
992         {
993           return;     // nothing to do
994         }
995       }
996
997       if ( ! system )
998       {
999         system = satpool.systemRepo();
1000       }
1001
1002       try
1003       {
1004         MIL << "adding " << rpmsolv << " to system" << endl;
1005         system.addSolv( rpmsolv );
1006       }
1007       catch ( const Exception & exp )
1008       {
1009         ZYPP_CAUGHT( exp );
1010         MIL << "Try to handle exception by rebuilding the solv-file" << endl;
1011         clearCache();
1012         buildCache();
1013
1014         system.addSolv( rpmsolv );
1015       }
1016       sat::Pool::instance().rootDir( _root );
1017
1018       // (Re)Load the requested locales et al.
1019       // If the requested locales are empty, we leave the pool untouched
1020       // to avoid undoing changes the application applied. We expect this
1021       // to happen on a bare metal installation only. An already existing
1022       // target should be loaded before its settings are changed.
1023       {
1024         const LocaleSet & requestedLocales( _requestedLocalesFile.locales() );
1025         if ( ! requestedLocales.empty() )
1026         {
1027           satpool.setRequestedLocales( requestedLocales );
1028         }
1029       }
1030       {
1031         if ( ! PathInfo( _autoInstalledFile.file() ).isExist() )
1032         {
1033           // Initialize from history, if it does not exist
1034           Pathname historyFile( Pathname::assertprefix( _root, ZConfig::instance().historyLogFile() ) );
1035           if ( PathInfo( historyFile ).isExist() )
1036           {
1037             SolvIdentFile::Data onSystemByUser( getUserInstalledFromHistory( historyFile ) );
1038             SolvIdentFile::Data onSystemByAuto;
1039             for_( it, system.solvablesBegin(), system.solvablesEnd() )
1040             {
1041               IdString ident( (*it).ident() );
1042               if ( onSystemByUser.find( ident ) == onSystemByUser.end() )
1043                 onSystemByAuto.insert( ident );
1044             }
1045             _autoInstalledFile.setData( onSystemByAuto );
1046           }
1047           // on the fly removed any obsolete SoftLocks file
1048           filesystem::unlink( home() / "SoftLocks" );
1049         }
1050         // read from AutoInstalled file
1051         sat::StringQueue q;
1052         for ( const auto & idstr : _autoInstalledFile.data() )
1053           q.push( idstr.id() );
1054         satpool.setAutoInstalled( q );
1055       }
1056       if ( ZConfig::instance().apply_locks_file() )
1057       {
1058         const HardLocksFile::Data & hardLocks( _hardLocksFile.data() );
1059         if ( ! hardLocks.empty() )
1060         {
1061           ResPool::instance().setHardLockQueries( hardLocks );
1062         }
1063       }
1064
1065       // now that the target is loaded, we can cache the flavor
1066       createLastDistributionFlavorCache();
1067
1068       MIL << "Target loaded: " << system.solvablesSize() << " resolvables" << endl;
1069     }
1070
1071     ///////////////////////////////////////////////////////////////////
1072     //
1073     // COMMIT
1074     //
1075     ///////////////////////////////////////////////////////////////////
1076     ZYppCommitResult TargetImpl::commit( ResPool pool_r, const ZYppCommitPolicy & policy_rX )
1077     {
1078       // ----------------------------------------------------------------- //
1079       ZYppCommitPolicy policy_r( policy_rX );
1080       bool explicitDryRun = policy_r.dryRun();  // explicit dry run will trigger a fileconflict check, implicit (download-only) not.
1081
1082       // Fake outstanding YCP fix: Honour restriction to media 1
1083       // at installation, but install all remaining packages if post-boot.
1084       if ( policy_r.restrictToMedia() > 1 )
1085         policy_r.allMedia();
1086
1087       if ( policy_r.downloadMode() == DownloadDefault ) {
1088         if ( root() == "/" )
1089           policy_r.downloadMode(DownloadInHeaps);
1090         else
1091           policy_r.downloadMode(DownloadAsNeeded);
1092       }
1093       // DownloadOnly implies dry-run.
1094       else if ( policy_r.downloadMode() == DownloadOnly )
1095         policy_r.dryRun( true );
1096       // ----------------------------------------------------------------- //
1097
1098       MIL << "TargetImpl::commit(<pool>, " << policy_r << ")" << endl;
1099
1100       ///////////////////////////////////////////////////////////////////
1101       // Compute transaction:
1102       ///////////////////////////////////////////////////////////////////
1103       ZYppCommitResult result( root() );
1104       result.rTransaction() = pool_r.resolver().getTransaction();
1105       result.rTransaction().order();
1106       // steps: this is our todo-list
1107       ZYppCommitResult::TransactionStepList & steps( result.rTransactionStepList() );
1108       if ( policy_r.restrictToMedia() )
1109       {
1110         // Collect until the 1st package from an unwanted media occurs.
1111         // Further collection could violate install order.
1112         MIL << "Restrict to media number " << policy_r.restrictToMedia() << endl;
1113         for_( it, result.transaction().begin(), result.transaction().end() )
1114         {
1115           if ( makeResObject( *it )->mediaNr() > 1 )
1116             break;
1117           steps.push_back( *it );
1118         }
1119       }
1120       else
1121       {
1122         result.rTransactionStepList().insert( steps.end(), result.transaction().begin(), result.transaction().end() );
1123       }
1124       MIL << "Todo: " << result << endl;
1125
1126       ///////////////////////////////////////////////////////////////////
1127       // Prepare execution of commit plugins:
1128       ///////////////////////////////////////////////////////////////////
1129       PluginExecutor commitPlugins;
1130       if ( root() == "/" && ! policy_r.dryRun() )
1131       {
1132         commitPlugins.load( ZConfig::instance().pluginsPath()/"commit" );
1133       }
1134       if ( commitPlugins )
1135         commitPlugins.send( transactionPluginFrame( "COMMITBEGIN", steps ) );
1136
1137       ///////////////////////////////////////////////////////////////////
1138       // Write out a testcase if we're in dist upgrade mode.
1139       ///////////////////////////////////////////////////////////////////
1140       if ( pool_r.resolver().upgradeMode() || pool_r.resolver().upgradingRepos() )
1141       {
1142         if ( ! policy_r.dryRun() )
1143         {
1144           writeUpgradeTestcase();
1145         }
1146         else
1147         {
1148           DBG << "dryRun: Not writing upgrade testcase." << endl;
1149         }
1150       }
1151
1152      ///////////////////////////////////////////////////////////////////
1153       // Store non-package data:
1154       ///////////////////////////////////////////////////////////////////
1155       if ( ! policy_r.dryRun() )
1156       {
1157         filesystem::assert_dir( home() );
1158         // requested locales
1159         _requestedLocalesFile.setLocales( pool_r.getRequestedLocales() );
1160         // autoinstalled
1161         {
1162           SolvIdentFile::Data newdata;
1163           for ( sat::Queue::value_type id : result.rTransaction().autoInstalled() )
1164             newdata.insert( IdString(id) );
1165           _autoInstalledFile.setData( newdata );
1166         }
1167         // hard locks
1168         if ( ZConfig::instance().apply_locks_file() )
1169         {
1170           HardLocksFile::Data newdata;
1171           pool_r.getHardLockQueries( newdata );
1172           _hardLocksFile.setData( newdata );
1173         }
1174       }
1175       else
1176       {
1177         DBG << "dryRun: Not stroring non-package data." << endl;
1178       }
1179
1180       ///////////////////////////////////////////////////////////////////
1181       // First collect and display all messages
1182       // associated with patches to be installed.
1183       ///////////////////////////////////////////////////////////////////
1184       if ( ! policy_r.dryRun() )
1185       {
1186         for_( it, steps.begin(), steps.end() )
1187         {
1188           if ( ! it->satSolvable().isKind<Patch>() )
1189             continue;
1190
1191           PoolItem pi( *it );
1192           if ( ! pi.status().isToBeInstalled() )
1193             continue;
1194
1195           Patch::constPtr patch( asKind<Patch>(pi.resolvable()) );
1196           if ( ! patch ||patch->message().empty()  )
1197             continue;
1198
1199           MIL << "Show message for " << patch << endl;
1200           callback::SendReport<target::PatchMessageReport> report;
1201           if ( ! report->show( patch ) )
1202           {
1203             WAR << "commit aborted by the user" << endl;
1204             ZYPP_THROW( TargetAbortedException( N_("Installation has been aborted as directed.") ) );
1205           }
1206         }
1207       }
1208       else
1209       {
1210         DBG << "dryRun: Not checking patch messages." << endl;
1211       }
1212
1213       ///////////////////////////////////////////////////////////////////
1214       // Remove/install packages.
1215       ///////////////////////////////////////////////////////////////////
1216       DBG << "commit log file is set to: " << HistoryLog::fname() << endl;
1217       if ( ! policy_r.dryRun() || policy_r.downloadMode() == DownloadOnly )
1218       {
1219         // Prepare the package cache. Pass all items requiring download.
1220         CommitPackageCache packageCache( root() );
1221         packageCache.setCommitList( steps.begin(), steps.end() );
1222
1223         bool miss = false;
1224         if ( policy_r.downloadMode() != DownloadAsNeeded )
1225         {
1226           // Preload the cache. Until now this means pre-loading all packages.
1227           // Once DownloadInHeaps is fully implemented, this will change and
1228           // we may actually have more than one heap.
1229           for_( it, steps.begin(), steps.end() )
1230           {
1231             switch ( it->stepType() )
1232             {
1233               case sat::Transaction::TRANSACTION_INSTALL:
1234               case sat::Transaction::TRANSACTION_MULTIINSTALL:
1235                 // proceed: only install actionas may require download.
1236                 break;
1237
1238               default:
1239                 // next: no download for or non-packages and delete actions.
1240                 continue;
1241                 break;
1242             }
1243
1244             PoolItem pi( *it );
1245             if ( pi->isKind<Package>() || pi->isKind<SrcPackage>() )
1246             {
1247               ManagedFile localfile;
1248               try
1249               {
1250                 localfile = packageCache.get( pi );
1251                 localfile.resetDispose(); // keep the package file in the cache
1252               }
1253               catch ( const AbortRequestException & exp )
1254               {
1255                 it->stepStage( sat::Transaction::STEP_ERROR );
1256                 miss = true;
1257                 WAR << "commit cache preload aborted by the user" << endl;
1258                 ZYPP_THROW( TargetAbortedException( N_("Installation has been aborted as directed.") ) );
1259                 break;
1260               }
1261               catch ( const SkipRequestException & exp )
1262               {
1263                 ZYPP_CAUGHT( exp );
1264                 it->stepStage( sat::Transaction::STEP_ERROR );
1265                 miss = true;
1266                 WAR << "Skipping cache preload package " << pi->asKind<Package>() << " in commit" << endl;
1267                 continue;
1268               }
1269               catch ( const Exception & exp )
1270               {
1271                 // bnc #395704: missing catch causes abort.
1272                 // TODO see if packageCache fails to handle errors correctly.
1273                 ZYPP_CAUGHT( exp );
1274                 it->stepStage( sat::Transaction::STEP_ERROR );
1275                 miss = true;
1276                 INT << "Unexpected Error: Skipping cache preload package " << pi->asKind<Package>() << " in commit" << endl;
1277                 continue;
1278               }
1279             }
1280           }
1281           packageCache.preloaded( true ); // try to avoid duplicate infoInCache CBs in commit
1282         }
1283
1284         if ( miss )
1285         {
1286           ERR << "Some packages could not be provided. Aborting commit."<< endl;
1287         }
1288         else
1289         {
1290           if ( ! policy_r.dryRun() )
1291           {
1292             // if cache is preloaded, check for file conflicts
1293             commitFindFileConflicts( policy_r, result );
1294             commit( policy_r, packageCache, result );
1295           }
1296           else
1297           {
1298             DBG << "dryRun/downloadOnly: Not installing/deleting anything." << endl;
1299             if ( explicitDryRun ) {
1300               // if cache is preloaded, check for file conflicts
1301               commitFindFileConflicts( policy_r, result );
1302             }
1303           }
1304         }
1305       }
1306       else
1307       {
1308         DBG << "dryRun: Not downloading/installing/deleting anything." << endl;
1309         if ( explicitDryRun ) {
1310           // if cache is preloaded, check for file conflicts
1311           commitFindFileConflicts( policy_r, result );
1312         }
1313       }
1314
1315       ///////////////////////////////////////////////////////////////////
1316       // Send result to commit plugins:
1317       ///////////////////////////////////////////////////////////////////
1318       if ( commitPlugins )
1319         commitPlugins.send( transactionPluginFrame( "COMMITEND", steps ) );
1320
1321       ///////////////////////////////////////////////////////////////////
1322       // Try to rebuild solv file while rpm database is still in cache
1323       ///////////////////////////////////////////////////////////////////
1324       if ( ! policy_r.dryRun() )
1325       {
1326         buildCache();
1327       }
1328
1329       MIL << "TargetImpl::commit(<pool>, " << policy_r << ") returns: " << result << endl;
1330       return result;
1331     }
1332
1333     ///////////////////////////////////////////////////////////////////
1334     //
1335     // COMMIT internal
1336     //
1337     ///////////////////////////////////////////////////////////////////
1338     namespace
1339     {
1340       struct NotifyAttemptToModify
1341       {
1342         NotifyAttemptToModify( ZYppCommitResult & result_r ) : _result( result_r ) {}
1343
1344         void operator()()
1345         { if ( _guard ) { _result.attemptToModify( true ); _guard = false; } }
1346
1347         TrueBool           _guard;
1348         ZYppCommitResult & _result;
1349       };
1350     } // namespace
1351
1352     void TargetImpl::commit( const ZYppCommitPolicy & policy_r,
1353                              CommitPackageCache & packageCache_r,
1354                              ZYppCommitResult & result_r )
1355     {
1356       // steps: this is our todo-list
1357       ZYppCommitResult::TransactionStepList & steps( result_r.rTransactionStepList() );
1358       MIL << "TargetImpl::commit(<list>" << policy_r << ")" << steps.size() << endl;
1359
1360       // Send notification once upon 1st call to rpm
1361       NotifyAttemptToModify attemptToModify( result_r );
1362
1363       bool abort = false;
1364
1365       RpmPostTransCollector postTransCollector( _root );
1366       std::vector<sat::Solvable> successfullyInstalledPackages;
1367       TargetImpl::PoolItemList remaining;
1368
1369       for_( step, steps.begin(), steps.end() )
1370       {
1371         PoolItem citem( *step );
1372         if ( step->stepType() == sat::Transaction::TRANSACTION_IGNORE )
1373         {
1374           if ( citem->isKind<Package>() )
1375           {
1376             // for packages this means being obsoleted (by rpm)
1377             // thius no additional action is needed.
1378             step->stepStage( sat::Transaction::STEP_DONE );
1379             continue;
1380           }
1381         }
1382
1383         if ( citem->isKind<Package>() )
1384         {
1385           Package::constPtr p = citem->asKind<Package>();
1386           if ( citem.status().isToBeInstalled() )
1387           {
1388             ManagedFile localfile;
1389             try
1390             {
1391               localfile = packageCache_r.get( citem );
1392             }
1393             catch ( const AbortRequestException &e )
1394             {
1395               WAR << "commit aborted by the user" << endl;
1396               abort = true;
1397               step->stepStage( sat::Transaction::STEP_ERROR );
1398               break;
1399             }
1400             catch ( const SkipRequestException &e )
1401             {
1402               ZYPP_CAUGHT( e );
1403               WAR << "Skipping package " << p << " in commit" << endl;
1404               step->stepStage( sat::Transaction::STEP_ERROR );
1405               continue;
1406             }
1407             catch ( const Exception &e )
1408             {
1409               // bnc #395704: missing catch causes abort.
1410               // TODO see if packageCache fails to handle errors correctly.
1411               ZYPP_CAUGHT( e );
1412               INT << "Unexpected Error: Skipping package " << p << " in commit" << endl;
1413               step->stepStage( sat::Transaction::STEP_ERROR );
1414               continue;
1415             }
1416
1417 #warning Exception handling
1418             // create a installation progress report proxy
1419             RpmInstallPackageReceiver progress( citem.resolvable() );
1420             progress.connect(); // disconnected on destruction.
1421
1422             bool success = false;
1423             rpm::RpmInstFlags flags( policy_r.rpmInstFlags() & rpm::RPMINST_JUSTDB );
1424             // Why force and nodeps?
1425             //
1426             // Because zypp builds the transaction and the resolver asserts that
1427             // everything is fine.
1428             // We use rpm just to unpack and register the package in the database.
1429             // We do this step by step, so rpm is not aware of the bigger context.
1430             // So we turn off rpms internal checks, because we do it inside zypp.
1431             flags |= rpm::RPMINST_NODEPS;
1432             flags |= rpm::RPMINST_FORCE;
1433             //
1434             if (p->multiversionInstall())  flags |= rpm::RPMINST_NOUPGRADE;
1435             if (policy_r.dryRun())         flags |= rpm::RPMINST_TEST;
1436             if (policy_r.rpmExcludeDocs()) flags |= rpm::RPMINST_EXCLUDEDOCS;
1437             if (policy_r.rpmNoSignature()) flags |= rpm::RPMINST_NOSIGNATURE;
1438
1439             attemptToModify();
1440             try
1441             {
1442               progress.tryLevel( target::rpm::InstallResolvableReport::RPM_NODEPS_FORCE );
1443               if ( postTransCollector.collectScriptFromPackage( localfile ) )
1444                 flags |= rpm::RPMINST_NOPOSTTRANS;
1445               rpm().installPackage( localfile, flags );
1446               HistoryLog().install(citem);
1447
1448               if ( progress.aborted() )
1449               {
1450                 WAR << "commit aborted by the user" << endl;
1451                 localfile.resetDispose(); // keep the package file in the cache
1452                 abort = true;
1453                 step->stepStage( sat::Transaction::STEP_ERROR );
1454                 break;
1455               }
1456               else
1457               {
1458                 success = true;
1459                 step->stepStage( sat::Transaction::STEP_DONE );
1460               }
1461             }
1462             catch ( Exception & excpt_r )
1463             {
1464               ZYPP_CAUGHT(excpt_r);
1465               localfile.resetDispose(); // keep the package file in the cache
1466
1467               if ( policy_r.dryRun() )
1468               {
1469                 WAR << "dry run failed" << endl;
1470                 step->stepStage( sat::Transaction::STEP_ERROR );
1471                 break;
1472               }
1473               // else
1474               if ( progress.aborted() )
1475               {
1476                 WAR << "commit aborted by the user" << endl;
1477                 abort = true;
1478               }
1479               else
1480               {
1481                 WAR << "Install failed" << endl;
1482               }
1483               step->stepStage( sat::Transaction::STEP_ERROR );
1484               break; // stop
1485             }
1486
1487             if ( success && !policy_r.dryRun() )
1488             {
1489               citem.status().resetTransact( ResStatus::USER );
1490               successfullyInstalledPackages.push_back( citem.satSolvable() );
1491               step->stepStage( sat::Transaction::STEP_DONE );
1492             }
1493           }
1494           else
1495           {
1496             RpmRemovePackageReceiver progress( citem.resolvable() );
1497             progress.connect(); // disconnected on destruction.
1498
1499             bool success = false;
1500             rpm::RpmInstFlags flags( policy_r.rpmInstFlags() & rpm::RPMINST_JUSTDB );
1501             flags |= rpm::RPMINST_NODEPS;
1502             if (policy_r.dryRun()) flags |= rpm::RPMINST_TEST;
1503
1504             attemptToModify();
1505             try
1506             {
1507               rpm().removePackage( p, flags );
1508               HistoryLog().remove(citem);
1509
1510               if ( progress.aborted() )
1511               {
1512                 WAR << "commit aborted by the user" << endl;
1513                 abort = true;
1514                 step->stepStage( sat::Transaction::STEP_ERROR );
1515                 break;
1516               }
1517               else
1518               {
1519                 success = true;
1520                 step->stepStage( sat::Transaction::STEP_DONE );
1521               }
1522             }
1523             catch (Exception & excpt_r)
1524             {
1525               ZYPP_CAUGHT( excpt_r );
1526               if ( progress.aborted() )
1527               {
1528                 WAR << "commit aborted by the user" << endl;
1529                 abort = true;
1530                 step->stepStage( sat::Transaction::STEP_ERROR );
1531                 break;
1532               }
1533               // else
1534               WAR << "removal of " << p << " failed";
1535               step->stepStage( sat::Transaction::STEP_ERROR );
1536             }
1537             if ( success && !policy_r.dryRun() )
1538             {
1539               citem.status().resetTransact( ResStatus::USER );
1540               step->stepStage( sat::Transaction::STEP_DONE );
1541             }
1542           }
1543         }
1544         else if ( ! policy_r.dryRun() ) // other resolvables (non-Package)
1545         {
1546           // Status is changed as the buddy package buddy
1547           // gets installed/deleted. Handle non-buddies only.
1548           if ( ! citem.buddy() )
1549           {
1550             if ( citem->isKind<Product>() )
1551             {
1552               Product::constPtr p = citem->asKind<Product>();
1553               if ( citem.status().isToBeInstalled() )
1554               {
1555                 ERR << "Can't install orphan product without release-package! " << citem << endl;
1556               }
1557               else
1558               {
1559                 // Deleting the corresponding product entry is all we con do.
1560                 // So the product will no longer be visible as installed.
1561                 std::string referenceFilename( p->referenceFilename() );
1562                 if ( referenceFilename.empty() )
1563                 {
1564                   ERR << "Can't remove orphan product without 'referenceFilename'! " << citem << endl;
1565                 }
1566                 else
1567                 {
1568                   PathInfo referenceFile( Pathname::assertprefix( _root, Pathname( "/etc/products.d" ) ) / referenceFilename );
1569                   if ( ! referenceFile.isFile() || filesystem::unlink( referenceFile.path() ) != 0 )
1570                   {
1571                     ERR << "Delete orphan product failed: " << referenceFile << endl;
1572                   }
1573                 }
1574               }
1575             }
1576             else if ( citem->isKind<SrcPackage>() && citem.status().isToBeInstalled() )
1577             {
1578               // SrcPackage is install-only
1579               SrcPackage::constPtr p = citem->asKind<SrcPackage>();
1580               installSrcPackage( p );
1581             }
1582
1583             citem.status().resetTransact( ResStatus::USER );
1584             step->stepStage( sat::Transaction::STEP_DONE );
1585           }
1586
1587         }  // other resolvables
1588
1589       } // for
1590
1591       // process all remembered posttrans scripts.
1592       if ( !abort )
1593         postTransCollector.executeScripts();
1594       else
1595         postTransCollector.discardScripts();
1596
1597       // Check presence of update scripts/messages. If aborting,
1598       // at least log omitted scripts.
1599       if ( ! successfullyInstalledPackages.empty() )
1600       {
1601         if ( ! RunUpdateScripts( _root, ZConfig::instance().update_scriptsPath(),
1602                                  successfullyInstalledPackages, abort ) )
1603         {
1604           WAR << "Commit aborted by the user" << endl;
1605           abort = true;
1606         }
1607         // send messages after scripts in case some script generates output,
1608         // that should be kept in t %ghost message file.
1609         RunUpdateMessages( _root, ZConfig::instance().update_messagesPath(),
1610                            successfullyInstalledPackages,
1611                            result_r );
1612       }
1613
1614       if ( abort )
1615       {
1616         ZYPP_THROW( TargetAbortedException( N_("Installation has been aborted as directed.") ) );
1617       }
1618     }
1619
1620     ///////////////////////////////////////////////////////////////////
1621
1622     rpm::RpmDb & TargetImpl::rpm()
1623     {
1624       return _rpm;
1625     }
1626
1627     bool TargetImpl::providesFile (const std::string & path_str, const std::string & name_str) const
1628     {
1629       return _rpm.hasFile(path_str, name_str);
1630     }
1631
1632
1633     Date TargetImpl::timestamp() const
1634     {
1635       return _rpm.timestamp();
1636     }
1637
1638     ///////////////////////////////////////////////////////////////////
1639     namespace
1640     {
1641       parser::ProductFileData baseproductdata( const Pathname & root_r )
1642       {
1643         parser::ProductFileData ret;
1644         PathInfo baseproduct( Pathname::assertprefix( root_r, "/etc/products.d/baseproduct" ) );
1645
1646         if ( baseproduct.isFile() )
1647         {
1648           try
1649           {
1650             ret = parser::ProductFileReader::scanFile( baseproduct.path() );
1651           }
1652           catch ( const Exception & excpt )
1653           {
1654             ZYPP_CAUGHT( excpt );
1655           }
1656         }
1657         else if ( PathInfo( Pathname::assertprefix( root_r, "/etc/products.d" ) ).isDir() )
1658         {
1659           ERR << "baseproduct symlink is dangling or missing: " << baseproduct << endl;
1660         }
1661         return ret;
1662       }
1663
1664       inline Pathname staticGuessRoot( const Pathname & root_r )
1665       {
1666         if ( root_r.empty() )
1667         {
1668           // empty root: use existing Target or assume "/"
1669           Pathname ret ( ZConfig::instance().systemRoot() );
1670           if ( ret.empty() )
1671             return Pathname("/");
1672           return ret;
1673         }
1674         return root_r;
1675       }
1676
1677       inline std::string firstNonEmptyLineIn( const Pathname & file_r )
1678       {
1679         std::ifstream idfile( file_r.c_str() );
1680         for( iostr::EachLine in( idfile ); in; in.next() )
1681         {
1682           std::string line( str::trim( *in ) );
1683           if ( ! line.empty() )
1684             return line;
1685         }
1686         return std::string();
1687       }
1688     } // namescpace
1689     ///////////////////////////////////////////////////////////////////
1690
1691     Product::constPtr TargetImpl::baseProduct() const
1692     {
1693       ResPool pool(ResPool::instance());
1694       for_( it, pool.byKindBegin<Product>(), pool.byKindEnd<Product>() )
1695       {
1696         Product::constPtr p = (*it)->asKind<Product>();
1697         if ( p->isTargetDistribution() )
1698           return p;
1699       }
1700       return nullptr;
1701     }
1702
1703     LocaleSet TargetImpl::requestedLocales( const Pathname & root_r )
1704     {
1705       const Pathname needroot( staticGuessRoot(root_r) );
1706       const Target_constPtr target( getZYpp()->getTarget() );
1707       if ( target && target->root() == needroot )
1708         return target->requestedLocales();
1709       return RequestedLocalesFile( home(needroot) / "RequestedLocales" ).locales();
1710     }
1711
1712     std::string TargetImpl::targetDistribution() const
1713     { return baseproductdata( _root ).registerTarget(); }
1714     // static version:
1715     std::string TargetImpl::targetDistribution( const Pathname & root_r )
1716     { return baseproductdata( staticGuessRoot(root_r) ).registerTarget(); }
1717
1718     std::string TargetImpl::targetDistributionRelease() const
1719     { return baseproductdata( _root ).registerRelease(); }
1720     // static version:
1721     std::string TargetImpl::targetDistributionRelease( const Pathname & root_r )
1722     { return baseproductdata( staticGuessRoot(root_r) ).registerRelease();}
1723
1724     std::string TargetImpl::targetDistributionFlavor() const
1725     { return baseproductdata( _root ).registerFlavor(); }
1726     // static version:
1727     std::string TargetImpl::targetDistributionFlavor( const Pathname & root_r )
1728     { return baseproductdata( staticGuessRoot(root_r) ).registerFlavor();}
1729
1730     Target::DistributionLabel TargetImpl::distributionLabel() const
1731     {
1732       Target::DistributionLabel ret;
1733       parser::ProductFileData pdata( baseproductdata( _root ) );
1734       ret.shortName = pdata.shortName();
1735       ret.summary = pdata.summary();
1736       return ret;
1737     }
1738     // static version:
1739     Target::DistributionLabel TargetImpl::distributionLabel( const Pathname & root_r )
1740     {
1741       Target::DistributionLabel ret;
1742       parser::ProductFileData pdata( baseproductdata( staticGuessRoot(root_r) ) );
1743       ret.shortName = pdata.shortName();
1744       ret.summary = pdata.summary();
1745       return ret;
1746     }
1747
1748     std::string TargetImpl::distributionVersion() const
1749     {
1750       if ( _distributionVersion.empty() )
1751       {
1752         _distributionVersion = TargetImpl::distributionVersion(root());
1753         if ( !_distributionVersion.empty() )
1754           MIL << "Remember distributionVersion = '" << _distributionVersion << "'" << endl;
1755       }
1756       return _distributionVersion;
1757     }
1758     // static version
1759     std::string TargetImpl::distributionVersion( const Pathname & root_r )
1760     {
1761       std::string distributionVersion = baseproductdata( staticGuessRoot(root_r) ).edition().version();
1762       if ( distributionVersion.empty() )
1763       {
1764         // ...But the baseproduct method is not expected to work on RedHat derivatives.
1765         // On RHEL, Fedora and others the "product version" is determined by the first package
1766         // providing 'redhat-release'. This value is not hardcoded in YUM and can be configured
1767         // with the $distroverpkg variable.
1768         scoped_ptr<rpm::RpmDb> tmprpmdb;
1769         if ( ZConfig::instance().systemRoot() == Pathname() )
1770         {
1771           try
1772           {
1773               tmprpmdb.reset( new rpm::RpmDb );
1774               tmprpmdb->initDatabase( /*default ctor uses / but no additional keyring exports */ );
1775           }
1776           catch( ... )
1777           {
1778             return "";
1779           }
1780         }
1781         rpm::librpmDb::db_const_iterator it;
1782         if ( it.findByProvides( ZConfig::instance().distroverpkg() ) )
1783           distributionVersion = it->tag_version();
1784       }
1785       return distributionVersion;
1786     }
1787
1788
1789     std::string TargetImpl::distributionFlavor() const
1790     {
1791       return firstNonEmptyLineIn( home() / "LastDistributionFlavor" );
1792     }
1793     // static version:
1794     std::string TargetImpl::distributionFlavor( const Pathname & root_r )
1795     {
1796       return firstNonEmptyLineIn( staticGuessRoot(root_r) / "/var/lib/zypp/LastDistributionFlavor" );
1797     }
1798
1799     ///////////////////////////////////////////////////////////////////
1800
1801     std::string TargetImpl::anonymousUniqueId() const
1802     {
1803       return firstNonEmptyLineIn( home() / "AnonymousUniqueId" );
1804     }
1805     // static version:
1806     std::string TargetImpl::anonymousUniqueId( const Pathname & root_r )
1807     {
1808       return firstNonEmptyLineIn( staticGuessRoot(root_r) / "/var/lib/zypp/AnonymousUniqueId" );
1809     }
1810
1811     ///////////////////////////////////////////////////////////////////
1812
1813     void TargetImpl::installSrcPackage( const SrcPackage_constPtr & srcPackage_r )
1814     {
1815       // provide on local disk
1816       ManagedFile localfile = provideSrcPackage(srcPackage_r);
1817       // install it
1818       rpm().installPackage ( localfile );
1819     }
1820
1821     ManagedFile TargetImpl::provideSrcPackage( const SrcPackage_constPtr & srcPackage_r )
1822     {
1823       // provide on local disk
1824       repo::RepoMediaAccess access_r;
1825       repo::SrcPackageProvider prov( access_r );
1826       return prov.provideSrcPackage( srcPackage_r );
1827     }
1828     ////////////////////////////////////////////////////////////////
1829   } // namespace target
1830   ///////////////////////////////////////////////////////////////////
1831   /////////////////////////////////////////////////////////////////
1832 } // namespace zypp
1833 ///////////////////////////////////////////////////////////////////