summaryrefslogtreecommitdiff
path: root/morphlib/exts/ssh-rsync.write
blob: 775619eca454d7a9544bb29915d55197cb324dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#!/usr/bin/python
# Copyright (C) 2013-2014  Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


'''A Morph deployment write extension for upgrading systems over ssh.'''


import cliapp
import os
import sys
import time
import tempfile

import morphlib.writeexts


def ssh_runcmd_ignore_failure(location, command, **kwargs):
    try:
        return cliapp.ssh_runcmd(location, command, **kwargs)
    except cliapp.AppException:
        pass


class SshRsyncWriteExtension(morphlib.writeexts.WriteExtension):

    '''Upgrade a running baserock system with ssh and rsync.

    It assumes the system is baserock-based and has a btrfs partition.

    The location command line argument is the 'user@hostname' string
    that will be passed to ssh and rsync

    '''

    def process_args(self, args):
        if len(args) != 2:
            raise cliapp.AppException('Wrong number of command line args')

        temp_root, location = args

        self.upgrade_remote_system(location, temp_root)

    def upgrade_remote_system(self, location, temp_root):
        root_disk = self.find_root_disk(location)
        uuid = cliapp.ssh_runcmd(location, ['blkid', '-s', 'UUID', '-o',
                                 'value', root_disk]).strip()

        self.complete_fstab_for_btrfs_layout(temp_root, uuid)

        version_label = os.environ['VERSION_LABEL']
        autostart = self.get_environment_boolean('AUTOSTART')

        self.status(msg='Creating remote mount point')
        remote_mnt = cliapp.ssh_runcmd(location, ['mktemp', '-d']).strip()
        try:
            self.status(msg='Mounting root disk')
            cliapp.ssh_runcmd(location, ['mount', root_disk, remote_mnt])
        except Exception as e:
            ssh_runcmd_ignore_failure(location, ['rmdir', remote_mnt])
            raise e

        try:
            version_root = os.path.join(remote_mnt, 'systems', version_label)
            orig_dir = os.path.join(version_root, 'orig')

            self.status(msg='Creating %s' % version_root)
            cliapp.ssh_runcmd(location, ['mkdir', version_root])

            self.create_remote_orig(location, version_root, remote_mnt,
                                    temp_root)

            # Use the system-version-manager from the new system we just
            # installed, so that we can upgrade from systems that don't have
            # it installed.
            self.status(msg='Calling system-version-manager to deploy upgrade')
            deployment = os.path.join('/systems', version_label, 'orig')
            system_config_sync = os.path.join(
                    remote_mnt, 'systems', version_label, 'orig', 'usr', 'bin',
                    'baserock-system-config-sync')
            system_version_manager = os.path.join(
                    remote_mnt, 'systems', version_label, 'orig', 'usr', 'bin',
                    'system-version-manager')
            cliapp.ssh_runcmd(location,
                    ['env', 'BASEROCK_SYSTEM_CONFIG_SYNC='+system_config_sync,
                     system_version_manager, 'deploy', deployment])

            self.status(msg='Setting %s as the new default system' %
                    version_label)
            cliapp.ssh_runcmd(location,
                    [system_version_manager, 'set-default', version_label])
        except Exception as e:
            self.status(msg='Deployment failed')
            ssh_runcmd_ignore_failure(
                    location, ['btrfs', 'subvolume', 'delete', orig_dir])
            ssh_runcmd_ignore_failure(
                    location, ['rm', '-rf', version_root])
            raise e
        finally:
            self.status(msg='Removing temporary mounts')
            cliapp.ssh_runcmd(location, ['umount', remote_mnt])
            cliapp.ssh_runcmd(location, ['rmdir', remote_mnt])

        if autostart:
            self.status(msg="Rebooting into new system ...")
            ssh_runcmd_ignore_failure(location, ['reboot'])

    def create_remote_orig(self, location, version_root, remote_mnt,
                           temp_root):
        '''Create the subvolume version_root/orig on location'''

        self.status(msg='Creating "orig" subvolume')
        old_orig = self.get_old_orig(location, remote_mnt)
        new_orig = os.path.join(version_root, 'orig')
        cliapp.ssh_runcmd(location, ['btrfs', 'subvolume', 'snapshot',
                                     old_orig, new_orig])

        cliapp.runcmd(['rsync', '-as', '--checksum', '--numeric-ids',
                       '--delete', temp_root + os.path.sep,
                       '%s:%s' % (location, new_orig)])

    def get_old_orig(self, location, remote_mnt):
        '''Identify which subvolume to snapshot from'''

        # rawdisk upgrades use 'factory'
        return os.path.join(remote_mnt, 'systems', 'factory', 'orig')

    def find_root_disk(self, location):
        '''Read /proc/mounts on location to find which device contains "/"'''

        self.status(msg='Finding device that contains "/"')
        contents = cliapp.ssh_runcmd(location, ['cat', '/proc/mounts'])
        for line in contents.splitlines():
            line_words = line.split()
            if (line_words[1] == '/' and line_words[0] != 'rootfs'):
                return line_words[0]


SshRsyncWriteExtension().run()