summaryrefslogtreecommitdiff
path: root/cxmanage/target.py
blob: f0f35e3b6039a2a4e2b2971c5f02af75160b9200 (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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
# Copyright (c) 2012, Calxeda Inc.
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of Calxeda Inc. nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.


""" Target objects used by the cxmanage controller """

import atexit
import os
import shutil
import subprocess
import tempfile
import time

from cxmanage import CxmanageError
from cxmanage.image import Image
from cxmanage.ubootenv import UbootEnv
from cxmanage.infodump import print_info_dump

from pyipmi import make_bmc, IpmiError
from pyipmi.bmc import LanBMC

class Target:
    """ Contains info for a single target. A target consists of a hostname,
    an username, and a password. """

    def __init__(self, address, username="admin", password="admin",
            verbosity=0, bmc_class=LanBMC, ubootenv_class=UbootEnv):
        self.address = address
        self.username = username
        self.password = password
        self.verbosity = verbosity
        self.ubootenv_class = ubootenv_class

        self.work_dir = tempfile.mkdtemp(prefix="cxmanage-target-")
        atexit.register(self._cleanup)

        verbose = verbosity >= 2
        self.bmc = make_bmc(bmc_class, hostname=address,
                username=username, password=password, verbose=verbose)

    def _cleanup(self):
        """ Clean up temporary files """
        if os.path.exists(self.work_dir):
            shutil.rmtree(self.work_dir)

    def get_ipinfo(self, tftp):
        """ Download IP info from this target """
        tftp_address = "%s:%s" % (tftp.get_address(self.address),
                tftp.get_port())

        filename = tempfile.mkstemp(prefix="%s/ip_" % self.work_dir)[1]
        basename = os.path.basename(filename)

        # Send ipinfo command
        try:
            self.bmc.get_fabric_ipinfo(basename, tftp_address)
        except IpmiError:
            raise CxmanageError("Failed to retrieve IP info")

        # Wait for file
        for a in range(10):
            try:
                time.sleep(1)
                tftp.get_file(basename, filename)
                if os.path.getsize(filename) > 0:
                    break
            except CxmanageError:
                pass

        # Ensure file is present
        if not os.path.exists(filename):
            raise CxmanageError("Failed to retrieve IP info")

        # Parse addresses from ipinfo file
        results = []
        for line in open(filename):
            if line.startswith("Node"):
                elements = line.split()
                node = int(elements[1].rstrip(":"))
                address = elements[2]
                if address != "0.0.0.0":
                    results.append((node, address))
        results.sort()

        # Make sure we found something
        if len(results) == 0:
            raise CxmanageError("Failed to retrieve IP info")

        return results

    def get_macaddrs(self, tftp):
        """ Download mac addresses from this target """
        tftp_address = "%s:%s" % (tftp.get_address(self.address),
                tftp.get_port())

        filename = tempfile.mkstemp(prefix="%s/mac_" % self.work_dir)[1]
        basename = os.path.basename(filename)

        # Send ipinfo command
        try:
            self.bmc.get_fabric_macaddresses(basename, tftp_address)
        except IpmiError:
            raise CxmanageError("Failed to retrieve mac addresses")

        # Wait for file
        for a in range(10):
            try:
                time.sleep(1)
                tftp.get_file(basename, filename)
                if os.path.getsize(filename) > 0:
                    break
            except CxmanageError:
                pass

        # Ensure file is present
        if not os.path.exists(filename):
            raise CxmanageError("Failed to retrieve mac addresses")

        # Parse addresses from macaddrs file
        results = []
        for line in open(filename):
            if line.startswith("Node"):
                elements = line.split()
                node = int(elements[1].rstrip(","))
                port = int(elements[3].rstrip(":"))
                address = elements[4]
                results.append((node, port, address))
        results.sort()

        # Make sure we found something
        if len(results) == 0:
            raise CxmanageError("Failed to retrieve mac addresses")

        return results

    def get_power(self):
        """ Return power status reported by IPMI """
        try:
            return self.bmc.get_chassis_status().power_on
        except IpmiError:
            raise CxmanageError("Failed to retrieve power status")

    def set_power(self, mode):
        """ Send an IPMI power command to this target """
        try:
            self.bmc.set_chassis_power(mode=mode)
        except IpmiError:
            raise CxmanageError("Failed to send power %s command" % mode)

    def get_power_policy(self):
        """ Return power status reported by IPMI """
        try:
            return self.bmc.get_chassis_status().power_restore_policy
        except IpmiError:
            raise CxmanageError("Failed to retrieve power status")

    def set_power_policy(self, state):
        """ Set default power state for A9 """
        try:
            self.bmc.set_chassis_policy(state)
        except IpmiError:
            raise CxmanageError("Failed to set power policy to \"%s\"" % state)

    def mc_reset(self):
        """ Send an IPMI MC reset command to the target """
        try:
            result = self.bmc.mc_reset("cold")
            if hasattr(result, "error"):
                raise CxmanageError("Failed to send MC reset command")
        except IpmiError:
            raise CxmanageError("Failed to send MC reset command")

    def get_sensors(self):
        """ Get a list of sensors from this target """
        try:
            return self.bmc.sdr_list()
        except IpmiError:
            raise CxmanageError("Failed to retrieve sensor list")

    def get_firmware_info(self):
        """ Get firmware info from the target """
        try:
            fwinfo = [x for x in self.bmc.get_firmware_info()
                    if hasattr(x, "slot")]
            if len(fwinfo) == 0:
                raise CxmanageError("Failed to retrieve firmware info")

            # Flag CDB as "in use" based on socman info
            for a in range(1, len(fwinfo)):
                previous = fwinfo[a-1]
                partition = fwinfo[a]
                if (partition.type.split()[1][1:-1] == "CDB" and
                        partition.in_use == "Unknown"):
                    if previous.type.split()[1][1:-1] != "SOC_ELF":
                        partition.in_use = "1"
                    else:
                        partition.in_use = previous.in_use

            return fwinfo

        except IpmiError:
            raise CxmanageError("Failed to retrieve firmware info")

    def update_firmware(self, tftp, images, partition_arg="INACTIVE"):
        """ Update firmware on this target. """
        fwinfo = self.get_firmware_info()

        # Get the new version
        version = 0
        image_types = [x.type for x in images]
        for partition in fwinfo:
            # Make sure this partition is one of the types we're updating
            # and that the partition is flagged as "active"
            if (partition.type.split()[1][1:-1] in image_types and
                    int(partition.flags, 16) & 2 == 0):
                version = max(version, int(partition.version, 16) + 1)
        if version > 0xFFFF:
            raise CxmanageError("Unable to increment SIMG version, too high")

        for image in images:
            if image.type == "UBOOTENV":
                # Get partitions
                running_part = self._get_partition(fwinfo, image.type, "FIRST")
                factory_part = self._get_partition(fwinfo, image.type,
                        "SECOND")

                # Update running ubootenv
                old_ubootenv = self._download_ubootenv(tftp, running_part)
                if "bootcmd_default" in old_ubootenv.variables:
                    bootcmd = old_ubootenv.variables["bootcmd_default"]
                    contents = open(image.filename).read()
                    if image.simg:
                        contents = contents[28:]
                    ubootenv = self.ubootenv_class(contents)
                    ubootenv.variables["bootcmd_default"] = bootcmd
                    self._upload_ubootenv(tftp, ubootenv,
                            running_part, version)
                else:
                    self._upload_image(tftp, image, running_part, version)

                # Update factory ubootenv
                self._upload_image(tftp, image, factory_part, version)

            else:
                # Get the partitions
                if partition_arg == "BOTH":
                    partitions = [self._get_partition(fwinfo, image.type,
                            "FIRST"), self._get_partition(fwinfo, image.type,
                            "SECOND")]
                else:
                    partitions = [self._get_partition(fwinfo, image.type,
                            partition_arg)]

                # Update the image
                for partition in partitions:
                    self._upload_image(tftp, image, partition, version)

    def config_reset(self, tftp):
        """ Reset configuration to factory default """
        try:
            # Reset CDB
            result = self.bmc.reset_firmware()
            if hasattr(result, "error"):
                raise CxmanageError("Failed to reset configuration")

            # Reset ubootenv
            fwinfo = self.get_firmware_info()
            running_part = self._get_partition(fwinfo, "UBOOTENV", "FIRST")
            factory_part = self._get_partition(fwinfo, "UBOOTENV", "SECOND")
            image = self._download_image(tftp, factory_part)
            self._upload_image(tftp, image, running_part)

            # Clear SEL
            self.bmc.sel_clear()

        except IpmiError:
            raise CxmanageError("Failed to reset configuration")

    def set_boot_order(self, tftp, boot_args):
        """ Set boot order """
        fwinfo = self.get_firmware_info()
        first_part = self._get_partition(fwinfo, "UBOOTENV", "FIRST")
        active_part = self._get_partition(fwinfo, "UBOOTENV", "ACTIVE")

        # Download active ubootenv, modify, then upload to first partition
        ubootenv = self._download_ubootenv(tftp, active_part)
        ubootenv.set_boot_order(boot_args)
        version = max(int(x.version, 16) for x in [first_part, active_part])
        self._upload_ubootenv(tftp, ubootenv, first_part, version)

    def get_boot_order(self, tftp):
        """ Get boot order """
        fwinfo = self.get_firmware_info()
        active_part = self._get_partition(fwinfo, "UBOOTENV", "ACTIVE")
        ubootenv = self._download_ubootenv(tftp, active_part)
        return ubootenv.get_boot_order()

    def info_basic(self):
        """ Get basic SoC info from this target """
        result = self.bmc.get_info_basic()
        if hasattr(result, "error"):
            raise CxmanageError("Failed to retrieve SoC info")
        return result

    def info_dump(self, tftp):
        """ Dump info from this target """
        print_info_dump(tftp, self)

    def ipmitool_command(self, ipmitool_args):
        """ Execute an arbitrary ipmitool command """
        command = ["ipmitool", "-U", self.username, "-P", self.password, "-H",
                self.address]
        command += ipmitool_args

        if self.verbosity >= 2:
            print "Running %s" % " ".join(command)

        output = subprocess.check_output(command, stderr=subprocess.STDOUT)
        return output.strip()

    def get_ubootenv(self, tftp):
        """ Get the active u-boot environment """
        fwinfo = self.get_firmware_info()
        partition = self._get_partition(fwinfo, "UBOOTENV", "ACTIVE")

        return self._download_ubootenv(tftp, partition)

    def _get_partition(self, fwinfo, image_type, partition_arg):
        """ Get a partition for this image type based on the argument """
        # Filter partitions for this type
        partitions = [x for x in fwinfo if
                x.type.split()[1][1:-1] == image_type]
        if len(partitions) < 1:
            raise CxmanageError("No partitions found on host")

        if partition_arg == "FIRST":
            return partitions[0]
        elif partition_arg == "SECOND":
            if len(partitions) < 2:
                raise CxmanageError("No second partition found on host")
            return partitions[1]
        elif partition_arg == "OLDEST":
            # Choose second partition if both are the same version
            if (len(partitions) == 1 or
                    partitions[0].version < partitions[1].version):
                return partitions[0]
            else:
                return partitions[1]
        elif partition_arg == "NEWEST":
            # Choose first partition if both are the same version
            if (len(partitions) == 1 or
                    partitions[0].version >= partitions[1].version):
                return partitions[0]
            else:
                return partitions[1]
        elif partition_arg == "INACTIVE":
            # Get inactive partitions
            partitions = [x for x in partitions if x.in_use != "1"]
            if len(partitions) < 1:
                raise CxmanageError("No inactive partitions found on host")

            # Choose second partition if both are the same version
            if (len(partitions) == 1 or
                    partitions[0].version < partitions[1].version):
                return partitions[0]
            else:
                return partitions[1]
        elif partition_arg == "ACTIVE":
            # Get active partitions
            partitions = [x for x in partitions if x.in_use != "0"]
            if len(partitions) < 1:
                raise CxmanageError("No active partitions found on host")

            # Choose first partition if both are the same version
            if (len(partitions) == 1 or
                    partitions[0].version >= partitions[1].version):
                return partitions[0]
            else:
                return partitions[1]
        else:
            raise ValueError("Invalid partition argument: %s" % partition_arg)

    def _upload_image(self, tftp, image, partition, version=None):
        """ Upload a single image. This includes uploading the image,
        performing the firmware update, crc32 check, and activation."""
        tftp_address = "%s:%s" % (tftp.get_address(self.address),
                tftp.get_port())

        if version == None:
            version = int(partition.version, 16)
        daddr = int(partition.daddr, 16)

        # Check image size
        if image.size() > int(partition.size, 16):
            raise CxmanageError("%s image is too large for partition %i" %
                    image.type, int(partition.slot))

        # Upload image to tftp server
        filename = image.upload(self.work_dir, tftp, version, daddr)

        # Send firmware update command
        partition_id = int(partition.slot)
        image_type = image.type
        result = self.bmc.update_firmware(filename,
                partition_id, image_type, tftp_address)
        handle = result.tftp_handle_id

        # Wait for update to finish
        self._wait_for_transfer(handle)

        # Verify crc
        result = self.bmc.check_firmware(partition_id)
        if hasattr(result, "crc32") and result.error == None:
            # Activate
            self.bmc.activate_firmware(partition_id)
        else:
            raise CxmanageError("Node reported crc32 check failure")

    def _download_image(self, tftp, partition):
        """ Download an image from the target.

        Returns the filename. """
        tftp_address = "%s:%s" % (tftp.get_address(self.address),
                tftp.get_port())

        # Download the image
        filename = tempfile.mkstemp(prefix="%s/img_" % self.work_dir)[1]
        basename = os.path.basename(filename)
        image_type = partition.type.split()[1][1:-1]
        handle = self.bmc.retrieve_firmware(basename, int(partition.slot),
                image_type, tftp_address).tftp_handle_id
        self._wait_for_transfer(handle)
        tftp.get_file(basename, filename)

        return Image(filename, image_type)

    def _upload_ubootenv(self, tftp, ubootenv, partition, version=None):
        """ Upload a uboot environment to the target """
        filename = tempfile.mkstemp(prefix="%s/env_" % self.work_dir)[1]
        open(filename, "w").write(ubootenv.get_contents())
        image = Image(filename, "UBOOTENV")
        self._upload_image(tftp, image, partition, version)

    def _download_ubootenv(self, tftp, partition):
        """ Download a uboot environment from the target """
        image = self._download_image(tftp, partition)

        # Open the file
        simg = open(image.filename).read()
        return self.ubootenv_class(simg[28:])

    def _wait_for_transfer(self, handle):
        """ Wait for a firmware transfer to finish"""

        while True:
            time.sleep(1)
            result = self.bmc.get_firmware_status(handle)
            if not hasattr(result, "status"):
                raise CxmanageError("Unable to retrieve transfer info")
            if result.status != "In progress":
                break
        if result.status != "Complete":
            raise CxmanageError("Node reported transfer failure")