2015-10-21 16:50:26 +03:00
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
*
* Copyright ( C ) 2015 Red Hat , Inc .
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation ; either version 2 of the licence or ( at
* your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library ; if not , write to the
* Free Software Foundation , Inc . , 59 Temple Place , Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
# include "config.h"
# include "rpmostree-builtins.h"
# include "rpmostree-libbuiltin.h"
# include "rpmostree-rpm-util.h"
# include "rpmostree-dbus-helpers.h"
# include <libglnx.h>
static char * opt_osname ;
static gboolean opt_reboot ;
static gboolean opt_preview ;
static GOptionEntry option_entries [ ] = {
{ " os " , 0 , 0 , G_OPTION_ARG_STRING , & opt_osname , " Operate on provided OSNAME " , " OSNAME " } ,
{ " reboot " , ' r ' , 0 , G_OPTION_ARG_NONE , & opt_reboot , " Initiate a reboot after upgrade is prepared " , NULL } ,
/* XXX As much as I dislike the inconsistency with "rpm-ostree upgrade",
* calling this option - - check - diff doesn ' t really make sense here .
* A - - preview option would work for both commands if we wanted to
* deprecate - - check - diff . */
{ " preview " , 0 , 0 , G_OPTION_ARG_NONE , & opt_preview , " Just preview package differences " , NULL } ,
{ NULL }
} ;
int
rpmostree_builtin_deploy ( int argc ,
char * * argv ,
2017-03-15 21:52:43 +03:00
RpmOstreeCommandInvocation * invocation ,
2015-10-21 16:50:26 +03:00
GCancellable * cancellable ,
GError * * error )
{
2016-12-05 23:20:23 +03:00
g_autoptr ( GOptionContext ) context = NULL ;
2015-10-21 16:50:26 +03:00
glnx_unref_object RPMOSTreeOS * os_proxy = NULL ;
glnx_unref_object RPMOSTreeSysroot * sysroot_proxy = NULL ;
2017-09-09 01:03:09 +03:00
g_autoptr ( GVariant ) new_default_deployment = NULL ;
2015-10-21 16:50:26 +03:00
g_autofree char * transaction_address = NULL ;
const char * const packages [ ] = { NULL } ;
const char * revision ;
2017-03-23 21:50:18 +03:00
_cleanup_peer_ GPid peer_pid = 0 ;
2017-03-31 16:07:29 +03:00
const char * const * install_pkgs = NULL ;
const char * const * uninstall_pkgs = NULL ;
2015-10-21 16:50:26 +03:00
2017-08-12 01:59:47 +03:00
context = g_option_context_new ( " REVISION " ) ;
2015-10-21 16:50:26 +03:00
if ( ! rpmostree_option_context_parse ( context ,
option_entries ,
& argc , & argv ,
2017-03-15 21:52:43 +03:00
invocation ,
2015-10-21 16:50:26 +03:00
cancellable ,
2017-03-31 16:07:29 +03:00
& install_pkgs ,
& uninstall_pkgs ,
2015-10-21 16:50:26 +03:00
& sysroot_proxy ,
2017-03-23 21:50:18 +03:00
& peer_pid ,
2015-10-21 16:50:26 +03:00
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2015-10-21 16:50:26 +03:00
if ( argc < 2 )
{
rpmostree_usage_error ( context , " REVISION must be specified " , error ) ;
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2015-10-21 16:50:26 +03:00
}
2017-03-31 16:07:29 +03:00
if ( opt_preview & & ( install_pkgs ! = NULL | | uninstall_pkgs ! = NULL ) )
{
g_set_error ( error , G_IO_ERROR , G_IO_ERROR_INVALID_ARGUMENT ,
" Cannot specify both --preview and --install/--uninstall " ) ;
return EXIT_FAILURE ;
}
2015-10-21 16:50:26 +03:00
revision = argv [ 1 ] ;
if ( ! rpmostree_load_os_proxy ( sysroot_proxy , opt_osname ,
cancellable , & os_proxy , error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2015-10-21 16:50:26 +03:00
if ( opt_preview )
{
if ( ! rpmostree_os_call_download_deploy_rpm_diff_sync ( os_proxy ,
revision ,
packages ,
& transaction_address ,
cancellable ,
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2015-10-21 16:50:26 +03:00
}
else
{
2017-09-09 01:03:09 +03:00
rpmostree_monitor_default_deployment_change ( os_proxy , & new_default_deployment ) ;
2017-03-31 16:07:29 +03:00
g_autoptr ( GVariant ) options =
rpmostree_get_options_variant ( opt_reboot ,
TRUE , /* allow-downgrade */
FALSE , /* skip-purge */
FALSE , /* no-pull-base */
2017-06-05 19:37:56 +03:00
FALSE , /* dry-run */
FALSE ) ; /* no-overrides */
2017-03-31 16:07:29 +03:00
2015-10-21 16:50:26 +03:00
2017-09-09 01:03:09 +03:00
/* Use newer D-Bus API only if we have to so we maintain coverage. */
2017-03-31 16:07:29 +03:00
if ( install_pkgs | | uninstall_pkgs )
{
if ( ! rpmostree_update_deployment ( os_proxy ,
NULL , /* refspec */
revision ,
install_pkgs ,
uninstall_pkgs ,
2017-06-05 19:37:56 +03:00
NULL , /* override replace */
NULL , /* override remove */
NULL , /* override reset */
2017-03-31 16:07:29 +03:00
options ,
& transaction_address ,
cancellable ,
error ) )
return EXIT_FAILURE ;
}
else
{
if ( ! rpmostree_os_call_deploy_sync ( os_proxy ,
revision ,
options ,
NULL ,
& transaction_address ,
NULL ,
cancellable ,
error ) )
return EXIT_FAILURE ;
}
2015-10-21 16:50:26 +03:00
}
if ( ! rpmostree_transaction_get_response_sync ( sysroot_proxy ,
transaction_address ,
cancellable ,
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2015-10-21 16:50:26 +03:00
if ( opt_preview )
{
g_autoptr ( GVariant ) result = NULL ;
g_autoptr ( GVariant ) details = NULL ;
if ( ! rpmostree_os_call_get_cached_deploy_rpm_diff_sync ( os_proxy ,
revision ,
packages ,
& result ,
& details ,
cancellable ,
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2015-10-21 16:50:26 +03:00
2015-11-03 00:54:00 +03:00
if ( g_variant_n_children ( result ) = = 0 )
2017-03-23 21:50:18 +03:00
return RPM_OSTREE_EXIT_UNCHANGED ;
2015-11-03 00:54:00 +03:00
2015-10-21 16:50:26 +03:00
rpmostree_print_package_diffs ( result ) ;
}
2015-11-03 00:54:00 +03:00
else if ( ! opt_reboot )
2015-10-21 16:50:26 +03:00
{
2017-09-09 01:03:09 +03:00
if ( new_default_deployment = = NULL )
2017-03-23 21:50:18 +03:00
return RPM_OSTREE_EXIT_UNCHANGED ;
2015-11-03 00:54:00 +03:00
2017-09-09 01:03:09 +03:00
/* do diff without dbus: https://github.com/projectatomic/rpm-ostree/pull/116 */
const char * sysroot_path = rpmostree_sysroot_get_path ( sysroot_proxy ) ;
2015-10-21 16:50:26 +03:00
if ( ! rpmostree_print_treepkg_diff_from_sysroot_path ( sysroot_path ,
cancellable ,
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2015-10-21 16:50:26 +03:00
g_print ( " Run \" systemctl reboot \" to start a reboot \n " ) ;
}
2017-03-23 21:50:18 +03:00
return EXIT_SUCCESS ;
2015-10-21 16:50:26 +03:00
}