summaryrefslogtreecommitdiff
path: root/cloudinit/config/cc_snappy.py
blob: a3af98a6f37cc45189e434e2ea516bc65ce18aae (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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# vi: ts=4 expandtab
#
"""
snappy modules allows configuration of snappy.
Example config:
  #cloud-config
  snappy:
    system_snappy: auto
    ssh_enabled: False
    packages: [etcd, pkg2]
    config:
      pkgname:
        key2: value2
      pkg2:
        key1: value1
    packages_dir: '/writable/user-data/cloud-init/snaps'

 - ssh_enabled:
   This defaults to 'False'.  Set to a non-false value to enable ssh service
 - snap installation and config
   The above would install 'etcd', and then install 'pkg2' with a
   '--config=<file>' argument where 'file' as 'config-blob' inside it.
   If 'pkgname' is installed already, then 'snappy config pkgname <file>'
   will be called where 'file' has 'pkgname-config-blob' as its content.

   If 'packages_dir' has files in it that end in '.snap', then they are
   installed.  Given 3 files:
     <packages_dir>/foo.snap
     <packages_dir>/foo.config
     <packages_dir>/bar.snap
   cloud-init will invoke:
     snappy install "--config=<packages_dir>/foo.config" \
         <packages_dir>/foo.snap
     snappy install <packages_dir>/bar.snap

   Note, that if provided a 'config' entry for 'ubuntu-core', then
   cloud-init will invoke: snappy config ubuntu-core <config>
   Allowing you to configure ubuntu-core in this way.
"""

from cloudinit import log as logging
from cloudinit import templater
from cloudinit import util
from cloudinit.settings import PER_INSTANCE

import glob
import six
import tempfile
import os

LOG = logging.getLogger(__name__)

frequency = PER_INSTANCE
SNAPPY_CMD = "snappy"

BUILTIN_CFG = {
    'packages': [],
    'packages_dir': '/writable/user-data/cloud-init/snaps',
    'ssh_enabled': False,
    'system_snappy': "auto",
    'config': {},
}


def get_fs_package_ops(fspath):
    if not fspath:
        return []
    ops = []
    for snapfile in glob.glob(os.path.sep.join([fspath, '*.snap'])):
        cfg = snapfile.rpartition(".")[0] + ".config"
        name = os.path.basename(snapfile).rpartition(".")[0]
        if not os.path.isfile(cfg):
            cfg = None
        ops.append(makeop('install', name, config=None,
                   path=snapfile, cfgfile=cfg))
    return ops


def makeop(op, name, config=None, path=None, cfgfile=None):
    return({'op': op, 'name': name, 'config': config, 'path': path,
            'cfgfile': cfgfile})


def get_package_ops(packages, configs, installed=None, fspath=None):
    # get the install an config operations that should be done
    if installed is None:
        installed = read_installed_packages()

    if not packages:
        packages = []
    if not configs:
        configs = {}

    ops = []
    ops += get_fs_package_ops(fspath)

    for name in packages:
        ops.append(makeop('install', name, configs.get('name')))

    to_install = [f['name'] for f in ops]

    for name in configs:
        if name in installed and name not in to_install:
            ops.append(makeop('config', name, config=configs[name]))

    # prefer config entries to filepath entries
    for op in ops:
        name = op['name']
        if name in configs and op['op'] == 'install' and 'cfgfile' in op:
            LOG.debug("preferring configs[%s] over '%s'", name, op['cfgfile'])
            op['cfgfile'] = None
            op['config'] = configs[op['name']]

    return ops


def render_snap_op(op, name, path=None, cfgfile=None, config=None):
    if op not in ('install', 'config'):
        raise ValueError("cannot render op '%s'" % op)

    try:
        cfg_tmpf = None
        if config is not None:
            # input to 'snappy config packagename' must have nested data. odd.
            # config:
            #   packagename:
            #      config
            # Note, however, we do not touch config files on disk.
            nested_cfg = {'config': {name: config}}
            (fd, cfg_tmpf) = tempfile.mkstemp()
            os.write(fd, util.yaml_dumps(nested_cfg).encode())
            os.close(fd)
            cfgfile = cfg_tmpf

        cmd = [SNAPPY_CMD, op]
        if op == 'install':
            if cfgfile:
                cmd.append('--config=' + cfgfile)
            if path:
                cmd.append(path)
            else:
                cmd.append(name)
        elif op == 'config':
            cmd += [name, cfgfile]

        util.subp(cmd)

    finally:
        if cfg_tmpf:
            os.unlink(cfg_tmpf)


def read_installed_packages():
    return [p[0] for p in read_pkg_data()]


def read_pkg_data():
    out, err = util.subp([SNAPPY_CMD, "list"])
    pkg_data = []
    for line in out.splitlines()[1:]:
        toks = line.split(sep=None, maxsplit=3)
        if len(toks) == 3:
            (name, date, version) = toks
            dev = None
        else:
            (name, date, version, dev) = toks
        pkg_data.append((name, date, version, dev,))
    return pkg_data


def disable_enable_ssh(enabled):
    LOG.debug("setting enablement of ssh to: %s", enabled)
    # do something here that would enable or disable
    not_to_be_run = "/etc/ssh/sshd_not_to_be_run"
    if enabled:
        util.del_file(not_to_be_run)
        # this is an indempotent operation
        util.subp(["systemctl", "start", "ssh"])
    else:
        # this is an indempotent operation
        util.subp(["systemctl", "stop", "ssh"])
        util.write_file(not_to_be_run, "cloud-init\n")


def system_is_snappy():
    # channel.ini is configparser loadable.
    # snappy will move to using /etc/system-image/config.d/*.ini
    # this is certainly not a perfect test, but good enough for now.
    content = util.load_file("/etc/system-image/channel.ini", quiet=True)
    if 'ubuntu-core' in content.lower():
        return True
    if os.path.isdir("/etc/system-image/config.d/"):
        return True
    return False


def set_snappy_command():
    global SNAPPY_CMD
    if util.which("snappy-go"):
        SNAPPY_CMD = "snappy-go"
    else:
        SNAPPY_CMD = "snappy"
    LOG.debug("snappy command is '%s'", SNAPPY_CMD)


def handle(name, cfg, cloud, log, args):
    cfgin = cfg.get('snappy')
    if not cfgin:
        cfgin = {}
    mycfg = util.mergemanydict([cfgin, BUILTIN_CFG])

    sys_snappy = str(mycfg.get("system_snappy", "auto"))
    if util.is_false(sys_snappy):
        LOG.debug("%s: System is not snappy. disabling", name)
        return

    if sys_snappy.lower() == "auto" and not(system_is_snappy()):
        LOG.debug("%s: 'auto' mode, and system not snappy", name)
        return

    pkg_ops = get_package_ops(packages=mycfg['packages'],
                              configs=mycfg['config'],
                              fspath=mycfg['packages_dir'])

    set_snappy_command()

    fails = []
    for pkg_op in pkg_ops:
        try:
            render_snap_op(**pkg_op)
        except Exception as e:
            fails.append((pkg_op, e,))
            LOG.warn("'%s' failed for '%s': %s",
                     pkg_op['op'], pkg_op['name'], e)

    disable_enable_ssh(mycfg.get('ssh_enabled', False))

    if fails:
        raise Exception("failed to install/configure snaps")