diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-20 09:36:06 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-24 11:52:27 +0100 |
| commit | e1ba46109ea4be3d3b310abaf7f2da3c84a83930 (patch) | |
| tree | 6ecddb381be06b2016eee1ede16c5b706c348120 /meta/classes/package.bbclass | |
| parent | 069a1c4a1520914234dc58b506663fcfd80433e3 (diff) | |
| download | poky-e1ba46109ea4be3d3b310abaf7f2da3c84a83930.tar.gz | |
package: Call file to determine elf status in parallel
This allows the calls to is_elf (which calls file) to happen in parallel
allowing a speedup of do_package and do_populate_sysroot for native
recipes.
(From OE-Core rev: bbe0d3e26484f3f347262d40a8a9d415ce21fb43)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package.bbclass')
| -rw-r--r-- | meta/classes/package.bbclass | 85 |
1 files changed, 50 insertions, 35 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index f121acccab..81cb0c049c 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
| @@ -949,6 +949,8 @@ python split_and_strip_files () { | |||
| 949 | skipfiles = (d.getVar("INHIBIT_PACKAGE_STRIP_FILES") or "").split() | 949 | skipfiles = (d.getVar("INHIBIT_PACKAGE_STRIP_FILES") or "").split() |
| 950 | if (d.getVar('INHIBIT_PACKAGE_STRIP') != '1' or \ | 950 | if (d.getVar('INHIBIT_PACKAGE_STRIP') != '1' or \ |
| 951 | d.getVar('INHIBIT_PACKAGE_DEBUG_SPLIT') != '1'): | 951 | d.getVar('INHIBIT_PACKAGE_DEBUG_SPLIT') != '1'): |
| 952 | checkelf = {} | ||
| 953 | checkelflinks = {} | ||
| 952 | for root, dirs, files in cpath.walk(dvar): | 954 | for root, dirs, files in cpath.walk(dvar): |
| 953 | for f in files: | 955 | for f in files: |
| 954 | file = os.path.join(root, f) | 956 | file = os.path.join(root, f) |
| @@ -982,44 +984,57 @@ python split_and_strip_files () { | |||
| 982 | # Check its an executable | 984 | # Check its an executable |
| 983 | if (s[stat.ST_MODE] & stat.S_IXUSR) or (s[stat.ST_MODE] & stat.S_IXGRP) or (s[stat.ST_MODE] & stat.S_IXOTH) \ | 985 | if (s[stat.ST_MODE] & stat.S_IXUSR) or (s[stat.ST_MODE] & stat.S_IXGRP) or (s[stat.ST_MODE] & stat.S_IXOTH) \ |
| 984 | or ((file.startswith(libdir) or file.startswith(baselibdir)) and (".so" in f or ".node" in f)): | 986 | or ((file.startswith(libdir) or file.startswith(baselibdir)) and (".so" in f or ".node" in f)): |
| 985 | # If it's a symlink, and points to an ELF file, we capture the readlink target | 987 | |
| 986 | if cpath.islink(file): | 988 | if cpath.islink(file): |
| 987 | target = os.readlink(file) | 989 | checkelflinks[file] = ltarget |
| 988 | if oe.package.is_elf(ltarget): | ||
| 989 | #bb.note("Sym: %s (%d)" % (ltarget, oe.package.is_elf(ltarget))) | ||
| 990 | symlinks[file] = target | ||
| 991 | continue | 990 | continue |
| 991 | # Use a reference of device ID and inode number to identify files | ||
| 992 | file_reference = "%d_%d" % (s.st_dev, s.st_ino) | ||
| 993 | checkelf[file] = (file, file_reference) | ||
| 994 | |||
| 995 | results = oe.utils.multiprocess_launch(oe.package.is_elf, checkelflinks.values(), d) | ||
| 996 | results_map = {} | ||
| 997 | for (ltarget, elf_file) in results: | ||
| 998 | results_map[ltarget] = elf_file | ||
| 999 | for file in checkelflinks: | ||
| 1000 | ltarget = checkelflinks[file] | ||
| 1001 | # If it's a symlink, and points to an ELF file, we capture the readlink target | ||
| 1002 | if results_map[ltarget]: | ||
| 1003 | target = os.readlink(file) | ||
| 1004 | #bb.note("Sym: %s (%d)" % (ltarget, results_map[ltarget])) | ||
| 1005 | symlinks[file] = target | ||
| 1006 | |||
| 1007 | results = oe.utils.multiprocess_launch(oe.package.is_elf, checkelf.keys(), d) | ||
| 1008 | for (file, elf_file) in results: | ||
| 1009 | # It's a file (or hardlink), not a link | ||
| 1010 | # ...but is it ELF, and is it already stripped? | ||
| 1011 | if elf_file & 1: | ||
| 1012 | if elf_file & 2: | ||
| 1013 | if 'already-stripped' in (d.getVar('INSANE_SKIP_' + pn) or "").split(): | ||
| 1014 | bb.note("Skipping file %s from %s for already-stripped QA test" % (file[len(dvar):], pn)) | ||
| 1015 | else: | ||
| 1016 | msg = "File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn) | ||
| 1017 | package_qa_handle_error("already-stripped", msg, d) | ||
| 1018 | continue | ||
| 992 | 1019 | ||
| 993 | # It's a file (or hardlink), not a link | 1020 | # At this point we have an unstripped elf file. We need to: |
| 994 | # ...but is it ELF, and is it already stripped? | 1021 | # a) Make sure any file we strip is not hardlinked to anything else outside this tree |
| 995 | elf_file = oe.package.is_elf(file) | 1022 | # b) Only strip any hardlinked file once (no races) |
| 996 | if elf_file & 1: | 1023 | # c) Track any hardlinks between files so that we can reconstruct matching debug file hardlinks |
| 997 | if elf_file & 2: | 1024 | |
| 998 | if 'already-stripped' in (d.getVar('INSANE_SKIP_' + pn) or "").split(): | 1025 | # Use a reference of device ID and inode number to identify files |
| 999 | bb.note("Skipping file %s from %s for already-stripped QA test" % (file[len(dvar):], pn)) | 1026 | file_reference = checkelf[file] |
| 1000 | else: | 1027 | if file_reference in inodes: |
| 1001 | msg = "File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn) | 1028 | os.unlink(file) |
| 1002 | package_qa_handle_error("already-stripped", msg, d) | 1029 | os.link(inodes[file_reference][0], file) |
| 1003 | continue | 1030 | inodes[file_reference].append(file) |
| 1004 | 1031 | else: | |
| 1005 | # At this point we have an unstripped elf file. We need to: | 1032 | inodes[file_reference] = [file] |
| 1006 | # a) Make sure any file we strip is not hardlinked to anything else outside this tree | 1033 | # break hardlink |
| 1007 | # b) Only strip any hardlinked file once (no races) | 1034 | bb.utils.copyfile(file, file) |
| 1008 | # c) Track any hardlinks between files so that we can reconstruct matching debug file hardlinks | 1035 | elffiles[file] = elf_file |
| 1009 | 1036 | # Modified the file so clear the cache | |
| 1010 | # Use a reference of device ID and inode number to identify files | 1037 | cpath.updatecache(file) |
| 1011 | file_reference = "%d_%d" % (s.st_dev, s.st_ino) | ||
| 1012 | if file_reference in inodes: | ||
| 1013 | os.unlink(file) | ||
| 1014 | os.link(inodes[file_reference][0], file) | ||
| 1015 | inodes[file_reference].append(file) | ||
| 1016 | else: | ||
| 1017 | inodes[file_reference] = [file] | ||
| 1018 | # break hardlink | ||
| 1019 | bb.utils.copyfile(file, file) | ||
| 1020 | elffiles[file] = elf_file | ||
| 1021 | # Modified the file so clear the cache | ||
| 1022 | cpath.updatecache(file) | ||
| 1023 | 1038 | ||
| 1024 | # | 1039 | # |
| 1025 | # First lets process debug splitting | 1040 | # First lets process debug splitting |
