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

import os
import sys
import unittest

import elf
12
import test_util
13 14

binman_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
15 16 17


class FakeEntry:
S
Simon Glass 已提交
18 19 20 21
    """A fake Entry object, usedfor testing

    This supports an entry with a given size.
    """
22 23 24 25 26 27 28
    def __init__(self, contents_size):
        self.contents_size = contents_size
        self.data = 'a' * contents_size

    def GetPath(self):
        return 'entry_path'

S
Simon Glass 已提交
29

30
class FakeSection:
S
Simon Glass 已提交
31 32 33 34 35 36
    """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.
    """
37 38 39 40
    def __init__(self, sym_value=1):
        self.sym_value = sym_value

    def GetPath(self):
41
        return 'section_path'
42 43

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

S
Simon Glass 已提交
47

48 49
class TestElf(unittest.TestCase):
    def testAllSymbols(self):
S
Simon Glass 已提交
50
        """Test that we can obtain a symbol from the ELF file"""
51
        fname = os.path.join(binman_dir, 'test', 'u_boot_ucode_ptr')
52 53 54 55
        syms = elf.GetSymbols(fname, [])
        self.assertIn('.ucode', syms)

    def testRegexSymbols(self):
S
Simon Glass 已提交
56
        """Test that we can obtain from the ELF file by regular expression"""
57
        fname = os.path.join(binman_dir, 'test', 'u_boot_ucode_ptr')
58 59 60 61 62 63 64
        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)

65
    def testMissingFile(self):
S
Simon Glass 已提交
66
        """Test that a missing file is detected"""
67
        entry = FakeEntry(10)
68
        section = FakeSection()
69
        with self.assertRaises(ValueError) as e:
70
            syms = elf.LookupAndWriteSymbols('missing-file', entry, section)
71 72 73 74
        self.assertIn("Filename 'missing-file' not found in input path",
                      str(e.exception))

    def testOutsideFile(self):
S
Simon Glass 已提交
75
        """Test a symbol which extends outside the entry area is detected"""
76
        entry = FakeEntry(10)
77
        section = FakeSection()
78 79
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
        with self.assertRaises(ValueError) as e:
80
            syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
81 82 83 84
        self.assertIn('entry_path has offset 4 (size 8) but the contents size '
                      'is a', str(e.exception))

    def testMissingImageStart(self):
S
Simon Glass 已提交
85 86 87 88 89
        """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.
        """
90
        entry = FakeEntry(10)
91
        section = FakeSection()
92
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms_bad')
93
        self.assertEqual(elf.LookupAndWriteSymbols(elf_fname, entry, section),
94 95 96
                         None)

    def testBadSymbolSize(self):
S
Simon Glass 已提交
97 98 99 100 101
        """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.
        """
102
        entry = FakeEntry(10)
103
        section = FakeSection()
104 105
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms_size')
        with self.assertRaises(ValueError) as e:
106
            syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
107 108 109 110
        self.assertIn('has size 1: only 4 and 8 are supported',
                      str(e.exception))

    def testNoValue(self):
S
Simon Glass 已提交
111 112 113 114 115
        """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.
        """
116
        entry = FakeEntry(20)
117
        section = FakeSection(sym_value=None)
118
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
119
        syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
120 121 122
        self.assertEqual(chr(255) * 16 + 'a' * 4, entry.data)

    def testDebug(self):
S
Simon Glass 已提交
123
        """Check that enabling debug in the elf module produced debug output"""
124 125
        elf.debug = True
        entry = FakeEntry(20)
126
        section = FakeSection()
127
        elf_fname = os.path.join(binman_dir, 'test', 'u_boot_binman_syms')
128
        with test_util.capture_sys_output() as (stdout, stderr):
129
            syms = elf.LookupAndWriteSymbols(elf_fname, entry, section)
130 131 132 133
        elf.debug = False
        self.assertTrue(len(stdout.getvalue()) > 0)


134 135
if __name__ == '__main__':
    unittest.main()