Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # BB Class inspired by ebuild.sh |
| 2 | # |
| 3 | # This class will test files after installation for certain |
| 4 | # security issues and other kind of issues. |
| 5 | # |
| 6 | # Checks we do: |
| 7 | # -Check the ownership and permissions |
| 8 | # -Check the RUNTIME path for the $TMPDIR |
| 9 | # -Check if .la files wrongly point to workdir |
| 10 | # -Check if .pc files wrongly point to workdir |
| 11 | # -Check if packages contains .debug directories or .so files |
| 12 | # where they should be in -dev or -dbg |
| 13 | # -Check if config.log contains traces to broken autoconf tests |
| 14 | # -Check invalid characters (non-utf8) on some package metadata |
| 15 | # -Ensure that binaries in base_[bindir|sbindir|libdir] do not link |
| 16 | # into exec_prefix |
| 17 | # -Check that scripts in base_[bindir|sbindir|libdir] do not reference |
| 18 | # files under exec_prefix |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 19 | # -Check if the package name is upper case |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 20 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 21 | # Elect whether a given type of error is a warning or error, they may |
| 22 | # have been set by other files. |
Andrew Geissler | c182c62 | 2020-05-15 14:13:32 -0500 | [diff] [blame] | 23 | WARN_QA ?= " libdir xorg-driver-abi \ |
| 24 | textrel incompatible-license files-invalid \ |
| 25 | infodir build-deps src-uri-bad symlink-to-sysroot multilib \ |
Brad Bishop | d89cb5f | 2019-04-10 09:02:41 -0400 | [diff] [blame] | 26 | invalid-packageconfig host-user-contaminated uppercase-pn patch-fuzz \ |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 27 | mime mime-xdg unlisted-pkg-lics unhandled-features-check \ |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 28 | missing-update-alternatives native-last missing-ptest \ |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 29 | license-exists license-no-generic license-syntax license-format \ |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 30 | license-incompatible license-file-missing obsolete-license \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 31 | " |
| 32 | ERROR_QA ?= "dev-so debug-deps dev-deps debug-files arch pkgconfig la \ |
| 33 | perms dep-cmp pkgvarcheck perm-config perm-line perm-link \ |
| 34 | split-strip packages-list pkgv-undefined var-undefined \ |
| 35 | version-going-backwards expanded-d invalid-chars \ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 36 | license-checksum dev-elf file-rdeps configure-unsafe \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 37 | configure-gettext perllocalpod shebang-size \ |
Andrew Geissler | c182c62 | 2020-05-15 14:13:32 -0500 | [diff] [blame] | 38 | already-stripped installed-vs-shipped ldflags compile-host-path \ |
| 39 | install-host-path pn-overrides unknown-configure-option \ |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 40 | useless-rpaths rpaths staticdev empty-dirs \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 41 | " |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 42 | # Add usrmerge QA check based on distro feature |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 43 | ERROR_QA:append = "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', ' usrmerge', '', d)}" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 44 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 45 | FAKEROOT_QA = "host-user-contaminated" |
| 46 | FAKEROOT_QA[doc] = "QA tests which need to run under fakeroot. If any \ |
| 47 | enabled tests are listed here, the do_package_qa task will run under fakeroot." |
| 48 | |
| 49 | ALL_QA = "${WARN_QA} ${ERROR_QA}" |
| 50 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 51 | UNKNOWN_CONFIGURE_OPT_IGNORE ?= "--enable-nls --disable-nls --disable-silent-rules --disable-dependency-tracking --with-libtool-sysroot --disable-static" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 52 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 53 | # This is a list of directories that are expected to be empty. |
| 54 | QA_EMPTY_DIRS ?= " \ |
| 55 | /dev/pts \ |
| 56 | /media \ |
| 57 | /proc \ |
| 58 | /run \ |
| 59 | /tmp \ |
| 60 | ${localstatedir}/run \ |
| 61 | ${localstatedir}/volatile \ |
| 62 | " |
| 63 | # It is possible to specify why a directory is expected to be empty by defining |
| 64 | # QA_EMPTY_DIRS_RECOMMENDATION:<path>, which will then be included in the error |
| 65 | # message if the directory is not empty. If it is not specified for a directory, |
| 66 | # then "but it is expected to be empty" will be used. |
| 67 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 68 | def package_qa_clean_path(path, d, pkg=None): |
| 69 | """ |
| 70 | Remove redundant paths from the path for display. If pkg isn't set then |
| 71 | TMPDIR is stripped, otherwise PKGDEST/pkg is stripped. |
| 72 | """ |
| 73 | if pkg: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 74 | path = path.replace(os.path.join(d.getVar("PKGDEST"), pkg), "/") |
| 75 | return path.replace(d.getVar("TMPDIR"), "/").replace("//", "/") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 76 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 77 | QAPATHTEST[shebang-size] = "package_qa_check_shebang_size" |
| 78 | def package_qa_check_shebang_size(path, name, d, elf, messages): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 79 | import stat |
| 80 | if os.path.islink(path) or stat.S_ISFIFO(os.stat(path).st_mode) or elf: |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 81 | return |
| 82 | |
| 83 | try: |
| 84 | with open(path, 'rb') as f: |
| 85 | stanza = f.readline(130) |
| 86 | except IOError: |
| 87 | return |
| 88 | |
| 89 | if stanza.startswith(b'#!'): |
| 90 | #Shebang not found |
| 91 | try: |
| 92 | stanza = stanza.decode("utf-8") |
| 93 | except UnicodeDecodeError: |
| 94 | #If it is not a text file, it is not a script |
| 95 | return |
| 96 | |
| 97 | if len(stanza) > 129: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 98 | oe.qa.add_message(messages, "shebang-size", "%s: %s maximum shebang size exceeded, the maximum size is 128." % (name, package_qa_clean_path(path, d))) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 99 | return |
| 100 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 101 | QAPATHTEST[libexec] = "package_qa_check_libexec" |
| 102 | def package_qa_check_libexec(path,name, d, elf, messages): |
| 103 | |
| 104 | # Skip the case where the default is explicitly /usr/libexec |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 105 | libexec = d.getVar('libexecdir') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 106 | if libexec == "/usr/libexec": |
| 107 | return True |
| 108 | |
| 109 | if 'libexec' in path.split(os.path.sep): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 110 | oe.qa.add_message(messages, "libexec", "%s: %s is using libexec please relocate to %s" % (name, package_qa_clean_path(path, d), libexec)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 111 | return False |
| 112 | |
| 113 | return True |
| 114 | |
| 115 | QAPATHTEST[rpaths] = "package_qa_check_rpath" |
| 116 | def package_qa_check_rpath(file,name, d, elf, messages): |
| 117 | """ |
| 118 | Check for dangerous RPATHs |
| 119 | """ |
| 120 | if not elf: |
| 121 | return |
| 122 | |
| 123 | if os.path.islink(file): |
| 124 | return |
| 125 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 126 | bad_dirs = [d.getVar('BASE_WORKDIR'), d.getVar('STAGING_DIR_TARGET')] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 127 | |
| 128 | phdrs = elf.run_objdump("-p", d) |
| 129 | |
| 130 | import re |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 131 | rpath_re = re.compile(r"\s+RPATH\s+(.*)") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 132 | for line in phdrs.split("\n"): |
| 133 | m = rpath_re.match(line) |
| 134 | if m: |
| 135 | rpath = m.group(1) |
| 136 | for dir in bad_dirs: |
| 137 | if dir in rpath: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 138 | oe.qa.add_message(messages, "rpaths", "package %s contains bad RPATH %s in file %s" % (name, rpath, file)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 139 | |
| 140 | QAPATHTEST[useless-rpaths] = "package_qa_check_useless_rpaths" |
| 141 | def package_qa_check_useless_rpaths(file, name, d, elf, messages): |
| 142 | """ |
| 143 | Check for RPATHs that are useless but not dangerous |
| 144 | """ |
| 145 | def rpath_eq(a, b): |
| 146 | return os.path.normpath(a) == os.path.normpath(b) |
| 147 | |
| 148 | if not elf: |
| 149 | return |
| 150 | |
| 151 | if os.path.islink(file): |
| 152 | return |
| 153 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 154 | libdir = d.getVar("libdir") |
| 155 | base_libdir = d.getVar("base_libdir") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 156 | |
| 157 | phdrs = elf.run_objdump("-p", d) |
| 158 | |
| 159 | import re |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 160 | rpath_re = re.compile(r"\s+RPATH\s+(.*)") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 161 | for line in phdrs.split("\n"): |
| 162 | m = rpath_re.match(line) |
| 163 | if m: |
| 164 | rpath = m.group(1) |
| 165 | if rpath_eq(rpath, libdir) or rpath_eq(rpath, base_libdir): |
| 166 | # The dynamic linker searches both these places anyway. There is no point in |
| 167 | # looking there again. |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 168 | oe.qa.add_message(messages, "useless-rpaths", "%s: %s contains probably-redundant RPATH %s" % (name, package_qa_clean_path(file, d, name), rpath)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 169 | |
| 170 | QAPATHTEST[dev-so] = "package_qa_check_dev" |
| 171 | def package_qa_check_dev(path, name, d, elf, messages): |
| 172 | """ |
| 173 | Check for ".so" library symlinks in non-dev packages |
| 174 | """ |
| 175 | |
| 176 | if not name.endswith("-dev") and not name.endswith("-dbg") and not name.endswith("-ptest") and not name.startswith("nativesdk-") and path.endswith(".so") and os.path.islink(path): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 177 | oe.qa.add_message(messages, "dev-so", "non -dev/-dbg/nativesdk- package %s contains symlink .so '%s'" % \ |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 178 | (name, package_qa_clean_path(path, d, name))) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 179 | |
| 180 | QAPATHTEST[dev-elf] = "package_qa_check_dev_elf" |
| 181 | def package_qa_check_dev_elf(path, name, d, elf, messages): |
| 182 | """ |
| 183 | Check that -dev doesn't contain real shared libraries. The test has to |
| 184 | check that the file is not a link and is an ELF object as some recipes |
| 185 | install link-time .so files that are linker scripts. |
| 186 | """ |
| 187 | if name.endswith("-dev") and path.endswith(".so") and not os.path.islink(path) and elf: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 188 | oe.qa.add_message(messages, "dev-elf", "-dev package %s contains non-symlink .so '%s'" % \ |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 189 | (name, package_qa_clean_path(path, d, name))) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 190 | |
| 191 | QAPATHTEST[staticdev] = "package_qa_check_staticdev" |
| 192 | def package_qa_check_staticdev(path, name, d, elf, messages): |
| 193 | """ |
| 194 | Check for ".a" library in non-staticdev packages |
| 195 | There are a number of exceptions to this rule, -pic packages can contain |
| 196 | static libraries, the _nonshared.a belong with their -dev packages and |
| 197 | libgcc.a, libgcov.a will be skipped in their packages |
| 198 | """ |
| 199 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 200 | if not name.endswith("-pic") and not name.endswith("-staticdev") and not name.endswith("-ptest") and path.endswith(".a") and not path.endswith("_nonshared.a") and not '/usr/lib/debug-static/' in path and not '/.debug-static/' in path: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 201 | oe.qa.add_message(messages, "staticdev", "non -staticdev package contains static .a library: %s path '%s'" % \ |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 202 | (name, package_qa_clean_path(path,d, name))) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 203 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 204 | QAPATHTEST[mime] = "package_qa_check_mime" |
| 205 | def package_qa_check_mime(path, name, d, elf, messages): |
| 206 | """ |
| 207 | Check if package installs mime types to /usr/share/mime/packages |
| 208 | while no inheriting mime.bbclass |
| 209 | """ |
| 210 | |
| 211 | if d.getVar("datadir") + "/mime/packages" in path and path.endswith('.xml') and not bb.data.inherits_class("mime", d): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 212 | oe.qa.add_message(messages, "mime", "package contains mime types but does not inherit mime: %s path '%s'" % \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 213 | (name, package_qa_clean_path(path,d))) |
| 214 | |
| 215 | QAPATHTEST[mime-xdg] = "package_qa_check_mime_xdg" |
| 216 | def package_qa_check_mime_xdg(path, name, d, elf, messages): |
| 217 | """ |
| 218 | Check if package installs desktop file containing MimeType and requires |
| 219 | mime-types.bbclass to create /usr/share/applications/mimeinfo.cache |
| 220 | """ |
| 221 | |
| 222 | if d.getVar("datadir") + "/applications" in path and path.endswith('.desktop') and not bb.data.inherits_class("mime-xdg", d): |
| 223 | mime_type_found = False |
| 224 | try: |
| 225 | with open(path, 'r') as f: |
| 226 | for line in f.read().split('\n'): |
| 227 | if 'MimeType' in line: |
| 228 | mime_type_found = True |
| 229 | break; |
| 230 | except: |
| 231 | # At least libreoffice installs symlinks with absolute paths that are dangling here. |
| 232 | # We could implement some magic but for few (one) recipes it is not worth the effort so just warn: |
| 233 | wstr = "%s cannot open %s - is it a symlink with absolute path?\n" % (name, package_qa_clean_path(path,d)) |
| 234 | wstr += "Please check if (linked) file contains key 'MimeType'.\n" |
| 235 | pkgname = name |
| 236 | if name == d.getVar('PN'): |
| 237 | pkgname = '${PN}' |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 238 | wstr += "If yes: add \'inhert mime-xdg\' and \'MIME_XDG_PACKAGES += \"%s\"\' / if no add \'INSANE_SKIP:%s += \"mime-xdg\"\' to recipe." % (pkgname, pkgname) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 239 | oe.qa.add_message(messages, "mime-xdg", wstr) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 240 | if mime_type_found: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 241 | oe.qa.add_message(messages, "mime-xdg", "package contains desktop file with key 'MimeType' but does not inhert mime-xdg: %s path '%s'" % \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 242 | (name, package_qa_clean_path(path,d))) |
| 243 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 244 | def package_qa_check_libdir(d): |
| 245 | """ |
| 246 | Check for wrong library installation paths. For instance, catch |
| 247 | recipes installing /lib/bar.so when ${base_libdir}="lib32" or |
| 248 | installing in /usr/lib64 when ${libdir}="/usr/lib" |
| 249 | """ |
| 250 | import re |
| 251 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 252 | pkgdest = d.getVar('PKGDEST') |
| 253 | base_libdir = d.getVar("base_libdir") + os.sep |
| 254 | libdir = d.getVar("libdir") + os.sep |
| 255 | libexecdir = d.getVar("libexecdir") + os.sep |
| 256 | exec_prefix = d.getVar("exec_prefix") + os.sep |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 257 | |
| 258 | messages = [] |
| 259 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 260 | # The re's are purposely fuzzy, as some there are some .so.x.y.z files |
| 261 | # that don't follow the standard naming convention. It checks later |
| 262 | # that they are actual ELF files |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 263 | lib_re = re.compile(r"^/lib.+\.so(\..+)?$") |
| 264 | exec_re = re.compile(r"^%s.*/lib.+\.so(\..+)?$" % exec_prefix) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 265 | |
| 266 | for root, dirs, files in os.walk(pkgdest): |
| 267 | if root == pkgdest: |
| 268 | # Skip subdirectories for any packages with libdir in INSANE_SKIP |
| 269 | skippackages = [] |
| 270 | for package in dirs: |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 271 | if 'libdir' in (d.getVar('INSANE_SKIP:' + package) or "").split(): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 272 | bb.note("Package %s skipping libdir QA test" % (package)) |
| 273 | skippackages.append(package) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 274 | elif d.getVar('PACKAGE_DEBUG_SPLIT_STYLE') == 'debug-file-directory' and package.endswith("-dbg"): |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 275 | bb.note("Package %s skipping libdir QA test for PACKAGE_DEBUG_SPLIT_STYLE equals debug-file-directory" % (package)) |
| 276 | skippackages.append(package) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 277 | for package in skippackages: |
| 278 | dirs.remove(package) |
| 279 | for file in files: |
| 280 | full_path = os.path.join(root, file) |
| 281 | rel_path = os.path.relpath(full_path, pkgdest) |
| 282 | if os.sep in rel_path: |
| 283 | package, rel_path = rel_path.split(os.sep, 1) |
| 284 | rel_path = os.sep + rel_path |
| 285 | if lib_re.match(rel_path): |
| 286 | if base_libdir not in rel_path: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 287 | # make sure it's an actual ELF file |
| 288 | elf = oe.qa.ELFFile(full_path) |
| 289 | try: |
| 290 | elf.open() |
| 291 | messages.append("%s: found library in wrong location: %s" % (package, rel_path)) |
| 292 | except (oe.qa.NotELFFileError): |
| 293 | pass |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 294 | if exec_re.match(rel_path): |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 295 | if libdir not in rel_path and libexecdir not in rel_path: |
| 296 | # make sure it's an actual ELF file |
| 297 | elf = oe.qa.ELFFile(full_path) |
| 298 | try: |
| 299 | elf.open() |
| 300 | messages.append("%s: found library in wrong location: %s" % (package, rel_path)) |
| 301 | except (oe.qa.NotELFFileError): |
| 302 | pass |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 303 | |
| 304 | if messages: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 305 | oe.qa.handle_error("libdir", "\n".join(messages), d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 306 | |
| 307 | QAPATHTEST[debug-files] = "package_qa_check_dbg" |
| 308 | def package_qa_check_dbg(path, name, d, elf, messages): |
| 309 | """ |
| 310 | Check for ".debug" files or directories outside of the dbg package |
| 311 | """ |
| 312 | |
| 313 | if not "-dbg" in name and not "-ptest" in name: |
| 314 | if '.debug' in path.split(os.path.sep): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 315 | oe.qa.add_message(messages, "debug-files", "non debug package contains .debug directory: %s path %s" % \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 316 | (name, package_qa_clean_path(path,d))) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 317 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 318 | QAPATHTEST[arch] = "package_qa_check_arch" |
| 319 | def package_qa_check_arch(path,name,d, elf, messages): |
| 320 | """ |
| 321 | Check if archs are compatible |
| 322 | """ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 323 | import re, oe.elf |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 324 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 325 | if not elf: |
| 326 | return |
| 327 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 328 | target_os = d.getVar('HOST_OS') |
| 329 | target_arch = d.getVar('HOST_ARCH') |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 330 | provides = d.getVar('PROVIDES') |
| 331 | bpn = d.getVar('BPN') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 332 | |
| 333 | if target_arch == "allarch": |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 334 | pn = d.getVar('PN') |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 335 | oe.qa.add_message(messages, "arch", pn + ": Recipe inherits the allarch class, but has packaged architecture-specific binaries") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 336 | return |
| 337 | |
| 338 | # FIXME: Cross package confuse this check, so just skip them |
| 339 | for s in ['cross', 'nativesdk', 'cross-canadian']: |
| 340 | if bb.data.inherits_class(s, d): |
| 341 | return |
| 342 | |
| 343 | # avoid following links to /usr/bin (e.g. on udev builds) |
| 344 | # we will check the files pointed to anyway... |
| 345 | if os.path.islink(path): |
| 346 | return |
| 347 | |
| 348 | #if this will throw an exception, then fix the dict above |
| 349 | (machine, osabi, abiversion, littleendian, bits) \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 350 | = oe.elf.machine_dict(d)[target_os][target_arch] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 351 | |
| 352 | # Check the architecture and endiannes of the binary |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 353 | is_32 = (("virtual/kernel" in provides) or bb.data.inherits_class("module", d)) and \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 354 | (target_os == "linux-gnux32" or target_os == "linux-muslx32" or \ |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 355 | target_os == "linux-gnu_ilp32" or re.match(r'mips64.*32', d.getVar('DEFAULTTUNE'))) |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 356 | is_bpf = (oe.qa.elf_machine_to_string(elf.machine()) == "BPF") |
| 357 | if not ((machine == elf.machine()) or is_32 or is_bpf): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 358 | oe.qa.add_message(messages, "arch", "Architecture did not match (%s, expected %s) in %s" % \ |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 359 | (oe.qa.elf_machine_to_string(elf.machine()), oe.qa.elf_machine_to_string(machine), package_qa_clean_path(path, d, name))) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 360 | elif not ((bits == elf.abiSize()) or is_32 or is_bpf): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 361 | oe.qa.add_message(messages, "arch", "Bit size did not match (%d, expected %d) in %s" % \ |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 362 | (elf.abiSize(), bits, package_qa_clean_path(path, d, name))) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 363 | elif not ((littleendian == elf.isLittleEndian()) or is_bpf): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 364 | oe.qa.add_message(messages, "arch", "Endiannes did not match (%d, expected %d) in %s" % \ |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 365 | (elf.isLittleEndian(), littleendian, package_qa_clean_path(path,d, name))) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 366 | |
| 367 | QAPATHTEST[desktop] = "package_qa_check_desktop" |
| 368 | def package_qa_check_desktop(path, name, d, elf, messages): |
| 369 | """ |
| 370 | Run all desktop files through desktop-file-validate. |
| 371 | """ |
| 372 | if path.endswith(".desktop"): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 373 | desktop_file_validate = os.path.join(d.getVar('STAGING_BINDIR_NATIVE'),'desktop-file-validate') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 374 | output = os.popen("%s %s" % (desktop_file_validate, path)) |
| 375 | # This only produces output on errors |
| 376 | for l in output: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 377 | oe.qa.add_message(messages, "desktop", "Desktop file issue: " + l.strip()) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 378 | |
| 379 | QAPATHTEST[textrel] = "package_qa_textrel" |
| 380 | def package_qa_textrel(path, name, d, elf, messages): |
| 381 | """ |
| 382 | Check if the binary contains relocations in .text |
| 383 | """ |
| 384 | |
| 385 | if not elf: |
| 386 | return |
| 387 | |
| 388 | if os.path.islink(path): |
| 389 | return |
| 390 | |
| 391 | phdrs = elf.run_objdump("-p", d) |
| 392 | sane = True |
| 393 | |
| 394 | import re |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 395 | textrel_re = re.compile(r"\s+TEXTREL\s+") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 396 | for line in phdrs.split("\n"): |
| 397 | if textrel_re.match(line): |
| 398 | sane = False |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 399 | break |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 400 | |
| 401 | if not sane: |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 402 | path = package_qa_clean_path(path, d, name) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 403 | oe.qa.add_message(messages, "textrel", "%s: ELF binary %s has relocations in .text" % (name, path)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 404 | |
| 405 | QAPATHTEST[ldflags] = "package_qa_hash_style" |
| 406 | def package_qa_hash_style(path, name, d, elf, messages): |
| 407 | """ |
| 408 | Check if the binary has the right hash style... |
| 409 | """ |
| 410 | |
| 411 | if not elf: |
| 412 | return |
| 413 | |
| 414 | if os.path.islink(path): |
| 415 | return |
| 416 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 417 | gnu_hash = "--hash-style=gnu" in d.getVar('LDFLAGS') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 418 | if not gnu_hash: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 419 | gnu_hash = "--hash-style=both" in d.getVar('LDFLAGS') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 420 | if not gnu_hash: |
| 421 | return |
| 422 | |
| 423 | sane = False |
| 424 | has_syms = False |
| 425 | |
| 426 | phdrs = elf.run_objdump("-p", d) |
| 427 | |
| 428 | # If this binary has symbols, we expect it to have GNU_HASH too. |
| 429 | for line in phdrs.split("\n"): |
| 430 | if "SYMTAB" in line: |
| 431 | has_syms = True |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 432 | if "GNU_HASH" in line or "MIPS_XHASH" in line: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 433 | sane = True |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 434 | if ("[mips32]" in line or "[mips64]" in line) and d.getVar('TCLIBC') == "musl": |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 435 | sane = True |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 436 | if has_syms and not sane: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 437 | path = package_qa_clean_path(path, d, name) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 438 | oe.qa.add_message(messages, "ldflags", "File %s in package %s doesn't have GNU_HASH (didn't pass LDFLAGS?)" % (path, name)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 439 | |
| 440 | |
| 441 | QAPATHTEST[buildpaths] = "package_qa_check_buildpaths" |
| 442 | def package_qa_check_buildpaths(path, name, d, elf, messages): |
| 443 | """ |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 444 | Check for build paths inside target files and error if paths are not |
| 445 | explicitly ignored. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 446 | """ |
| 447 | # Ignore .debug files, not interesting |
| 448 | if path.find(".debug") != -1: |
| 449 | return |
| 450 | |
| 451 | # Ignore symlinks |
| 452 | if os.path.islink(path): |
| 453 | return |
| 454 | |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 455 | tmpdir = bytes(d.getVar('TMPDIR'), encoding="utf-8") |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 456 | with open(path, 'rb') as f: |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 457 | file_content = f.read() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 458 | if tmpdir in file_content: |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 459 | trimmed = path.replace(os.path.join (d.getVar("PKGDEST"), name), "") |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 460 | oe.qa.add_message(messages, "buildpaths", "File %s in package %s contains reference to TMPDIR" % (trimmed, name)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 461 | |
| 462 | |
| 463 | QAPATHTEST[xorg-driver-abi] = "package_qa_check_xorg_driver_abi" |
| 464 | def package_qa_check_xorg_driver_abi(path, name, d, elf, messages): |
| 465 | """ |
| 466 | Check that all packages containing Xorg drivers have ABI dependencies |
| 467 | """ |
| 468 | |
| 469 | # Skip dev, dbg or nativesdk packages |
| 470 | if name.endswith("-dev") or name.endswith("-dbg") or name.startswith("nativesdk-"): |
| 471 | return |
| 472 | |
| 473 | driverdir = d.expand("${libdir}/xorg/modules/drivers/") |
| 474 | if driverdir in path and path.endswith(".so"): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 475 | mlprefix = d.getVar('MLPREFIX') or '' |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 476 | for rdep in bb.utils.explode_deps(d.getVar('RDEPENDS:' + name) or ""): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 477 | if rdep.startswith("%sxorg-abi-" % mlprefix): |
| 478 | return |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 479 | oe.qa.add_message(messages, "xorg-driver-abi", "Package %s contains Xorg driver (%s) but no xorg-abi- dependencies" % (name, os.path.basename(path))) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 480 | |
| 481 | QAPATHTEST[infodir] = "package_qa_check_infodir" |
| 482 | def package_qa_check_infodir(path, name, d, elf, messages): |
| 483 | """ |
| 484 | Check that /usr/share/info/dir isn't shipped in a particular package |
| 485 | """ |
| 486 | infodir = d.expand("${infodir}/dir") |
| 487 | |
| 488 | if infodir in path: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 489 | oe.qa.add_message(messages, "infodir", "The /usr/share/info/dir file is not meant to be shipped in a particular package.") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 490 | |
| 491 | QAPATHTEST[symlink-to-sysroot] = "package_qa_check_symlink_to_sysroot" |
| 492 | def package_qa_check_symlink_to_sysroot(path, name, d, elf, messages): |
| 493 | """ |
| 494 | Check that the package doesn't contain any absolute symlinks to the sysroot. |
| 495 | """ |
| 496 | if os.path.islink(path): |
| 497 | target = os.readlink(path) |
| 498 | if os.path.isabs(target): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 499 | tmpdir = d.getVar('TMPDIR') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 500 | if target.startswith(tmpdir): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 501 | trimmed = path.replace(os.path.join (d.getVar("PKGDEST"), name), "") |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 502 | oe.qa.add_message(messages, "symlink-to-sysroot", "Symlink %s in %s points to TMPDIR" % (trimmed, name)) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 503 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 504 | # Check license variables |
| 505 | do_populate_lic[postfuncs] += "populate_lic_qa_checksum" |
| 506 | python populate_lic_qa_checksum() { |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 507 | """ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 508 | Check for changes in the license files. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 509 | """ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 510 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 511 | lic_files = d.getVar('LIC_FILES_CHKSUM') or '' |
| 512 | lic = d.getVar('LICENSE') |
| 513 | pn = d.getVar('PN') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 514 | |
| 515 | if lic == "CLOSED": |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 516 | return |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 517 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 518 | if not lic_files and d.getVar('SRC_URI'): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 519 | oe.qa.handle_error("license-checksum", pn + ": Recipe file fetches files and does not have license file information (LIC_FILES_CHKSUM)", d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 520 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 521 | srcdir = d.getVar('S') |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 522 | corebase_licensefile = d.getVar('COREBASE') + "/LICENSE" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 523 | for url in lic_files.split(): |
| 524 | try: |
| 525 | (type, host, path, user, pswd, parm) = bb.fetch.decodeurl(url) |
| 526 | except bb.fetch.MalformedUrl: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 527 | oe.qa.handle_error("license-checksum", pn + ": LIC_FILES_CHKSUM contains an invalid URL: " + url, d) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 528 | continue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 529 | srclicfile = os.path.join(srcdir, path) |
| 530 | if not os.path.isfile(srclicfile): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 531 | oe.qa.handle_error("license-checksum", pn + ": LIC_FILES_CHKSUM points to an invalid file: " + srclicfile, d) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 532 | continue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 533 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 534 | if (srclicfile == corebase_licensefile): |
| 535 | bb.warn("${COREBASE}/LICENSE is not a valid license file, please use '${COMMON_LICENSE_DIR}/MIT' for a MIT License file in LIC_FILES_CHKSUM. This will become an error in the future") |
| 536 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 537 | recipemd5 = parm.get('md5', '') |
| 538 | beginline, endline = 0, 0 |
| 539 | if 'beginline' in parm: |
| 540 | beginline = int(parm['beginline']) |
| 541 | if 'endline' in parm: |
| 542 | endline = int(parm['endline']) |
| 543 | |
| 544 | if (not beginline) and (not endline): |
| 545 | md5chksum = bb.utils.md5_file(srclicfile) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 546 | with open(srclicfile, 'r', errors='replace') as f: |
| 547 | license = f.read().splitlines() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 548 | else: |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 549 | with open(srclicfile, 'rb') as f: |
| 550 | import hashlib |
| 551 | lineno = 0 |
| 552 | license = [] |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 553 | m = hashlib.new('MD5', usedforsecurity=False) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 554 | for line in f: |
| 555 | lineno += 1 |
| 556 | if (lineno >= beginline): |
| 557 | if ((lineno <= endline) or not endline): |
| 558 | m.update(line) |
| 559 | license.append(line.decode('utf-8', errors='replace').rstrip()) |
| 560 | else: |
| 561 | break |
| 562 | md5chksum = m.hexdigest() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 563 | if recipemd5 == md5chksum: |
| 564 | bb.note (pn + ": md5 checksum matched for ", url) |
| 565 | else: |
| 566 | if recipemd5: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 567 | msg = pn + ": The LIC_FILES_CHKSUM does not match for " + url |
| 568 | msg = msg + "\n" + pn + ": The new md5 checksum is " + md5chksum |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 569 | max_lines = int(d.getVar('QA_MAX_LICENSE_LINES') or 20) |
| 570 | if not license or license[-1] != '': |
| 571 | # Ensure that our license text ends with a line break |
| 572 | # (will be added with join() below). |
| 573 | license.append('') |
| 574 | remove = len(license) - max_lines |
| 575 | if remove > 0: |
| 576 | start = max_lines // 2 |
| 577 | end = start + remove - 1 |
| 578 | del license[start:end] |
| 579 | license.insert(start, '...') |
| 580 | msg = msg + "\n" + pn + ": Here is the selected license text:" + \ |
| 581 | "\n" + \ |
| 582 | "{:v^70}".format(" beginline=%d " % beginline if beginline else "") + \ |
| 583 | "\n" + "\n".join(license) + \ |
| 584 | "{:^^70}".format(" endline=%d " % endline if endline else "") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 585 | if beginline: |
| 586 | if endline: |
| 587 | srcfiledesc = "%s (lines %d through to %d)" % (srclicfile, beginline, endline) |
| 588 | else: |
| 589 | srcfiledesc = "%s (beginning on line %d)" % (srclicfile, beginline) |
| 590 | elif endline: |
| 591 | srcfiledesc = "%s (ending on line %d)" % (srclicfile, endline) |
| 592 | else: |
| 593 | srcfiledesc = srclicfile |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 594 | msg = msg + "\n" + pn + ": Check if the license information has changed in %s to verify that the LICENSE value \"%s\" remains valid" % (srcfiledesc, lic) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 595 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 596 | else: |
| 597 | msg = pn + ": LIC_FILES_CHKSUM is not specified for " + url |
| 598 | msg = msg + "\n" + pn + ": The md5 checksum is " + md5chksum |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 599 | oe.qa.handle_error("license-checksum", msg, d) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 600 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 601 | oe.qa.exit_if_errors(d) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 602 | } |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 603 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 604 | def qa_check_staged(path,d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 605 | """ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 606 | Check staged la and pc files for common problems like references to the work |
| 607 | directory. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 608 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 609 | As this is run after every stage we should be able to find the one |
| 610 | responsible for the errors easily even if we look at every .pc and .la file. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 611 | """ |
| 612 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 613 | tmpdir = d.getVar('TMPDIR') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 614 | workdir = os.path.join(tmpdir, "work") |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 615 | recipesysroot = d.getVar("RECIPE_SYSROOT") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 616 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 617 | if bb.data.inherits_class("native", d) or bb.data.inherits_class("cross", d): |
| 618 | pkgconfigcheck = workdir |
| 619 | else: |
| 620 | pkgconfigcheck = tmpdir |
| 621 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 622 | skip = (d.getVar('INSANE_SKIP') or "").split() |
| 623 | skip_la = False |
| 624 | if 'la' in skip: |
| 625 | bb.note("Recipe %s skipping qa checking: la" % d.getVar('PN')) |
| 626 | skip_la = True |
| 627 | |
| 628 | skip_pkgconfig = False |
| 629 | if 'pkgconfig' in skip: |
| 630 | bb.note("Recipe %s skipping qa checking: pkgconfig" % d.getVar('PN')) |
| 631 | skip_pkgconfig = True |
| 632 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 633 | # find all .la and .pc files |
| 634 | # read the content |
| 635 | # and check for stuff that looks wrong |
| 636 | for root, dirs, files in os.walk(path): |
| 637 | for file in files: |
| 638 | path = os.path.join(root,file) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 639 | if file.endswith(".la") and not skip_la: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 640 | with open(path) as f: |
| 641 | file_content = f.read() |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 642 | file_content = file_content.replace(recipesysroot, "") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 643 | if workdir in file_content: |
| 644 | error_msg = "%s failed sanity test (workdir) in path %s" % (file,root) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 645 | oe.qa.handle_error("la", error_msg, d) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 646 | elif file.endswith(".pc") and not skip_pkgconfig: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 647 | with open(path) as f: |
| 648 | file_content = f.read() |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 649 | file_content = file_content.replace(recipesysroot, "") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 650 | if pkgconfigcheck in file_content: |
| 651 | error_msg = "%s failed sanity test (tmpdir) in path %s" % (file,root) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 652 | oe.qa.handle_error("pkgconfig", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 653 | |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 654 | # Run all package-wide warnfuncs and errorfuncs |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 655 | def package_qa_package(warnfuncs, errorfuncs, package, d): |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 656 | warnings = {} |
| 657 | errors = {} |
| 658 | |
| 659 | for func in warnfuncs: |
| 660 | func(package, d, warnings) |
| 661 | for func in errorfuncs: |
| 662 | func(package, d, errors) |
| 663 | |
| 664 | for w in warnings: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 665 | oe.qa.handle_error(w, warnings[w], d) |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 666 | for e in errors: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 667 | oe.qa.handle_error(e, errors[e], d) |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 668 | |
| 669 | return len(errors) == 0 |
| 670 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 671 | # Run all recipe-wide warnfuncs and errorfuncs |
| 672 | def package_qa_recipe(warnfuncs, errorfuncs, pn, d): |
| 673 | warnings = {} |
| 674 | errors = {} |
| 675 | |
| 676 | for func in warnfuncs: |
| 677 | func(pn, d, warnings) |
| 678 | for func in errorfuncs: |
| 679 | func(pn, d, errors) |
| 680 | |
| 681 | for w in warnings: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 682 | oe.qa.handle_error(w, warnings[w], d) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 683 | for e in errors: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 684 | oe.qa.handle_error(e, errors[e], d) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 685 | |
| 686 | return len(errors) == 0 |
| 687 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 688 | def prepopulate_objdump_p(elf, d): |
| 689 | output = elf.run_objdump("-p", d) |
| 690 | return (elf.name, output) |
| 691 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 692 | # Walk over all files in a directory and call func |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 693 | def package_qa_walk(warnfuncs, errorfuncs, package, d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 694 | #if this will throw an exception, then fix the dict above |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 695 | target_os = d.getVar('HOST_OS') |
| 696 | target_arch = d.getVar('HOST_ARCH') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 697 | |
| 698 | warnings = {} |
| 699 | errors = {} |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 700 | elves = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 701 | for path in pkgfiles[package]: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 702 | elf = None |
| 703 | if os.path.isfile(path): |
| 704 | elf = oe.qa.ELFFile(path) |
| 705 | try: |
| 706 | elf.open() |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 707 | elf.close() |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 708 | except oe.qa.NotELFFileError: |
| 709 | elf = None |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 710 | if elf: |
| 711 | elves[path] = elf |
| 712 | |
| 713 | results = oe.utils.multiprocess_launch(prepopulate_objdump_p, elves.values(), d, extraargs=(d,)) |
| 714 | for item in results: |
| 715 | elves[item[0]].set_objdump("-p", item[1]) |
| 716 | |
| 717 | for path in pkgfiles[package]: |
| 718 | if path in elves: |
| 719 | elves[path].open() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 720 | for func in warnfuncs: |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 721 | func(path, package, d, elves.get(path), warnings) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 722 | for func in errorfuncs: |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 723 | func(path, package, d, elves.get(path), errors) |
| 724 | if path in elves: |
| 725 | elves[path].close() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 726 | |
| 727 | for w in warnings: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 728 | oe.qa.handle_error(w, warnings[w], d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 729 | for e in errors: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 730 | oe.qa.handle_error(e, errors[e], d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 731 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 732 | def package_qa_check_rdepends(pkg, pkgdest, skip, taskdeps, packages, d): |
| 733 | # Don't do this check for kernel/module recipes, there aren't too many debug/development |
| 734 | # packages and you can get false positives e.g. on kernel-module-lirc-dev |
| 735 | if bb.data.inherits_class("kernel", d) or bb.data.inherits_class("module-base", d): |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 736 | return |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 737 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 738 | if not "-dbg" in pkg and not "packagegroup-" in pkg and not "-image" in pkg: |
| 739 | localdata = bb.data.createCopy(d) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 740 | localdata.setVar('OVERRIDES', localdata.getVar('OVERRIDES') + ':' + pkg) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 741 | |
| 742 | # Now check the RDEPENDS |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 743 | rdepends = bb.utils.explode_deps(localdata.getVar('RDEPENDS') or "") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 744 | |
| 745 | # Now do the sanity check!!! |
| 746 | if "build-deps" not in skip: |
| 747 | for rdepend in rdepends: |
| 748 | if "-dbg" in rdepend and "debug-deps" not in skip: |
| 749 | error_msg = "%s rdepends on %s" % (pkg,rdepend) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 750 | oe.qa.handle_error("debug-deps", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 751 | if (not "-dev" in pkg and not "-staticdev" in pkg) and rdepend.endswith("-dev") and "dev-deps" not in skip: |
| 752 | error_msg = "%s rdepends on %s" % (pkg, rdepend) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 753 | oe.qa.handle_error("dev-deps", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 754 | if rdepend not in packages: |
| 755 | rdep_data = oe.packagedata.read_subpkgdata(rdepend, d) |
| 756 | if rdep_data and 'PN' in rdep_data and rdep_data['PN'] in taskdeps: |
| 757 | continue |
| 758 | if not rdep_data or not 'PN' in rdep_data: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 759 | pkgdata_dir = d.getVar("PKGDATA_DIR") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 760 | try: |
| 761 | possibles = os.listdir("%s/runtime-rprovides/%s/" % (pkgdata_dir, rdepend)) |
| 762 | except OSError: |
| 763 | possibles = [] |
| 764 | for p in possibles: |
| 765 | rdep_data = oe.packagedata.read_subpkgdata(p, d) |
| 766 | if rdep_data and 'PN' in rdep_data and rdep_data['PN'] in taskdeps: |
| 767 | break |
| 768 | if rdep_data and 'PN' in rdep_data and rdep_data['PN'] in taskdeps: |
| 769 | continue |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 770 | if rdep_data and 'PN' in rdep_data: |
| 771 | error_msg = "%s rdepends on %s, but it isn't a build dependency, missing %s in DEPENDS or PACKAGECONFIG?" % (pkg, rdepend, rdep_data['PN']) |
| 772 | else: |
| 773 | error_msg = "%s rdepends on %s, but it isn't a build dependency?" % (pkg, rdepend) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 774 | oe.qa.handle_error("build-deps", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 775 | |
| 776 | if "file-rdeps" not in skip: |
| 777 | ignored_file_rdeps = set(['/bin/sh', '/usr/bin/env', 'rtld(GNU_HASH)']) |
| 778 | if bb.data.inherits_class('nativesdk', d): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 779 | ignored_file_rdeps |= set(['/bin/bash', '/usr/bin/perl', 'perl']) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 780 | # For Saving the FILERDEPENDS |
| 781 | filerdepends = {} |
| 782 | rdep_data = oe.packagedata.read_subpkgdata(pkg, d) |
| 783 | for key in rdep_data: |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 784 | if key.startswith("FILERDEPENDS:"): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 785 | for subkey in bb.utils.explode_deps(rdep_data[key]): |
| 786 | if subkey not in ignored_file_rdeps and \ |
| 787 | not subkey.startswith('perl('): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 788 | # We already know it starts with FILERDEPENDS_ |
| 789 | filerdepends[subkey] = key[13:] |
| 790 | |
| 791 | if filerdepends: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 792 | done = rdepends[:] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 793 | # Add the rprovides of itself |
| 794 | if pkg not in done: |
| 795 | done.insert(0, pkg) |
| 796 | |
| 797 | # The python is not a package, but python-core provides it, so |
| 798 | # skip checking /usr/bin/python if python is in the rdeps, in |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 799 | # case there is a RDEPENDS:pkg = "python" in the recipe. |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 800 | for py in [ d.getVar('MLPREFIX') + "python", "python" ]: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 801 | if py in done: |
| 802 | filerdepends.pop("/usr/bin/python",None) |
| 803 | done.remove(py) |
| 804 | for rdep in done: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 805 | # The file dependencies may contain package names, e.g., |
| 806 | # perl |
| 807 | filerdepends.pop(rdep,None) |
| 808 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 809 | # For Saving the FILERPROVIDES, RPROVIDES and FILES_INFO |
| 810 | rdep_data = oe.packagedata.read_subpkgdata(rdep, d) |
| 811 | for key in rdep_data: |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 812 | if key.startswith("FILERPROVIDES:") or key.startswith("RPROVIDES:"): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 813 | for subkey in bb.utils.explode_deps(rdep_data[key]): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 814 | filerdepends.pop(subkey,None) |
| 815 | # Add the files list to the rprovides |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 816 | if key.startswith("FILES_INFO:"): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 817 | # Use eval() to make it as a dict |
| 818 | for subkey in eval(rdep_data[key]): |
| 819 | filerdepends.pop(subkey,None) |
| 820 | if not filerdepends: |
| 821 | # Break if all the file rdepends are met |
| 822 | break |
| 823 | if filerdepends: |
| 824 | for key in filerdepends: |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 825 | error_msg = "%s contained in package %s requires %s, but no providers found in RDEPENDS:%s?" % \ |
| 826 | (filerdepends[key].replace(":%s" % pkg, "").replace("@underscore@", "_"), pkg, key, pkg) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 827 | oe.qa.handle_error("file-rdeps", error_msg, d) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 828 | package_qa_check_rdepends[vardepsexclude] = "OVERRIDES" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 829 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 830 | def package_qa_check_deps(pkg, pkgdest, d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 831 | |
| 832 | localdata = bb.data.createCopy(d) |
| 833 | localdata.setVar('OVERRIDES', pkg) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 834 | |
| 835 | def check_valid_deps(var): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 836 | try: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 837 | rvar = bb.utils.explode_dep_versions2(localdata.getVar(var) or "") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 838 | except ValueError as e: |
Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame] | 839 | bb.fatal("%s:%s: %s" % (var, pkg, e)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 840 | for dep in rvar: |
| 841 | for v in rvar[dep]: |
| 842 | if v and not v.startswith(('< ', '= ', '> ', '<= ', '>=')): |
Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame] | 843 | error_msg = "%s:%s is invalid: %s (%s) only comparisons <, =, >, <=, and >= are allowed" % (var, pkg, dep, v) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 844 | oe.qa.handle_error("dep-cmp", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 845 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 846 | check_valid_deps('RDEPENDS') |
| 847 | check_valid_deps('RRECOMMENDS') |
| 848 | check_valid_deps('RSUGGESTS') |
| 849 | check_valid_deps('RPROVIDES') |
| 850 | check_valid_deps('RREPLACES') |
| 851 | check_valid_deps('RCONFLICTS') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 852 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 853 | QAPKGTEST[usrmerge] = "package_qa_check_usrmerge" |
| 854 | def package_qa_check_usrmerge(pkg, d, messages): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 855 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 856 | pkgdest = d.getVar('PKGDEST') |
| 857 | pkg_dir = pkgdest + os.sep + pkg + os.sep |
| 858 | merged_dirs = ['bin', 'sbin', 'lib'] + d.getVar('MULTILIB_VARIANTS').split() |
| 859 | for f in merged_dirs: |
| 860 | if os.path.exists(pkg_dir + f) and not os.path.islink(pkg_dir + f): |
| 861 | msg = "%s package is not obeying usrmerge distro feature. /%s should be relocated to /usr." % (pkg, f) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 862 | oe.qa.add_message(messages, "usrmerge", msg) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 863 | return False |
| 864 | return True |
| 865 | |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 866 | QAPKGTEST[perllocalpod] = "package_qa_check_perllocalpod" |
| 867 | def package_qa_check_perllocalpod(pkg, d, messages): |
| 868 | """ |
| 869 | Check that the recipe didn't ship a perlocal.pod file, which shouldn't be |
| 870 | installed in a distribution package. cpan.bbclass sets NO_PERLLOCAL=1 to |
| 871 | handle this for most recipes. |
| 872 | """ |
| 873 | import glob |
| 874 | pkgd = oe.path.join(d.getVar('PKGDEST'), pkg) |
| 875 | podpath = oe.path.join(pkgd, d.getVar("libdir"), "perl*", "*", "*", "perllocal.pod") |
| 876 | |
| 877 | matches = glob.glob(podpath) |
| 878 | if matches: |
| 879 | matches = [package_qa_clean_path(path, d, pkg) for path in matches] |
| 880 | msg = "%s contains perllocal.pod (%s), should not be installed" % (pkg, " ".join(matches)) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 881 | oe.qa.add_message(messages, "perllocalpod", msg) |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 882 | |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 883 | QAPKGTEST[expanded-d] = "package_qa_check_expanded_d" |
| 884 | def package_qa_check_expanded_d(package, d, messages): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 885 | """ |
| 886 | Check for the expanded D (${D}) value in pkg_* and FILES |
| 887 | variables, warn the user to use it correctly. |
| 888 | """ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 889 | sane = True |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 890 | expanded_d = d.getVar('D') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 891 | |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 892 | for var in 'FILES','pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm': |
Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame] | 893 | bbvar = d.getVar(var + ":" + package) or "" |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 894 | if expanded_d in bbvar: |
| 895 | if var == 'FILES': |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 896 | oe.qa.add_message(messages, "expanded-d", "FILES in %s recipe should not contain the ${D} variable as it references the local build directory not the target filesystem, best solution is to remove the ${D} reference" % package) |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 897 | sane = False |
| 898 | else: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 899 | oe.qa.add_message(messages, "expanded-d", "%s in %s recipe contains ${D}, it should be replaced by $D instead" % (var, package)) |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 900 | sane = False |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 901 | return sane |
| 902 | |
Andrew Geissler | 1e34c2d | 2020-05-29 16:02:59 -0500 | [diff] [blame] | 903 | QAPKGTEST[unlisted-pkg-lics] = "package_qa_check_unlisted_pkg_lics" |
| 904 | def package_qa_check_unlisted_pkg_lics(package, d, messages): |
| 905 | """ |
| 906 | Check that all licenses for a package are among the licenses for the recipe. |
| 907 | """ |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 908 | pkg_lics = d.getVar('LICENSE:' + package) |
Andrew Geissler | 1e34c2d | 2020-05-29 16:02:59 -0500 | [diff] [blame] | 909 | if not pkg_lics: |
| 910 | return True |
| 911 | |
| 912 | recipe_lics_set = oe.license.list_licenses(d.getVar('LICENSE')) |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 913 | package_lics = oe.license.list_licenses(pkg_lics) |
| 914 | unlisted = package_lics - recipe_lics_set |
| 915 | if unlisted: |
| 916 | oe.qa.add_message(messages, "unlisted-pkg-lics", |
| 917 | "LICENSE:%s includes licenses (%s) that are not " |
| 918 | "listed in LICENSE" % (package, ' '.join(unlisted))) |
| 919 | return False |
| 920 | obsolete = set(oe.license.obsolete_license_list()) & package_lics - recipe_lics_set |
| 921 | if obsolete: |
| 922 | oe.qa.add_message(messages, "obsolete-license", |
| 923 | "LICENSE:%s includes obsolete licenses %s" % (package, ' '.join(obsolete))) |
| 924 | return False |
| 925 | return True |
Andrew Geissler | 1e34c2d | 2020-05-29 16:02:59 -0500 | [diff] [blame] | 926 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 927 | QAPKGTEST[empty-dirs] = "package_qa_check_empty_dirs" |
| 928 | def package_qa_check_empty_dirs(pkg, d, messages): |
| 929 | """ |
| 930 | Check for the existence of files in directories that are expected to be |
| 931 | empty. |
| 932 | """ |
| 933 | |
| 934 | pkgd = oe.path.join(d.getVar('PKGDEST'), pkg) |
| 935 | for dir in (d.getVar('QA_EMPTY_DIRS') or "").split(): |
| 936 | empty_dir = oe.path.join(pkgd, dir) |
| 937 | if os.path.exists(empty_dir) and os.listdir(empty_dir): |
| 938 | recommendation = (d.getVar('QA_EMPTY_DIRS_RECOMMENDATION:' + dir) or |
| 939 | "but it is expected to be empty") |
| 940 | msg = "%s installs files in %s, %s" % (pkg, dir, recommendation) |
| 941 | oe.qa.add_message(messages, "empty-dirs", msg) |
| 942 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 943 | def package_qa_check_encoding(keys, encode, d): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 944 | def check_encoding(key, enc): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 945 | sane = True |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 946 | value = d.getVar(key) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 947 | if value: |
| 948 | try: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 949 | s = value.encode(enc) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 950 | except UnicodeDecodeError as e: |
| 951 | error_msg = "%s has non %s characters" % (key,enc) |
| 952 | sane = False |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 953 | oe.qa.handle_error("invalid-chars", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 954 | return sane |
| 955 | |
| 956 | for key in keys: |
| 957 | sane = check_encoding(key, encode) |
| 958 | if not sane: |
| 959 | break |
| 960 | |
| 961 | HOST_USER_UID := "${@os.getuid()}" |
| 962 | HOST_USER_GID := "${@os.getgid()}" |
| 963 | |
| 964 | QAPATHTEST[host-user-contaminated] = "package_qa_check_host_user" |
| 965 | def package_qa_check_host_user(path, name, d, elf, messages): |
| 966 | """Check for paths outside of /home which are owned by the user running bitbake.""" |
| 967 | |
| 968 | if not os.path.lexists(path): |
| 969 | return |
| 970 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 971 | dest = d.getVar('PKGDEST') |
| 972 | pn = d.getVar('PN') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 973 | home = os.path.join(dest, 'home') |
| 974 | if path == home or path.startswith(home + os.sep): |
| 975 | return |
| 976 | |
| 977 | try: |
| 978 | stat = os.lstat(path) |
| 979 | except OSError as exc: |
| 980 | import errno |
| 981 | if exc.errno != errno.ENOENT: |
| 982 | raise |
| 983 | else: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 984 | check_uid = int(d.getVar('HOST_USER_UID')) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 985 | if stat.st_uid == check_uid: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 986 | oe.qa.add_message(messages, "host-user-contaminated", "%s: %s is owned by uid %d, which is the same as the user running bitbake. This may be due to host contamination" % (pn, package_qa_clean_path(path, d, name), check_uid)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 987 | return False |
| 988 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 989 | check_gid = int(d.getVar('HOST_USER_GID')) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 990 | if stat.st_gid == check_gid: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 991 | oe.qa.add_message(messages, "host-user-contaminated", "%s: %s is owned by gid %d, which is the same as the user running bitbake. This may be due to host contamination" % (pn, package_qa_clean_path(path, d, name), check_gid)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 992 | return False |
| 993 | return True |
| 994 | |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 995 | QARECIPETEST[unhandled-features-check] = "package_qa_check_unhandled_features_check" |
| 996 | def package_qa_check_unhandled_features_check(pn, d, messages): |
| 997 | if not bb.data.inherits_class('features_check', d): |
| 998 | var_set = False |
| 999 | for kind in ['DISTRO', 'MACHINE', 'COMBINED']: |
| 1000 | for var in ['ANY_OF_' + kind + '_FEATURES', 'REQUIRED_' + kind + '_FEATURES', 'CONFLICT_' + kind + '_FEATURES']: |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 1001 | if d.getVar(var) is not None or d.hasOverrides(var): |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 1002 | var_set = True |
| 1003 | if var_set: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1004 | oe.qa.handle_error("unhandled-features-check", "%s: recipe doesn't inherit features_check" % pn, d) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1005 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1006 | QARECIPETEST[missing-update-alternatives] = "package_qa_check_missing_update_alternatives" |
| 1007 | def package_qa_check_missing_update_alternatives(pn, d, messages): |
| 1008 | # Look at all packages and find out if any of those sets ALTERNATIVE variable |
| 1009 | # without inheriting update-alternatives class |
| 1010 | for pkg in (d.getVar('PACKAGES') or '').split(): |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1011 | if d.getVar('ALTERNATIVE:%s' % pkg) and not bb.data.inherits_class('update-alternatives', d): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1012 | oe.qa.handle_error("missing-update-alternatives", "%s: recipe defines ALTERNATIVE:%s but doesn't inherit update-alternatives. This might fail during do_rootfs later!" % (pn, pkg), d) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1013 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1014 | # The PACKAGE FUNC to scan each package |
| 1015 | python do_package_qa () { |
| 1016 | import subprocess |
| 1017 | import oe.packagedata |
| 1018 | |
| 1019 | bb.note("DO PACKAGE QA") |
| 1020 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 1021 | main_lic = d.getVar('LICENSE') |
| 1022 | |
| 1023 | # Check for obsolete license references in main LICENSE (packages are checked below for any changes) |
| 1024 | main_licenses = oe.license.list_licenses(d.getVar('LICENSE')) |
| 1025 | obsolete = set(oe.license.obsolete_license_list()) & main_licenses |
| 1026 | if obsolete: |
| 1027 | oe.qa.handle_error("obsolete-license", "Recipe LICENSE includes obsolete licenses %s" % ' '.join(obsolete), d) |
| 1028 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1029 | bb.build.exec_func("read_subpackage_metadata", d) |
| 1030 | |
| 1031 | # Check non UTF-8 characters on recipe's metadata |
| 1032 | package_qa_check_encoding(['DESCRIPTION', 'SUMMARY', 'LICENSE', 'SECTION'], 'utf-8', d) |
| 1033 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1034 | logdir = d.getVar('T') |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1035 | pn = d.getVar('PN') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1036 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1037 | # Scan the packages... |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1038 | pkgdest = d.getVar('PKGDEST') |
| 1039 | packages = set((d.getVar('PACKAGES') or '').split()) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1040 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1041 | global pkgfiles |
| 1042 | pkgfiles = {} |
| 1043 | for pkg in packages: |
| 1044 | pkgfiles[pkg] = [] |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 1045 | pkgdir = os.path.join(pkgdest, pkg) |
| 1046 | for walkroot, dirs, files in os.walk(pkgdir): |
| 1047 | # Don't walk into top-level CONTROL or DEBIAN directories as these |
| 1048 | # are temporary directories created by do_package. |
| 1049 | if walkroot == pkgdir: |
| 1050 | for control in ("CONTROL", "DEBIAN"): |
| 1051 | if control in dirs: |
| 1052 | dirs.remove(control) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1053 | for file in files: |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1054 | pkgfiles[pkg].append(os.path.join(walkroot, file)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1055 | |
| 1056 | # no packages should be scanned |
| 1057 | if not packages: |
| 1058 | return |
| 1059 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1060 | import re |
| 1061 | # The package name matches the [a-z0-9.+-]+ regular expression |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 1062 | pkgname_pattern = re.compile(r"^[a-z0-9.+-]+$") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1063 | |
| 1064 | taskdepdata = d.getVar("BB_TASKDEPDATA", False) |
| 1065 | taskdeps = set() |
| 1066 | for dep in taskdepdata: |
| 1067 | taskdeps.add(taskdepdata[dep][0]) |
| 1068 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1069 | def parse_test_matrix(matrix_name): |
| 1070 | testmatrix = d.getVarFlags(matrix_name) or {} |
| 1071 | g = globals() |
| 1072 | warnchecks = [] |
| 1073 | for w in (d.getVar("WARN_QA") or "").split(): |
| 1074 | if w in skip: |
| 1075 | continue |
| 1076 | if w in testmatrix and testmatrix[w] in g: |
| 1077 | warnchecks.append(g[testmatrix[w]]) |
| 1078 | |
| 1079 | errorchecks = [] |
| 1080 | for e in (d.getVar("ERROR_QA") or "").split(): |
| 1081 | if e in skip: |
| 1082 | continue |
| 1083 | if e in testmatrix and testmatrix[e] in g: |
| 1084 | errorchecks.append(g[testmatrix[e]]) |
| 1085 | return warnchecks, errorchecks |
| 1086 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1087 | for package in packages: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1088 | skip = set((d.getVar('INSANE_SKIP') or "").split() + |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1089 | (d.getVar('INSANE_SKIP:' + package) or "").split()) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1090 | if skip: |
| 1091 | bb.note("Package %s skipping QA tests: %s" % (package, str(skip))) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1092 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1093 | bb.note("Checking Package: %s" % package) |
| 1094 | # Check package name |
| 1095 | if not pkgname_pattern.match(package): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1096 | oe.qa.handle_error("pkgname", |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 1097 | "%s doesn't match the [a-z0-9.+-]+ regex" % package, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1098 | |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 1099 | warn_checks, error_checks = parse_test_matrix("QAPATHTEST") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1100 | package_qa_walk(warn_checks, error_checks, package, d) |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 1101 | |
| 1102 | warn_checks, error_checks = parse_test_matrix("QAPKGTEST") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1103 | package_qa_package(warn_checks, error_checks, package, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1104 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1105 | package_qa_check_rdepends(package, pkgdest, skip, taskdeps, packages, d) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1106 | package_qa_check_deps(package, pkgdest, d) |
| 1107 | |
| 1108 | warn_checks, error_checks = parse_test_matrix("QARECIPETEST") |
| 1109 | package_qa_recipe(warn_checks, error_checks, pn, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1110 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1111 | if 'libdir' in d.getVar("ALL_QA").split(): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1112 | package_qa_check_libdir(d) |
| 1113 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1114 | oe.qa.exit_if_errors(d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1115 | } |
| 1116 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1117 | # binutils is used for most checks, so need to set as dependency |
| 1118 | # POPULATESYSROOTDEPS is defined in staging class. |
| 1119 | do_package_qa[depends] += "${POPULATESYSROOTDEPS}" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1120 | do_package_qa[vardepsexclude] = "BB_TASKDEPDATA" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1121 | do_package_qa[rdeptask] = "do_packagedata" |
| 1122 | addtask do_package_qa after do_packagedata do_package before do_build |
| 1123 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1124 | # Add the package specific INSANE_SKIPs to the sstate dependencies |
| 1125 | python() { |
| 1126 | pkgs = (d.getVar('PACKAGES') or '').split() |
| 1127 | for pkg in pkgs: |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1128 | d.appendVarFlag("do_package_qa", "vardeps", " INSANE_SKIP:{}".format(pkg)) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1129 | } |
| 1130 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1131 | SSTATETASKS += "do_package_qa" |
| 1132 | do_package_qa[sstate-inputdirs] = "" |
| 1133 | do_package_qa[sstate-outputdirs] = "" |
| 1134 | python do_package_qa_setscene () { |
| 1135 | sstate_setscene(d) |
| 1136 | } |
| 1137 | addtask do_package_qa_setscene |
| 1138 | |
| 1139 | python do_qa_staging() { |
| 1140 | bb.note("QA checking staging") |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1141 | qa_check_staged(d.expand('${SYSROOT_DESTDIR}${libdir}'), d) |
| 1142 | oe.qa.exit_with_message_if_errors("QA staging was broken by the package built above", d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1143 | } |
| 1144 | |
Brad Bishop | d89cb5f | 2019-04-10 09:02:41 -0400 | [diff] [blame] | 1145 | python do_qa_patch() { |
| 1146 | import subprocess |
| 1147 | |
| 1148 | ########################################################################### |
| 1149 | # Check patch.log for fuzz warnings |
| 1150 | # |
| 1151 | # Further information on why we check for patch fuzz warnings: |
| 1152 | # http://lists.openembedded.org/pipermail/openembedded-core/2018-March/148675.html |
| 1153 | # https://bugzilla.yoctoproject.org/show_bug.cgi?id=10450 |
| 1154 | ########################################################################### |
| 1155 | |
| 1156 | logdir = d.getVar('T') |
| 1157 | patchlog = os.path.join(logdir,"log.do_patch") |
| 1158 | |
| 1159 | if os.path.exists(patchlog): |
| 1160 | fuzzheader = '--- Patch fuzz start ---' |
| 1161 | fuzzfooter = '--- Patch fuzz end ---' |
| 1162 | statement = "grep -e '%s' %s > /dev/null" % (fuzzheader, patchlog) |
| 1163 | if subprocess.call(statement, shell=True) == 0: |
| 1164 | msg = "Fuzz detected:\n\n" |
| 1165 | fuzzmsg = "" |
| 1166 | inFuzzInfo = False |
| 1167 | f = open(patchlog, "r") |
| 1168 | for line in f: |
| 1169 | if fuzzheader in line: |
| 1170 | inFuzzInfo = True |
| 1171 | fuzzmsg = "" |
| 1172 | elif fuzzfooter in line: |
| 1173 | fuzzmsg = fuzzmsg.replace('\n\n', '\n') |
| 1174 | msg += fuzzmsg |
| 1175 | msg += "\n" |
| 1176 | inFuzzInfo = False |
| 1177 | elif inFuzzInfo and not 'Now at patch' in line: |
| 1178 | fuzzmsg += line |
| 1179 | f.close() |
| 1180 | msg += "The context lines in the patches can be updated with devtool:\n" |
| 1181 | msg += "\n" |
| 1182 | msg += " devtool modify %s\n" % d.getVar('PN') |
| 1183 | msg += " devtool finish --force-patch-refresh %s <layer_path>\n\n" % d.getVar('PN') |
| 1184 | msg += "Don't forget to review changes done by devtool!\n" |
| 1185 | if 'patch-fuzz' in d.getVar('ERROR_QA'): |
| 1186 | bb.error(msg) |
| 1187 | elif 'patch-fuzz' in d.getVar('WARN_QA'): |
| 1188 | bb.warn(msg) |
| 1189 | msg = "Patch log indicates that patches do not apply cleanly." |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1190 | oe.qa.handle_error("patch-fuzz", msg, d) |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 1191 | |
| 1192 | # Check if the patch contains a correctly formatted and spelled Upstream-Status |
| 1193 | import re |
| 1194 | from oe import patch |
| 1195 | |
| 1196 | for url in patch.src_patches(d): |
| 1197 | (_, _, fullpath, _, _, _) = bb.fetch.decodeurl(url) |
| 1198 | |
| 1199 | # skip patches not in oe-core |
| 1200 | if '/meta/' not in fullpath: |
| 1201 | continue |
| 1202 | |
| 1203 | content = open(fullpath, encoding='utf-8', errors='ignore').read() |
| 1204 | kinda_status_re = re.compile(r"^.*upstream.*status.*$", re.IGNORECASE | re.MULTILINE) |
| 1205 | strict_status_re = re.compile(r"^Upstream-Status: (Pending|Submitted|Denied|Accepted|Inappropriate|Backport|Inactive-Upstream)( .+)?$", re.MULTILINE) |
| 1206 | match_kinda = kinda_status_re.search(content) |
| 1207 | match_strict = strict_status_re.search(content) |
| 1208 | guidelines = "https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines#Patch_Header_Recommendations:_Upstream-Status" |
| 1209 | |
| 1210 | if not match_strict: |
| 1211 | if match_kinda: |
| 1212 | bb.error("Malformed Upstream-Status in patch\n%s\nPlease correct according to %s :\n%s" % (fullpath, guidelines, match_kinda.group(0))) |
| 1213 | else: |
| 1214 | bb.error("Missing Upstream-Status in patch\n%s\nPlease add according to %s ." % (fullpath, guidelines)) |
Brad Bishop | d89cb5f | 2019-04-10 09:02:41 -0400 | [diff] [blame] | 1215 | } |
| 1216 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1217 | python do_qa_configure() { |
| 1218 | import subprocess |
| 1219 | |
| 1220 | ########################################################################### |
| 1221 | # Check config.log for cross compile issues |
| 1222 | ########################################################################### |
| 1223 | |
| 1224 | configs = [] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1225 | workdir = d.getVar('WORKDIR') |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1226 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1227 | skip = (d.getVar('INSANE_SKIP') or "").split() |
| 1228 | skip_configure_unsafe = False |
| 1229 | if 'configure-unsafe' in skip: |
| 1230 | bb.note("Recipe %s skipping qa checking: configure-unsafe" % d.getVar('PN')) |
| 1231 | skip_configure_unsafe = True |
| 1232 | |
| 1233 | if bb.data.inherits_class('autotools', d) and not skip_configure_unsafe: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1234 | bb.note("Checking autotools environment for common misconfiguration") |
| 1235 | for root, dirs, files in os.walk(workdir): |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1236 | statement = "grep -q -F -e 'is unsafe for cross-compilation' %s" % \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1237 | os.path.join(root,"config.log") |
| 1238 | if "config.log" in files: |
| 1239 | if subprocess.call(statement, shell=True) == 0: |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1240 | error_msg = """This autoconf log indicates errors, it looked at host include and/or library paths while determining system capabilities. |
| 1241 | Rerun configure task after fixing this.""" |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1242 | oe.qa.handle_error("configure-unsafe", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1243 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1244 | if "configure.ac" in files: |
| 1245 | configs.append(os.path.join(root,"configure.ac")) |
| 1246 | if "configure.in" in files: |
| 1247 | configs.append(os.path.join(root, "configure.in")) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1248 | |
| 1249 | ########################################################################### |
| 1250 | # Check gettext configuration and dependencies are correct |
| 1251 | ########################################################################### |
| 1252 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1253 | skip_configure_gettext = False |
| 1254 | if 'configure-gettext' in skip: |
| 1255 | bb.note("Recipe %s skipping qa checking: configure-gettext" % d.getVar('PN')) |
| 1256 | skip_configure_gettext = True |
| 1257 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1258 | cnf = d.getVar('EXTRA_OECONF') or "" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1259 | if not ("gettext" in d.getVar('P') or "gcc-runtime" in d.getVar('P') or \ |
| 1260 | "--disable-nls" in cnf or skip_configure_gettext): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1261 | ml = d.getVar("MLPREFIX") or "" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1262 | if bb.data.inherits_class('cross-canadian', d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1263 | gt = "nativesdk-gettext" |
| 1264 | else: |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1265 | gt = "gettext-native" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1266 | deps = bb.utils.explode_deps(d.getVar('DEPENDS') or "") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1267 | if gt not in deps: |
| 1268 | for config in configs: |
| 1269 | gnu = "grep \"^[[:space:]]*AM_GNU_GETTEXT\" %s >/dev/null" % config |
| 1270 | if subprocess.call(gnu, shell=True) == 0: |
Brad Bishop | d89cb5f | 2019-04-10 09:02:41 -0400 | [diff] [blame] | 1271 | error_msg = "AM_GNU_GETTEXT used but no inherit gettext" |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1272 | oe.qa.handle_error("configure-gettext", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1273 | |
| 1274 | ########################################################################### |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1275 | # Check unrecognised configure options (with a white list) |
| 1276 | ########################################################################### |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 1277 | if bb.data.inherits_class("autotools", d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1278 | bb.note("Checking configure output for unrecognised options") |
| 1279 | try: |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1280 | if bb.data.inherits_class("autotools", d): |
| 1281 | flag = "WARNING: unrecognized options:" |
| 1282 | log = os.path.join(d.getVar('B'), 'config.log') |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1283 | output = subprocess.check_output(['grep', '-F', flag, log]).decode("utf-8").replace(', ', ' ').replace('"', '') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1284 | options = set() |
| 1285 | for line in output.splitlines(): |
| 1286 | options |= set(line.partition(flag)[2].split()) |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 1287 | ignore_opts = set(d.getVar("UNKNOWN_CONFIGURE_OPT_IGNORE").split()) |
| 1288 | options -= ignore_opts |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1289 | if options: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1290 | pn = d.getVar('PN') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1291 | error_msg = pn + ": configure was passed unrecognised options: " + " ".join(options) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1292 | oe.qa.handle_error("unknown-configure-option", error_msg, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1293 | except subprocess.CalledProcessError: |
| 1294 | pass |
| 1295 | |
| 1296 | # Check invalid PACKAGECONFIG |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1297 | pkgconfig = (d.getVar("PACKAGECONFIG") or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1298 | if pkgconfig: |
| 1299 | pkgconfigflags = d.getVarFlags("PACKAGECONFIG") or {} |
| 1300 | for pconfig in pkgconfig: |
| 1301 | if pconfig not in pkgconfigflags: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1302 | pn = d.getVar('PN') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1303 | error_msg = "%s: invalid PACKAGECONFIG: %s" % (pn, pconfig) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1304 | oe.qa.handle_error("invalid-packageconfig", error_msg, d) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1305 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1306 | oe.qa.exit_if_errors(d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1307 | } |
| 1308 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 1309 | def unpack_check_src_uri(pn, d): |
| 1310 | import re |
| 1311 | |
| 1312 | skip = (d.getVar('INSANE_SKIP') or "").split() |
| 1313 | if 'src-uri-bad' in skip: |
| 1314 | bb.note("Recipe %s skipping qa checking: src-uri-bad" % d.getVar('PN')) |
| 1315 | return |
| 1316 | |
| 1317 | if "${PN}" in d.getVar("SRC_URI", False): |
| 1318 | oe.qa.handle_error("src-uri-bad", "%s: SRC_URI uses PN not BPN" % pn, d) |
| 1319 | |
| 1320 | for url in d.getVar("SRC_URI").split(): |
| 1321 | if re.search(r"git(hu|la)b\.com/.+/.+/archive/.+", url): |
| 1322 | oe.qa.handle_error("src-uri-bad", "%s: SRC_URI uses unstable GitHub/GitLab archives, convert recipe to use git protocol" % pn, d) |
| 1323 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1324 | python do_qa_unpack() { |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1325 | src_uri = d.getVar('SRC_URI') |
| 1326 | s_dir = d.getVar('S') |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1327 | if src_uri and not os.path.exists(s_dir): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1328 | bb.warn('%s: the directory %s (%s) pointed to by the S variable doesn\'t exist - please set S within the recipe to point to where the source has been unpacked to' % (d.getVar('PN'), d.getVar('S', False), s_dir)) |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 1329 | |
| 1330 | unpack_check_src_uri(d.getVar('PN'), d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1331 | } |
| 1332 | |
| 1333 | # The Staging Func, to check all staging |
| 1334 | #addtask qa_staging after do_populate_sysroot before do_build |
| 1335 | do_populate_sysroot[postfuncs] += "do_qa_staging " |
| 1336 | |
Brad Bishop | d89cb5f | 2019-04-10 09:02:41 -0400 | [diff] [blame] | 1337 | # Check for patch fuzz |
| 1338 | do_patch[postfuncs] += "do_qa_patch " |
| 1339 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1340 | # Check broken config.log files, for packages requiring Gettext which |
| 1341 | # don't have it in DEPENDS. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1342 | #addtask qa_configure after do_configure before do_compile |
| 1343 | do_configure[postfuncs] += "do_qa_configure " |
| 1344 | |
| 1345 | # Check does S exist. |
| 1346 | do_unpack[postfuncs] += "do_qa_unpack" |
| 1347 | |
| 1348 | python () { |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1349 | import re |
| 1350 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1351 | tests = d.getVar('ALL_QA').split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1352 | if "desktop" in tests: |
| 1353 | d.appendVar("PACKAGE_DEPENDS", " desktop-file-utils-native") |
| 1354 | |
| 1355 | ########################################################################### |
| 1356 | # Check various variables |
| 1357 | ########################################################################### |
| 1358 | |
| 1359 | # Checking ${FILESEXTRAPATHS} |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1360 | extrapaths = (d.getVar("FILESEXTRAPATHS") or "") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1361 | if '__default' not in extrapaths.split(":"): |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1362 | msg = "FILESEXTRAPATHS-variable, must always use :prepend (or :append)\n" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1363 | msg += "type of assignment, and don't forget the colon.\n" |
| 1364 | msg += "Please assign it with the format of:\n" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 1365 | msg += " FILESEXTRAPATHS:append := \":${THISDIR}/Your_Files_Path\" or\n" |
| 1366 | msg += " FILESEXTRAPATHS:prepend := \"${THISDIR}/Your_Files_Path:\"\n" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1367 | msg += "in your bbappend file\n\n" |
| 1368 | msg += "Your incorrect assignment is:\n" |
| 1369 | msg += "%s\n" % extrapaths |
| 1370 | bb.warn(msg) |
| 1371 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1372 | overrides = d.getVar('OVERRIDES').split(':') |
| 1373 | pn = d.getVar('PN') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1374 | if pn in overrides: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1375 | msg = 'Recipe %s has PN of "%s" which is in OVERRIDES, this can result in unexpected behaviour.' % (d.getVar("FILE"), pn) |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1376 | oe.qa.handle_error("pn-overrides", msg, d) |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 1377 | prog = re.compile(r'[A-Z]') |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1378 | if prog.search(pn): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1379 | oe.qa.handle_error("uppercase-pn", 'PN: %s is upper case, this can result in unexpected behavior.' % pn, d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1380 | |
Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame] | 1381 | # Some people mistakenly use DEPENDS:${PN} instead of DEPENDS and wonder |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1382 | # why it doesn't work. |
Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame] | 1383 | if (d.getVar(d.expand('DEPENDS:${PN}'))): |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1384 | oe.qa.handle_error("pkgvarcheck", "recipe uses DEPENDS:${PN}, should use DEPENDS", d) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1385 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1386 | issues = [] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1387 | if (d.getVar('PACKAGES') or "").split(): |
| 1388 | for dep in (d.getVar('QADEPENDS') or "").split(): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1389 | d.appendVarFlag('do_package_qa', 'depends', " %s:do_populate_sysroot" % dep) |
| 1390 | for var in 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RCONFLICTS', 'RPROVIDES', 'RREPLACES', 'FILES', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm', 'ALLOW_EMPTY': |
| 1391 | if d.getVar(var, False): |
| 1392 | issues.append(var) |
| 1393 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1394 | fakeroot_tests = d.getVar('FAKEROOT_QA').split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1395 | if set(tests) & set(fakeroot_tests): |
| 1396 | d.setVarFlag('do_package_qa', 'fakeroot', '1') |
| 1397 | d.appendVarFlag('do_package_qa', 'depends', ' virtual/fakeroot-native:do_populate_sysroot') |
| 1398 | else: |
| 1399 | d.setVarFlag('do_package_qa', 'rdeptask', '') |
| 1400 | for i in issues: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1401 | oe.qa.handle_error("pkgvarcheck", "%s: Variable %s is set as not being package specific, please fix this." % (d.getVar("FILE"), i), d) |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1402 | |
| 1403 | if 'native-last' not in (d.getVar('INSANE_SKIP') or "").split(): |
| 1404 | for native_class in ['native', 'nativesdk']: |
| 1405 | if bb.data.inherits_class(native_class, d): |
| 1406 | |
| 1407 | inherited_classes = d.getVar('__inherit_cache', False) or [] |
| 1408 | needle = os.path.join('classes', native_class) |
| 1409 | |
| 1410 | bbclassextend = (d.getVar('BBCLASSEXTEND') or '').split() |
| 1411 | # BBCLASSEXTEND items are always added in the end |
| 1412 | skip_classes = bbclassextend |
| 1413 | if bb.data.inherits_class('native', d) or 'native' in bbclassextend: |
| 1414 | # native also inherits nopackages and relocatable bbclasses |
| 1415 | skip_classes.extend(['nopackages', 'relocatable']) |
| 1416 | |
| 1417 | broken_order = [] |
| 1418 | for class_item in reversed(inherited_classes): |
| 1419 | if needle not in class_item: |
| 1420 | for extend_item in skip_classes: |
| 1421 | if os.path.join('classes', '%s.bbclass' % extend_item) in class_item: |
| 1422 | break |
| 1423 | else: |
| 1424 | pn = d.getVar('PN') |
| 1425 | broken_order.append(os.path.basename(class_item)) |
| 1426 | else: |
| 1427 | break |
| 1428 | if broken_order: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1429 | oe.qa.handle_error("native-last", "%s: native/nativesdk class is not inherited last, this can result in unexpected behaviour. " |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1430 | "Classes inherited after native/nativesdk: %s" % (pn, " ".join(broken_order)), d) |
| 1431 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1432 | oe.qa.exit_if_errors(d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1433 | } |