This file is indexed.

/usr/lib/python3/dist-packages/provisioningserver/refresh/__init__.py is in python3-maas-provisioningserver 2.0.0~beta3+bzr4941-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
# Copyright 2016 Canonical Ltd.  This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).

"""Functionality to refresh rack controller hardware and networking details."""
import os
import shutil
import socket
import stat
import subprocess
import tempfile
import urllib

from provisioningserver.config import ClusterConfiguration
from provisioningserver.logger.log import get_maas_logger
from provisioningserver.refresh.maas_api_helper import (
    encode_multipart_data,
    geturl,
)
from provisioningserver.refresh.node_info_scripts import NODE_INFO_SCRIPTS
from provisioningserver.utils.twisted import synchronous


maaslog = get_maas_logger("refresh")


def get_architecture():
    """Get the architecture of the running system."""
    proc = subprocess.Popen('archdetect', stdout=subprocess.PIPE)
    stdout, stderr = proc.communicate()
    if proc.returncode != 0:
        return ''
    return stdout.strip().decode('utf-8')


def get_swap_size():
    """Get the current swap size of the running system."""
    with open('/proc/meminfo') as f:
        for line in f:
            if 'SwapTotal' in line:
                return int(line.split()[1]) * 1000
    return 0


def get_os_release():
    """Parse the contents of /etc/os-release into a dictionary."""
    def full_strip(value):
        return value.strip().strip('\'"')

    os_release = {}
    with open('/etc/os-release') as f:
        for line in f:
            key, value = line.split('=')
            os_release[full_strip(key)] = full_strip(value)

    return os_release


def signal(
        url, creds, status, message, files={}, script_result=None,
        extra_headers=None):
    """Send a node signal to a given maas_url."""
    if isinstance(status, int):
        status = str(status)
    params = {
        b"op": b"signal",
        b"status": status.encode("utf-8"),
        b"error": message.encode("utf-8"),
    }
    if script_result is not None:
        if isinstance(script_result, int):
            script_result = str(script_result)
        params[b'script_result'] = script_result.encode("utf-8")

    data, headers = encode_multipart_data(params, files)

    if extra_headers is not None:
        headers.update(extra_headers)
    try:
        payload = geturl(url, creds=creds, headers=headers, data=data)
        if payload != b"OK":
            maaslog.error(
                "Unexpected result sending region commissioning data: %s" % (
                    payload))
    except urllib.error.HTTPError as exc:
        maaslog.error("http error [%s]" % exc.code)
    except urllib.error.URLError as exc:
        maaslog.error("url error [%s]" % exc.reason)
    except socket.timeout as exc:
        maaslog.error("socket timeout [%s]" % exc)
    except TypeError as exc:
        maaslog.error(str(exc))
    except Exception as exc:
        maaslog.error("unexpected error [%s]" % exc)


@synchronous
def refresh(system_id, consumer_key, token_key, token_secret):
    """Run all builtin commissioning scripts and report results to region."""
    maaslog.info(
        "Refreshing rack controller hardware information.")

    with ClusterConfiguration.open() as config:
        url = "%s/metadata/status/%s/latest" % (config.maas_url, system_id)

    creds = {
        'consumer_key': consumer_key,
        'token_key': token_key,
        'token_secret': token_secret,
        'consumer_secret': '',
        }

    tmpdir = tempfile.mkdtemp(prefix='maas-commission-')
    scripts_to_run = {
        name: config
        for name, config in NODE_INFO_SCRIPTS.items()
        if config["run_on_controller"]
    }
    total_scripts = len(scripts_to_run)
    current_script = 1
    failed_scripts = []
    for output_name, config in scripts_to_run.items():
        signal(
            url, creds, "WORKING", "Starting %s [%d/%d]" %
            (config['name'], current_script, total_scripts))

        # Write script to /tmp and set it executable
        script_path = os.path.join(tmpdir, config['name'])
        with open(script_path, 'wb') as f:
            f.write(config['content'])
        st = os.stat(script_path)
        os.chmod(script_path, st.st_mode | stat.S_IEXEC)

        # Execute script and store stdout/stderr
        proc = subprocess.Popen(
            script_path, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
        stdout, stderr = proc.communicate()
        signal(
            url, creds,
            "WORKING", "Finished %s [%d/%d]: %d" %
            (config['name'], current_script, total_scripts, proc.returncode),
            {output_name: stdout, "%s.err" % config['name']: stderr},
            proc.returncode)
        if proc.returncode != 0:
            failed_scripts.append(config['name'])
        current_script += 1

    shutil.rmtree(tmpdir)
    fail_count = len(failed_scripts)
    if fail_count == 0:
        signal(
            url, creds, "OK", "Finished refreshing %s" % system_id)
    else:
        signal(
            url, creds, "FAILED", "Failed refreshing %s" % system_id)