Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1 | # This class is used to check recipes against public CVEs. |
| 2 | # |
| 3 | # In order to use this class just inherit the class in the |
| 4 | # local.conf file and it will add the cve_check task for |
| 5 | # every recipe. The task can be used per recipe, per image, |
| 6 | # or using the special cases "world" and "universe". The |
| 7 | # cve_check task will print a warning for every unpatched |
| 8 | # CVE found and generate a file in the recipe WORKDIR/cve |
| 9 | # directory. If an image is build it will generate a report |
| 10 | # in DEPLOY_DIR_IMAGE for all the packages used. |
| 11 | # |
| 12 | # Example: |
| 13 | # bitbake -c cve_check openssl |
| 14 | # bitbake core-image-sato |
| 15 | # bitbake -k -c cve_check universe |
| 16 | # |
| 17 | # DISCLAIMER |
| 18 | # |
| 19 | # This class/tool is meant to be used as support and not |
| 20 | # the only method to check against CVEs. Running this tool |
| 21 | # doesn't guarantee your packages are free of CVEs. |
| 22 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 23 | # The product name that the CVE database uses defaults to BPN, but may need to |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 24 | # be overriden per recipe (for example tiff.bb sets CVE_PRODUCT=libtiff). |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 25 | CVE_PRODUCT ??= "${BPN}" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 26 | CVE_VERSION ??= "${PV}" |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 27 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 28 | CVE_CHECK_DB_DIR ?= "${DL_DIR}/CVE_CHECK" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 29 | CVE_CHECK_DB_FILE ?= "${CVE_CHECK_DB_DIR}/nvdcve_1.1.db" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 30 | CVE_CHECK_DB_FILE_LOCK ?= "${CVE_CHECK_DB_FILE}.lock" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 31 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 32 | CVE_CHECK_LOG ?= "${T}/cve.log" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 33 | CVE_CHECK_TMP_FILE ?= "${TMPDIR}/cve_check" |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 34 | CVE_CHECK_SUMMARY_DIR ?= "${LOG_DIR}/cve" |
| 35 | CVE_CHECK_SUMMARY_FILE_NAME ?= "cve-summary" |
| 36 | CVE_CHECK_SUMMARY_FILE ?= "${CVE_CHECK_SUMMARY_DIR}/${CVE_CHECK_SUMMARY_FILE_NAME}" |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 37 | CVE_CHECK_SUMMARY_FILE_NAME_JSON = "cve-summary.json" |
| 38 | CVE_CHECK_SUMMARY_INDEX_PATH = "${CVE_CHECK_SUMMARY_DIR}/cve-summary-index.txt" |
| 39 | |
| 40 | CVE_CHECK_LOG_JSON ?= "${T}/cve.json" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 41 | |
| 42 | CVE_CHECK_DIR ??= "${DEPLOY_DIR}/cve" |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 43 | CVE_CHECK_RECIPE_FILE ?= "${CVE_CHECK_DIR}/${PN}" |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 44 | CVE_CHECK_RECIPE_FILE_JSON ?= "${CVE_CHECK_DIR}/${PN}_cve.json" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 45 | CVE_CHECK_MANIFEST ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.cve" |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 46 | CVE_CHECK_MANIFEST_JSON ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.json" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 47 | CVE_CHECK_COPY_FILES ??= "1" |
| 48 | CVE_CHECK_CREATE_MANIFEST ??= "1" |
| 49 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 50 | # Report Patched or Ignored CVEs |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 51 | CVE_CHECK_REPORT_PATCHED ??= "1" |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 52 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 53 | CVE_CHECK_SHOW_WARNINGS ??= "1" |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 54 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 55 | # Provide text output |
| 56 | CVE_CHECK_FORMAT_TEXT ??= "1" |
| 57 | |
| 58 | # Provide JSON output |
| 59 | CVE_CHECK_FORMAT_JSON ??= "1" |
| 60 | |
| 61 | # Check for packages without CVEs (no issues or missing product name) |
| 62 | CVE_CHECK_COVERAGE ??= "1" |
| 63 | |
| 64 | # Skip CVE Check for packages (PN) |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 65 | CVE_CHECK_SKIP_RECIPE ?= "" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 66 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 67 | # Ingore the check for a given list of CVEs. If a CVE is found, |
| 68 | # then it is considered patched. The value is a string containing |
| 69 | # space separated CVE values: |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 70 | # |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 71 | # CVE_CHECK_IGNORE = 'CVE-2014-2524 CVE-2018-1234' |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 72 | # |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 73 | CVE_CHECK_IGNORE ?= "" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 74 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 75 | # Layers to be excluded |
| 76 | CVE_CHECK_LAYER_EXCLUDELIST ??= "" |
| 77 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 78 | # Layers to be included |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 79 | CVE_CHECK_LAYER_INCLUDELIST ??= "" |
| 80 | |
| 81 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 82 | # set to "alphabetical" for version using single alphabetical character as increment release |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 83 | CVE_VERSION_SUFFIX ??= "" |
| 84 | |
Andrew Geissler | d583833 | 2022-05-27 11:33:10 -0500 | [diff] [blame] | 85 | def generate_json_report(d, out_path, link_path): |
| 86 | if os.path.exists(d.getVar("CVE_CHECK_SUMMARY_INDEX_PATH")): |
| 87 | import json |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 88 | from oe.cve_check import cve_check_merge_jsons, update_symlinks |
Andrew Geissler | d583833 | 2022-05-27 11:33:10 -0500 | [diff] [blame] | 89 | |
| 90 | bb.note("Generating JSON CVE summary") |
| 91 | index_file = d.getVar("CVE_CHECK_SUMMARY_INDEX_PATH") |
| 92 | summary = {"version":"1", "package": []} |
| 93 | with open(index_file) as f: |
| 94 | filename = f.readline() |
| 95 | while filename: |
| 96 | with open(filename.rstrip()) as j: |
| 97 | data = json.load(j) |
| 98 | cve_check_merge_jsons(summary, data) |
| 99 | filename = f.readline() |
| 100 | |
| 101 | with open(out_path, "w") as f: |
| 102 | json.dump(summary, f, indent=2) |
| 103 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 104 | update_symlinks(out_path, link_path) |
Andrew Geissler | d583833 | 2022-05-27 11:33:10 -0500 | [diff] [blame] | 105 | |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 106 | python cve_save_summary_handler () { |
| 107 | import shutil |
| 108 | import datetime |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 109 | from oe.cve_check import update_symlinks |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 110 | |
| 111 | cve_tmp_file = d.getVar("CVE_CHECK_TMP_FILE") |
| 112 | |
| 113 | cve_summary_name = d.getVar("CVE_CHECK_SUMMARY_FILE_NAME") |
| 114 | cvelogpath = d.getVar("CVE_CHECK_SUMMARY_DIR") |
| 115 | bb.utils.mkdirhier(cvelogpath) |
| 116 | |
| 117 | timestamp = datetime.datetime.now().strftime('%Y%m%d%H%M%S') |
| 118 | cve_summary_file = os.path.join(cvelogpath, "%s-%s.txt" % (cve_summary_name, timestamp)) |
| 119 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 120 | if os.path.exists(cve_tmp_file): |
| 121 | shutil.copyfile(cve_tmp_file, cve_summary_file) |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 122 | cvefile_link = os.path.join(cvelogpath, cve_summary_name) |
| 123 | update_symlinks(cve_summary_file, cvefile_link) |
| 124 | bb.plain("Complete CVE report summary created at: %s" % cvefile_link) |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 125 | |
Andrew Geissler | d583833 | 2022-05-27 11:33:10 -0500 | [diff] [blame] | 126 | if d.getVar("CVE_CHECK_FORMAT_JSON") == "1": |
| 127 | json_summary_link_name = os.path.join(cvelogpath, d.getVar("CVE_CHECK_SUMMARY_FILE_NAME_JSON")) |
| 128 | json_summary_name = os.path.join(cvelogpath, "%s-%s.json" % (cve_summary_name, timestamp)) |
| 129 | generate_json_report(d, json_summary_name, json_summary_link_name) |
| 130 | bb.plain("Complete CVE JSON report summary created at: %s" % json_summary_link_name) |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | addhandler cve_save_summary_handler |
| 134 | cve_save_summary_handler[eventmask] = "bb.event.BuildCompleted" |
| 135 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 136 | python do_cve_check () { |
| 137 | """ |
| 138 | Check recipe for patched and unpatched CVEs |
| 139 | """ |
Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame] | 140 | from oe.cve_check import get_patched_cves |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 141 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 142 | if os.path.exists(d.getVar("CVE_CHECK_DB_FILE")): |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 143 | try: |
Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame] | 144 | patched_cves = get_patched_cves(d) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 145 | except FileNotFoundError: |
| 146 | bb.fatal("Failure in searching patches") |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 147 | ignored, patched, unpatched, status = check_cves(d, patched_cves) |
| 148 | if patched or unpatched or (d.getVar("CVE_CHECK_COVERAGE") == "1" and status): |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 149 | cve_data = get_cve_info(d, patched + unpatched + ignored) |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 150 | cve_write_data(d, patched, unpatched, ignored, cve_data, status) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 151 | else: |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 152 | bb.note("No CVE database found, skipping CVE check") |
| 153 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 154 | } |
| 155 | |
Patrick Williams | 03907ee | 2022-05-01 06:28:52 -0500 | [diff] [blame] | 156 | addtask cve_check before do_build |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 157 | do_cve_check[depends] = "cve-update-db-native:do_fetch" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 158 | do_cve_check[nostamp] = "1" |
| 159 | |
| 160 | python cve_check_cleanup () { |
| 161 | """ |
| 162 | Delete the file used to gather all the CVE information. |
| 163 | """ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 164 | bb.utils.remove(e.data.getVar("CVE_CHECK_TMP_FILE")) |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 165 | bb.utils.remove(e.data.getVar("CVE_CHECK_SUMMARY_INDEX_PATH")) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | addhandler cve_check_cleanup |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 169 | cve_check_cleanup[eventmask] = "bb.event.BuildCompleted" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 170 | |
| 171 | python cve_check_write_rootfs_manifest () { |
| 172 | """ |
| 173 | Create CVE manifest when building an image |
| 174 | """ |
| 175 | |
| 176 | import shutil |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 177 | import json |
| 178 | from oe.rootfs import image_list_installed_packages |
| 179 | from oe.cve_check import cve_check_merge_jsons, update_symlinks |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 180 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 181 | if d.getVar("CVE_CHECK_COPY_FILES") == "1": |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 182 | deploy_file = d.getVar("CVE_CHECK_RECIPE_FILE") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 183 | if os.path.exists(deploy_file): |
| 184 | bb.utils.remove(deploy_file) |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 185 | deploy_file_json = d.getVar("CVE_CHECK_RECIPE_FILE_JSON") |
| 186 | if os.path.exists(deploy_file_json): |
| 187 | bb.utils.remove(deploy_file_json) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 188 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 189 | # Create a list of relevant recipies |
| 190 | recipies = set() |
| 191 | for pkg in list(image_list_installed_packages(d)): |
| 192 | pkg_info = os.path.join(d.getVar('PKGDATA_DIR'), |
| 193 | 'runtime-reverse', pkg) |
| 194 | pkg_data = oe.packagedata.read_pkgdatafile(pkg_info) |
| 195 | recipies.add(pkg_data["PN"]) |
| 196 | |
| 197 | bb.note("Writing rootfs CVE manifest") |
| 198 | deploy_dir = d.getVar("DEPLOY_DIR_IMAGE") |
| 199 | link_name = d.getVar("IMAGE_LINK_NAME") |
| 200 | |
| 201 | json_data = {"version":"1", "package": []} |
| 202 | text_data = "" |
| 203 | enable_json = d.getVar("CVE_CHECK_FORMAT_JSON") == "1" |
| 204 | enable_text = d.getVar("CVE_CHECK_FORMAT_TEXT") == "1" |
| 205 | |
| 206 | save_pn = d.getVar("PN") |
| 207 | |
| 208 | for pkg in recipies: |
| 209 | # To be able to use the CVE_CHECK_RECIPE_FILE variable we have to evaluate |
| 210 | # it with the different PN names set each time. |
| 211 | d.setVar("PN", pkg) |
| 212 | if enable_text: |
| 213 | pkgfilepath = d.getVar("CVE_CHECK_RECIPE_FILE") |
| 214 | if os.path.exists(pkgfilepath): |
| 215 | with open(pkgfilepath) as pfile: |
| 216 | text_data += pfile.read() |
| 217 | |
| 218 | if enable_json: |
| 219 | pkgfilepath = d.getVar("CVE_CHECK_RECIPE_FILE_JSON") |
| 220 | if os.path.exists(pkgfilepath): |
| 221 | with open(pkgfilepath) as j: |
| 222 | data = json.load(j) |
| 223 | cve_check_merge_jsons(json_data, data) |
| 224 | |
| 225 | d.setVar("PN", save_pn) |
| 226 | |
| 227 | if enable_text: |
| 228 | link_path = os.path.join(deploy_dir, "%s.cve" % link_name) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 229 | manifest_name = d.getVar("CVE_CHECK_MANIFEST") |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 230 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 231 | with open(manifest_name, "w") as f: |
| 232 | f.write(text_data) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 233 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 234 | update_symlinks(manifest_name, link_path) |
| 235 | bb.plain("Image CVE report stored in: %s" % manifest_name) |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 236 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 237 | if enable_json: |
| 238 | link_path = os.path.join(deploy_dir, "%s.json" % link_name) |
| 239 | manifest_name = d.getVar("CVE_CHECK_MANIFEST_JSON") |
| 240 | |
| 241 | with open(manifest_name, "w") as f: |
| 242 | json.dump(json_data, f, indent=2) |
| 243 | |
| 244 | update_symlinks(manifest_name, link_path) |
| 245 | bb.plain("Image CVE JSON report stored in: %s" % manifest_name) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 246 | } |
| 247 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 248 | ROOTFS_POSTPROCESS_COMMAND:prepend = "${@'cve_check_write_rootfs_manifest; ' if d.getVar('CVE_CHECK_CREATE_MANIFEST') == '1' else ''}" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 249 | do_rootfs[recrdeptask] += "${@'do_cve_check' if d.getVar('CVE_CHECK_CREATE_MANIFEST') == '1' else ''}" |
Andrew Geissler | d583833 | 2022-05-27 11:33:10 -0500 | [diff] [blame] | 250 | do_populate_sdk[recrdeptask] += "${@'do_cve_check' if d.getVar('CVE_CHECK_CREATE_MANIFEST') == '1' else ''}" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 251 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 252 | def check_cves(d, patched_cves): |
| 253 | """ |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 254 | Connect to the NVD database and find unpatched cves. |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 255 | """ |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 256 | from oe.cve_check import Version |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 257 | |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 258 | pn = d.getVar("PN") |
| 259 | real_pv = d.getVar("PV") |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 260 | suffix = d.getVar("CVE_VERSION_SUFFIX") |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 261 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 262 | cves_unpatched = [] |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 263 | cves_ignored = [] |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 264 | cves_status = [] |
| 265 | cves_in_recipe = False |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 266 | # CVE_PRODUCT can contain more than one product (eg. curl/libcurl) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 267 | products = d.getVar("CVE_PRODUCT").split() |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 268 | # If this has been unset then we're not scanning for CVEs here (for example, image recipes) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 269 | if not products: |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 270 | return ([], [], [], []) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 271 | pv = d.getVar("CVE_VERSION").split("+git")[0] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 272 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 273 | # If the recipe has been skipped/ignored we return empty lists |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 274 | if pn in d.getVar("CVE_CHECK_SKIP_RECIPE").split(): |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 275 | bb.note("Recipe has been skipped by cve-check") |
| 276 | return ([], [], [], []) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 277 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 278 | cve_ignore = d.getVar("CVE_CHECK_IGNORE").split() |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 279 | |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 280 | import sqlite3 |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 281 | db_file = d.expand("file:${CVE_CHECK_DB_FILE}?mode=ro") |
| 282 | conn = sqlite3.connect(db_file, uri=True) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 283 | |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 284 | # For each of the known product names (e.g. curl has CPEs using curl and libcurl)... |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 285 | for product in products: |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 286 | cves_in_product = False |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 287 | if ":" in product: |
| 288 | vendor, product = product.split(":", 1) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 289 | else: |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 290 | vendor = "%" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 291 | |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 292 | # Find all relevant CVE IDs. |
| 293 | for cverow in conn.execute("SELECT DISTINCT ID FROM PRODUCTS WHERE PRODUCT IS ? AND VENDOR LIKE ?", (product, vendor)): |
| 294 | cve = cverow[0] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 295 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 296 | if cve in cve_ignore: |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 297 | bb.note("%s-%s ignores %s" % (product, pv, cve)) |
| 298 | cves_ignored.append(cve) |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 299 | continue |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 300 | elif cve in patched_cves: |
| 301 | bb.note("%s has been patched" % (cve)) |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 302 | continue |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 303 | # Write status once only for each product |
| 304 | if not cves_in_product: |
| 305 | cves_status.append([product, True]) |
| 306 | cves_in_product = True |
| 307 | cves_in_recipe = True |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 308 | |
| 309 | vulnerable = False |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 310 | ignored = False |
| 311 | |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 312 | for row in conn.execute("SELECT * FROM PRODUCTS WHERE ID IS ? AND PRODUCT IS ? AND VENDOR LIKE ?", (cve, product, vendor)): |
| 313 | (_, _, _, version_start, operator_start, version_end, operator_end) = row |
| 314 | #bb.debug(2, "Evaluating row " + str(row)) |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 315 | if cve in cve_ignore: |
| 316 | ignored = True |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 317 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 318 | if (operator_start == '=' and pv == version_start) or version_start == '-': |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 319 | vulnerable = True |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 320 | else: |
| 321 | if operator_start: |
| 322 | try: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 323 | vulnerable_start = (operator_start == '>=' and Version(pv,suffix) >= Version(version_start,suffix)) |
| 324 | vulnerable_start |= (operator_start == '>' and Version(pv,suffix) > Version(version_start,suffix)) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 325 | except: |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 326 | bb.warn("%s: Failed to compare %s %s %s for %s" % |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 327 | (product, pv, operator_start, version_start, cve)) |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 328 | vulnerable_start = False |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 329 | else: |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 330 | vulnerable_start = False |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 331 | |
| 332 | if operator_end: |
| 333 | try: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 334 | vulnerable_end = (operator_end == '<=' and Version(pv,suffix) <= Version(version_end,suffix) ) |
| 335 | vulnerable_end |= (operator_end == '<' and Version(pv,suffix) < Version(version_end,suffix) ) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 336 | except: |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 337 | bb.warn("%s: Failed to compare %s %s %s for %s" % |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 338 | (product, pv, operator_end, version_end, cve)) |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 339 | vulnerable_end = False |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 340 | else: |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 341 | vulnerable_end = False |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 342 | |
| 343 | if operator_start and operator_end: |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 344 | vulnerable = vulnerable_start and vulnerable_end |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 345 | else: |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 346 | vulnerable = vulnerable_start or vulnerable_end |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 347 | |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 348 | if vulnerable: |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 349 | if ignored: |
| 350 | bb.note("%s is ignored in %s-%s" % (cve, pn, real_pv)) |
| 351 | cves_ignored.append(cve) |
| 352 | else: |
| 353 | bb.note("%s-%s is vulnerable to %s" % (pn, real_pv, cve)) |
| 354 | cves_unpatched.append(cve) |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 355 | break |
| 356 | |
| 357 | if not vulnerable: |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 358 | bb.note("%s-%s is not vulnerable to %s" % (pn, real_pv, cve)) |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 359 | patched_cves.add(cve) |
| 360 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 361 | if not cves_in_product: |
| 362 | bb.note("No CVE records found for product %s, pn %s" % (product, pn)) |
| 363 | cves_status.append([product, False]) |
| 364 | |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 365 | conn.close() |
| 366 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 367 | if not cves_in_recipe: |
| 368 | bb.note("No CVE records for products in recipe %s" % (pn)) |
| 369 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 370 | return (list(cves_ignored), list(patched_cves), cves_unpatched, cves_status) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 371 | |
| 372 | def get_cve_info(d, cves): |
| 373 | """ |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 374 | Get CVE information from the database. |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 375 | """ |
| 376 | |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 377 | import sqlite3 |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 378 | |
| 379 | cve_data = {} |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 380 | db_file = d.expand("file:${CVE_CHECK_DB_FILE}?mode=ro") |
| 381 | conn = sqlite3.connect(db_file, uri=True) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 382 | |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 383 | for cve in cves: |
| 384 | for row in conn.execute("SELECT * FROM NVD WHERE ID IS ?", (cve,)): |
| 385 | cve_data[row[0]] = {} |
| 386 | cve_data[row[0]]["summary"] = row[1] |
| 387 | cve_data[row[0]]["scorev2"] = row[2] |
| 388 | cve_data[row[0]]["scorev3"] = row[3] |
| 389 | cve_data[row[0]]["modified"] = row[4] |
| 390 | cve_data[row[0]]["vector"] = row[5] |
| 391 | |
| 392 | conn.close() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 393 | return cve_data |
| 394 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 395 | def cve_write_data_text(d, patched, unpatched, ignored, cve_data): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 396 | """ |
| 397 | Write CVE information in WORKDIR; and to CVE_CHECK_DIR, and |
| 398 | CVE manifest if enabled. |
| 399 | """ |
| 400 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 401 | cve_file = d.getVar("CVE_CHECK_LOG") |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 402 | fdir_name = d.getVar("FILE_DIRNAME") |
| 403 | layer = fdir_name.split("/")[-3] |
| 404 | |
| 405 | include_layers = d.getVar("CVE_CHECK_LAYER_INCLUDELIST").split() |
| 406 | exclude_layers = d.getVar("CVE_CHECK_LAYER_EXCLUDELIST").split() |
| 407 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 408 | report_all = d.getVar("CVE_CHECK_REPORT_PATCHED") == "1" |
| 409 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 410 | if exclude_layers and layer in exclude_layers: |
| 411 | return |
| 412 | |
| 413 | if include_layers and layer not in include_layers: |
| 414 | return |
| 415 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 416 | # Early exit, the text format does not report packages without CVEs |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 417 | if not patched+unpatched+ignored: |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 418 | return |
| 419 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 420 | nvd_link = "https://nvd.nist.gov/vuln/detail/" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 421 | write_string = "" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 422 | unpatched_cves = [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 423 | bb.utils.mkdirhier(os.path.dirname(cve_file)) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 424 | |
| 425 | for cve in sorted(cve_data): |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 426 | is_patched = cve in patched |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 427 | is_ignored = cve in ignored |
| 428 | |
| 429 | if (is_patched or is_ignored) and not report_all: |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 430 | continue |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 431 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 432 | write_string += "LAYER: %s\n" % layer |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 433 | write_string += "PACKAGE NAME: %s\n" % d.getVar("PN") |
Andrew Geissler | 4ed12e1 | 2020-06-05 18:00:41 -0500 | [diff] [blame] | 434 | write_string += "PACKAGE VERSION: %s%s\n" % (d.getVar("EXTENDPE"), d.getVar("PV")) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 435 | write_string += "CVE: %s\n" % cve |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 436 | if is_ignored: |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 437 | write_string += "CVE STATUS: Ignored\n" |
Andrew Geissler | c3d88e4 | 2020-10-02 09:45:00 -0500 | [diff] [blame] | 438 | elif is_patched: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 439 | write_string += "CVE STATUS: Patched\n" |
| 440 | else: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 441 | unpatched_cves.append(cve) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 442 | write_string += "CVE STATUS: Unpatched\n" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 443 | write_string += "CVE SUMMARY: %s\n" % cve_data[cve]["summary"] |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 444 | write_string += "CVSS v2 BASE SCORE: %s\n" % cve_data[cve]["scorev2"] |
| 445 | write_string += "CVSS v3 BASE SCORE: %s\n" % cve_data[cve]["scorev3"] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 446 | write_string += "VECTOR: %s\n" % cve_data[cve]["vector"] |
| 447 | write_string += "MORE INFORMATION: %s%s\n\n" % (nvd_link, cve) |
| 448 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 449 | if unpatched_cves and d.getVar("CVE_CHECK_SHOW_WARNINGS") == "1": |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 450 | bb.warn("Found unpatched CVE (%s), for more information check %s" % (" ".join(unpatched_cves),cve_file)) |
| 451 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 452 | with open(cve_file, "w") as f: |
| 453 | bb.note("Writing file %s with CVE information" % cve_file) |
| 454 | f.write(write_string) |
| 455 | |
| 456 | if d.getVar("CVE_CHECK_COPY_FILES") == "1": |
| 457 | deploy_file = d.getVar("CVE_CHECK_RECIPE_FILE") |
| 458 | bb.utils.mkdirhier(os.path.dirname(deploy_file)) |
| 459 | with open(deploy_file, "w") as f: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 460 | f.write(write_string) |
| 461 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 462 | if d.getVar("CVE_CHECK_CREATE_MANIFEST") == "1": |
| 463 | cvelogpath = d.getVar("CVE_CHECK_SUMMARY_DIR") |
| 464 | bb.utils.mkdirhier(cvelogpath) |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 465 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 466 | with open(d.getVar("CVE_CHECK_TMP_FILE"), "a") as f: |
| 467 | f.write("%s" % write_string) |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 468 | |
| 469 | def cve_check_write_json_output(d, output, direct_file, deploy_file, manifest_file): |
| 470 | """ |
| 471 | Write CVE information in the JSON format: to WORKDIR; and to |
| 472 | CVE_CHECK_DIR, if CVE manifest if enabled, write fragment |
| 473 | files that will be assembled at the end in cve_check_write_rootfs_manifest. |
| 474 | """ |
| 475 | |
| 476 | import json |
| 477 | |
| 478 | write_string = json.dumps(output, indent=2) |
| 479 | with open(direct_file, "w") as f: |
| 480 | bb.note("Writing file %s with CVE information" % direct_file) |
| 481 | f.write(write_string) |
| 482 | |
| 483 | if d.getVar("CVE_CHECK_COPY_FILES") == "1": |
| 484 | bb.utils.mkdirhier(os.path.dirname(deploy_file)) |
| 485 | with open(deploy_file, "w") as f: |
| 486 | f.write(write_string) |
| 487 | |
| 488 | if d.getVar("CVE_CHECK_CREATE_MANIFEST") == "1": |
| 489 | cvelogpath = d.getVar("CVE_CHECK_SUMMARY_DIR") |
| 490 | index_path = d.getVar("CVE_CHECK_SUMMARY_INDEX_PATH") |
| 491 | bb.utils.mkdirhier(cvelogpath) |
| 492 | fragment_file = os.path.basename(deploy_file) |
| 493 | fragment_path = os.path.join(cvelogpath, fragment_file) |
| 494 | with open(fragment_path, "w") as f: |
| 495 | f.write(write_string) |
| 496 | with open(index_path, "a+") as f: |
| 497 | f.write("%s\n" % fragment_path) |
| 498 | |
| 499 | def cve_write_data_json(d, patched, unpatched, ignored, cve_data, cve_status): |
| 500 | """ |
| 501 | Prepare CVE data for the JSON format, then write it. |
| 502 | """ |
| 503 | |
| 504 | output = {"version":"1", "package": []} |
| 505 | nvd_link = "https://nvd.nist.gov/vuln/detail/" |
| 506 | |
| 507 | fdir_name = d.getVar("FILE_DIRNAME") |
| 508 | layer = fdir_name.split("/")[-3] |
| 509 | |
| 510 | include_layers = d.getVar("CVE_CHECK_LAYER_INCLUDELIST").split() |
| 511 | exclude_layers = d.getVar("CVE_CHECK_LAYER_EXCLUDELIST").split() |
| 512 | |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 513 | report_all = d.getVar("CVE_CHECK_REPORT_PATCHED") == "1" |
| 514 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 515 | if exclude_layers and layer in exclude_layers: |
| 516 | return |
| 517 | |
| 518 | if include_layers and layer not in include_layers: |
| 519 | return |
| 520 | |
| 521 | unpatched_cves = [] |
| 522 | |
| 523 | product_data = [] |
| 524 | for s in cve_status: |
| 525 | p = {"product": s[0], "cvesInRecord": "Yes"} |
| 526 | if s[1] == False: |
| 527 | p["cvesInRecord"] = "No" |
| 528 | product_data.append(p) |
| 529 | |
| 530 | package_version = "%s%s" % (d.getVar("EXTENDPE"), d.getVar("PV")) |
| 531 | package_data = { |
| 532 | "name" : d.getVar("PN"), |
| 533 | "layer" : layer, |
| 534 | "version" : package_version, |
| 535 | "products": product_data |
| 536 | } |
| 537 | cve_list = [] |
| 538 | |
| 539 | for cve in sorted(cve_data): |
| 540 | is_patched = cve in patched |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 541 | is_ignored = cve in ignored |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 542 | status = "Unpatched" |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 543 | if (is_patched or is_ignored) and not report_all: |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 544 | continue |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 545 | if is_ignored: |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 546 | status = "Ignored" |
| 547 | elif is_patched: |
| 548 | status = "Patched" |
| 549 | else: |
| 550 | # default value of status is Unpatched |
| 551 | unpatched_cves.append(cve) |
| 552 | |
| 553 | issue_link = "%s%s" % (nvd_link, cve) |
| 554 | |
| 555 | cve_item = { |
| 556 | "id" : cve, |
| 557 | "summary" : cve_data[cve]["summary"], |
| 558 | "scorev2" : cve_data[cve]["scorev2"], |
| 559 | "scorev3" : cve_data[cve]["scorev3"], |
| 560 | "vector" : cve_data[cve]["vector"], |
| 561 | "status" : status, |
| 562 | "link": issue_link |
| 563 | } |
| 564 | cve_list.append(cve_item) |
| 565 | |
| 566 | package_data["issue"] = cve_list |
| 567 | output["package"].append(package_data) |
| 568 | |
| 569 | direct_file = d.getVar("CVE_CHECK_LOG_JSON") |
| 570 | deploy_file = d.getVar("CVE_CHECK_RECIPE_FILE_JSON") |
| 571 | manifest_file = d.getVar("CVE_CHECK_SUMMARY_FILE_NAME_JSON") |
| 572 | |
| 573 | cve_check_write_json_output(d, output, direct_file, deploy_file, manifest_file) |
| 574 | |
| 575 | def cve_write_data(d, patched, unpatched, ignored, cve_data, status): |
| 576 | """ |
| 577 | Write CVE data in each enabled format. |
| 578 | """ |
| 579 | |
| 580 | if d.getVar("CVE_CHECK_FORMAT_TEXT") == "1": |
| 581 | cve_write_data_text(d, patched, unpatched, ignored, cve_data) |
| 582 | if d.getVar("CVE_CHECK_FORMAT_JSON") == "1": |
| 583 | cve_write_data_json(d, patched, unpatched, ignored, cve_data, status) |