2014-03-29 03:48:06 +04:00
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
*
* Copyright ( C ) 2014 Colin Walters < walters @ verbum . org >
*
* 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 <string.h>
# include <glib-unix.h>
# include "rpmostree-builtins.h"
2015-04-19 16:36:53 +03:00
# include "rpmostree-libbuiltin.h"
2015-06-13 03:19:16 +03:00
# include "rpmostree-dbus-helpers.h"
2014-03-29 03:48:06 +04:00
2015-06-13 03:19:16 +03:00
# include <libglnx.h>
2014-03-29 03:48:06 +04:00
static gboolean opt_reboot ;
static GOptionEntry option_entries [ ] = {
{ " reboot " , ' r ' , 0 , G_OPTION_ARG_NONE , & opt_reboot , " Initiate a reboot after rollback is prepared " , NULL } ,
{ NULL }
} ;
2015-10-07 09:46:30 +03:00
static GVariant *
get_args_variant ( void )
{
GVariantDict dict ;
g_variant_dict_init ( & dict , NULL ) ;
g_variant_dict_insert ( & dict , " reboot " , " b " , opt_reboot ) ;
return g_variant_dict_end ( & dict ) ;
}
2015-11-02 23:43:58 +03:00
int
2014-03-29 03:48:06 +04:00
rpmostree_builtin_rollback ( int argc ,
char * * argv ,
2017-03-15 21:52:43 +03:00
RpmOstreeCommandInvocation * invocation ,
2014-03-29 03:48:06 +04:00
GCancellable * cancellable ,
GError * * error )
{
2017-08-12 01:59:47 +03:00
GOptionContext * context = g_option_context_new ( " " ) ;
2015-06-13 03:19:16 +03:00
glnx_unref_object RPMOSTreeOS * os_proxy = NULL ;
glnx_unref_object RPMOSTreeSysroot * sysroot_proxy = NULL ;
2015-08-17 20:42:03 +03:00
g_autofree char * transaction_address = NULL ;
2017-03-23 21:50:18 +03:00
_cleanup_peer_ GPid peer_pid = 0 ;
2015-06-13 03:19:16 +03:00
2015-08-05 19:39:07 +03:00
if ( ! rpmostree_option_context_parse ( context ,
option_entries ,
& argc , & argv ,
2017-03-15 21:52:43 +03:00
invocation ,
2015-08-05 19:39:07 +03:00
cancellable ,
2017-03-31 16:07:29 +03:00
NULL , NULL ,
2015-08-05 19:39:07 +03:00
& sysroot_proxy ,
2017-03-23 21:50:18 +03:00
& peer_pid ,
2015-08-05 19:39:07 +03:00
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2014-03-29 03:48:06 +04:00
2015-08-05 04:09:54 +03:00
if ( ! rpmostree_load_os_proxy ( sysroot_proxy , NULL ,
2015-06-13 03:19:16 +03:00
cancellable , & os_proxy , error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2014-03-29 03:48:06 +04:00
2015-06-13 03:19:16 +03:00
if ( ! rpmostree_os_call_rollback_sync ( os_proxy ,
2015-10-07 09:46:30 +03:00
get_args_variant ( ) ,
2015-08-17 20:42:03 +03:00
& transaction_address ,
2015-06-13 03:19:16 +03:00
cancellable ,
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2014-03-29 03:48:06 +04:00
2015-08-06 00:45:27 +03:00
if ( ! rpmostree_transaction_get_response_sync ( sysroot_proxy ,
2015-08-17 20:42:03 +03:00
transaction_address ,
2015-06-13 03:19:16 +03:00
cancellable ,
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2014-03-29 03:48:06 +04:00
2015-06-13 03:19:16 +03:00
if ( ! opt_reboot )
2014-03-29 05:40:30 +04: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-09-02 19:49:31 +03:00
if ( ! rpmostree_print_treepkg_diff_from_sysroot_path ( sysroot_path ,
2015-06-13 03:19:16 +03:00
cancellable ,
error ) )
2017-03-23 21:50:18 +03:00
return EXIT_FAILURE ;
2014-03-29 05:40:30 +04:00
2015-06-13 03:19:16 +03:00
g_print ( " Run \" systemctl reboot \" to start a reboot \n " ) ;
}
2014-03-29 05:40:30 +04:00
2015-06-13 03:19:16 +03:00
2017-03-23 21:50:18 +03:00
return EXIT_SUCCESS ;
2014-03-29 03:48:06 +04:00
}