elf_test.py 6.6 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0+
2 3 4 5 6 7
# Copyright (c) 2017 Google, Inc
# Written by Simon Glass <sjg@chromium.org>
#
# Test for the elf module

import os
8
import shutil
9
import sys
10
import tempfile
11 12
import unittest

13
import command
14
import elf
15
import test_util
16
import tools
17
import tout
18 19

binman_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
20 21 22


class FakeEntry:
S
Simon Glass 已提交
23 24 25 26
    """A fake Entry object, usedfor testing

    This supports an entry with a given size.
    """
27 28
    def __init__(self, contents_size):
        self.contents_size = contents_size
S
Simon Glass 已提交
29
        self.data = tools.GetBytes(ord('a'), contents_size)
30 31 32 33

    def GetPath(self):
        return 'entry_path'

S
Simon Glass 已提交
34

35
class FakeSection:
S
Simon Glass 已提交
36 37 38 39 40 41
    """A fake Section object, used for testing

    This has the minimum feature set needed to support testing elf functions.
    A LookupSymbol() function is provided which returns a fake value for amu
    symbol requested.
    """
42 43 44 45
    def __init__(self, sym_value=1):
        self.sym_value = sym_value

    def GetPath(self):
46
        return 'section_path'
47 48

    def LookupSymbol(self, name, weak, msg):
S
Simon Glass 已提交
49
        """Fake implementation which returns the same value for all symbols"""
50
        return self.sym_value
51

S
Simon Glass 已提交
52

53
class TestElf(unittest.TestCase):
54 55 56 57
    @classmethod
    def setUpClass(self):
        tools.SetInputDirs(['.'])

58
    def testAllSymbols(self):
S
Simon Glass 已提交
59
        """Test that we can obtain a symbol from the ELF file"""
60
        fname = os.path.join(binman_dir, 'test', 'u_boot_ucode_ptr')
61 62 63 64
        syms = elf.GetSymbols(fname, [])
        self.assertIn('.ucode', syms)

    def testRegexSymbols(self):
S
Simon Glass 已提交
65
        """Test that we can obtain from the ELF file by regular expression"""
66
        fname = os.path.join(binman_dir, 'test', 'u_boot_ucode_ptr')
67 68 69 70 71 72 73
        syms = elf.GetSymbols(fname, ['ucode'])
        self.assertIn('.ucode', syms)
        syms = elf.GetSymbols(fname, ['missing'])
        self.assertNotIn('.ucode', syms)
        syms = elf.GetSymbols(fname, ['missing', 'ucode'])
        self.assertIn('.ucode', syms)

74
    def testMissingFile(self):
S
Simon Glass 已提交
75
        """Test that a missing file is detected"""
76
        entry = FakeEntry(10)
77
        section = FakeSection()
78
        with self.assertRaises(ValueError) as e:
79
            syms = elf.LookupAndWriteSymbols('missing-file', entry, section)
80 81 82 83
        self.assertIn("Filename 'missing-file' not found in input path",
                      str(e.exception))

    def testOutsideFile(self):
S
Simon Glass 已提交
84
        """Test a symbol which extends outside the entry area is detected"""
85
        entry = FakeEntry(10)
86
        section = FakeSection()
87 88
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
        with self.assertRaises(ValueError) as e:
89
            syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
90 91 92 93
        self.assertIn('entry_path has offset 4 (size 8) but the contents size '
                      'is a', str(e.exception))

    def testMissingImageStart(self):
S
Simon Glass 已提交
94 95 96 97 98
        """Test that we detect a missing __image_copy_start symbol

        This is needed to mark the start of the image. Without it we cannot
        locate the offset of a binman symbol within the image.
        """
99
        entry = FakeEntry(10)
100
        section = FakeSection()
101
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms_bad')
102
        self.assertEqual(elf.LookupAndWriteSymbols(elf_fname, entry, section),
103 104 105
                         None)

    def testBadSymbolSize(self):
S
Simon Glass 已提交
106 107 108 109 110
        """Test that an attempt to use an 8-bit symbol are detected

        Only 32 and 64 bits are supported, since we need to store an offset
        into the image.
        """
111
        entry = FakeEntry(10)
112
        section = FakeSection()
113 114
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms_size')
        with self.assertRaises(ValueError) as e:
115
            syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
116 117 118 119
        self.assertIn('has size 1: only 4 and 8 are supported',
                      str(e.exception))

    def testNoValue(self):
S
Simon Glass 已提交
120 121 122 123 124
        """Test the case where we have no value for the symbol

        This should produce -1 values for all thress symbols, taking up the
        first 16 bytes of the image.
        """
125
        entry = FakeEntry(20)
126
        section = FakeSection(sym_value=None)
127
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
128
        syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
S
Simon Glass 已提交
129 130
        self.assertEqual(tools.GetBytes(255, 16) + tools.GetBytes(ord('a'), 4),
                                                                  entry.data)
131 132

    def testDebug(self):
S
Simon Glass 已提交
133
        """Check that enabling debug in the elf module produced debug output"""
134 135 136 137 138 139 140 141 142 143
        try:
            tout.Init(tout.DEBUG)
            entry = FakeEntry(20)
            section = FakeSection()
            elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
            with test_util.capture_sys_output() as (stdout, stderr):
                syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
            self.assertTrue(len(stdout.getvalue()) > 0)
        finally:
            tout.Init(tout.WARNING)
144

145 146 147 148 149 150
    def testMakeElf(self):
        """Test for the MakeElf function"""
        outdir = tempfile.mkdtemp(prefix='elf.')
        expected_text = b'1234'
        expected_data = b'wxyz'
        elf_fname = os.path.join(outdir, 'elf')
S
Simon Glass 已提交
151
        bin_fname = os.path.join(outdir, 'bin')
152 153 154 155 156 157 158 159 160 161

        # Make an Elf file and then convert it to a fkat binary file. This
        # should produce the original data.
        elf.MakeElf(elf_fname, expected_text, expected_data)
        stdout = command.Output('objcopy', '-O', 'binary', elf_fname, bin_fname)
        with open(bin_fname, 'rb') as fd:
            data = fd.read()
        self.assertEqual(expected_text + expected_data, data)
        shutil.rmtree(outdir)

162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
    def testDecodeElf(self):
        """Test for the MakeElf function"""
        if not elf.ELF_TOOLS:
            self.skipTest('Python elftools not available')
        outdir = tempfile.mkdtemp(prefix='elf.')
        expected_text = b'1234'
        expected_data = b'wxyz'
        elf_fname = os.path.join(outdir, 'elf')
        elf.MakeElf(elf_fname, expected_text, expected_data)
        data = tools.ReadFile(elf_fname)

        load = 0xfef20000
        entry = load + 2
        expected = expected_text + expected_data
        self.assertEqual(elf.ElfInfo(expected, load, entry, len(expected)),
                         elf.DecodeElf(data, 0))
        self.assertEqual(elf.ElfInfo(b'\0\0' + expected[2:],
                                     load, entry, len(expected)),
                         elf.DecodeElf(data, load + 2))
        #shutil.rmtree(outdir)

183

184 185
if __name__ == '__main__':
    unittest.main()