2015-11-26 15:52:25 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2020-07-25 12:26:18 -04:00
|
|
|
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
2015-11-26 15:52:25 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (guix cve)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (guix http-client)
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
#:use-module (guix i18n)
|
2020-07-25 12:26:18 -04:00
|
|
|
|
#:use-module ((guix diagnostics) #:select (formatted-message))
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
#:use-module (json)
|
2015-11-26 15:52:25 -05:00
|
|
|
|
#:use-module (web uri)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-9)
|
2016-05-27 18:44:36 -04:00
|
|
|
|
#:use-module (srfi srfi-11)
|
2015-11-26 15:52:25 -05:00
|
|
|
|
#:use-module (srfi srfi-19)
|
2016-05-26 17:00:08 -04:00
|
|
|
|
#:use-module (srfi srfi-26)
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-35)
|
2015-11-26 15:52:25 -05:00
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (ice-9 regex)
|
|
|
|
|
#:use-module (ice-9 vlist)
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
#:export (json->cve-items
|
|
|
|
|
|
|
|
|
|
cve-item?
|
|
|
|
|
cve-item-cve
|
|
|
|
|
cve-item-configurations
|
|
|
|
|
cve-item-published-date
|
|
|
|
|
cve-item-last-modified-date
|
|
|
|
|
|
|
|
|
|
cve?
|
|
|
|
|
cve-id
|
|
|
|
|
cve-data-type
|
|
|
|
|
cve-data-format
|
2020-07-09 17:00:58 -04:00
|
|
|
|
cve-references
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
|
|
|
|
|
cve-reference?
|
|
|
|
|
cve-reference-url
|
|
|
|
|
cve-reference-tags
|
|
|
|
|
|
|
|
|
|
vulnerability?
|
2015-11-26 15:52:25 -05:00
|
|
|
|
vulnerability-id
|
|
|
|
|
vulnerability-packages
|
|
|
|
|
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
json->vulnerabilities
|
2015-11-26 15:52:25 -05:00
|
|
|
|
current-vulnerabilities
|
|
|
|
|
vulnerabilities->lookup-proc))
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; This modules provides the tools to fetch, parse, and digest part of the
|
|
|
|
|
;;; Common Vulnerabilities and Exposures (CVE) feeds provided by the US NIST
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
;;; at <https://nvd.nist.gov/vuln/data-feeds>.
|
2015-11-26 15:52:25 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
(define (string->date* str)
|
|
|
|
|
(string->date str "~Y-~m-~dT~H:~M~z"))
|
|
|
|
|
|
|
|
|
|
(define-json-mapping <cve-item> cve-item cve-item?
|
|
|
|
|
json->cve-item
|
|
|
|
|
(cve cve-item-cve "cve" json->cve) ;<cve>
|
|
|
|
|
(configurations cve-item-configurations ;list of sexps
|
|
|
|
|
"configurations" configuration-data->cve-configurations)
|
|
|
|
|
(published-date cve-item-published-date
|
|
|
|
|
"publishedDate" string->date*)
|
|
|
|
|
(last-modified-date cve-item-last-modified-date
|
|
|
|
|
"lastModifiedDate" string->date*))
|
|
|
|
|
|
|
|
|
|
(define-json-mapping <cve> cve cve?
|
|
|
|
|
json->cve
|
|
|
|
|
(id cve-id "CVE_data_meta" ;string
|
|
|
|
|
(cut assoc-ref <> "ID"))
|
|
|
|
|
(data-type cve-data-type ;'CVE
|
|
|
|
|
"data_type" string->symbol)
|
|
|
|
|
(data-format cve-data-format ;'MITRE
|
|
|
|
|
"data_format" string->symbol)
|
2020-07-09 17:00:58 -04:00
|
|
|
|
(references cve-references ;list of <cve-reference>
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
"references" reference-data->cve-references))
|
|
|
|
|
|
|
|
|
|
(define-json-mapping <cve-reference> cve-reference cve-reference?
|
|
|
|
|
json->cve-reference
|
|
|
|
|
(url cve-reference-url) ;string
|
|
|
|
|
(tags cve-reference-tags ;list of strings
|
|
|
|
|
"tags" vector->list))
|
|
|
|
|
|
|
|
|
|
(define (reference-data->cve-references alist)
|
|
|
|
|
(map json->cve-reference
|
|
|
|
|
(vector->list (assoc-ref alist "reference_data"))))
|
|
|
|
|
|
|
|
|
|
(define %cpe-package-rx
|
|
|
|
|
;; For applications: "cpe:2.3:a:VENDOR:PACKAGE:VERSION", or sometimes
|
|
|
|
|
;; "cpe:2.3:a:VENDOR:PACKAGE:VERSION:PATCH-LEVEL".
|
|
|
|
|
(make-regexp "^cpe:2\\.3:a:([^:]+):([^:]+):([^:]+):([^:]+):"))
|
|
|
|
|
|
|
|
|
|
(define (cpe->package-name cpe)
|
|
|
|
|
"Converts the Common Platform Enumeration (CPE) string CPE to a package
|
|
|
|
|
name, in a very naive way. Return two values: the package name, and its
|
|
|
|
|
version string. Return #f and #f if CPE does not look like an application CPE
|
|
|
|
|
string."
|
|
|
|
|
(cond ((regexp-exec %cpe-package-rx cpe)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (matches)
|
|
|
|
|
(values (match:substring matches 2)
|
|
|
|
|
(match (match:substring matches 3)
|
|
|
|
|
("*" '_)
|
|
|
|
|
(version
|
|
|
|
|
(string-append version
|
|
|
|
|
(match (match:substring matches 4)
|
|
|
|
|
("" "")
|
|
|
|
|
(patch-level
|
|
|
|
|
;; Drop the colon from things like
|
|
|
|
|
;; "cpe:2.3:a:openbsd:openssh:6.8:p1".
|
|
|
|
|
(string-drop patch-level 1)))))))))
|
|
|
|
|
(else
|
|
|
|
|
(values #f #f))))
|
|
|
|
|
|
|
|
|
|
(define (cpe-match->cve-configuration alist)
|
|
|
|
|
"Convert ALIST, a \"cpe_match\" alist, into an sexp representing the package
|
|
|
|
|
and versions matched. Return #f if ALIST doesn't correspond to an application
|
|
|
|
|
package."
|
|
|
|
|
(let ((cpe (assoc-ref alist "cpe23Uri"))
|
|
|
|
|
(starti (assoc-ref alist "versionStartIncluding"))
|
|
|
|
|
(starte (assoc-ref alist "versionStartExcluding"))
|
|
|
|
|
(endi (assoc-ref alist "versionEndIncluding"))
|
|
|
|
|
(ende (assoc-ref alist "versionEndExcluding")))
|
|
|
|
|
(let-values (((package version) (cpe->package-name cpe)))
|
|
|
|
|
(and package
|
|
|
|
|
`(,package
|
|
|
|
|
,(cond ((and (or starti starte) (or endi ende))
|
|
|
|
|
`(and ,(if starti `(>= ,starti) `(> ,starte))
|
|
|
|
|
,(if endi `(<= ,endi) `(< ,ende))))
|
|
|
|
|
(starti `(>= ,starti))
|
|
|
|
|
(starte `(> ,starte))
|
|
|
|
|
(endi `(<= ,endi))
|
|
|
|
|
(ende `(< ,ende))
|
|
|
|
|
(else version)))))))
|
|
|
|
|
|
|
|
|
|
(define (configuration-data->cve-configurations alist)
|
|
|
|
|
"Given ALIST, a JSON dictionary for the baroque \"configurations\"
|
|
|
|
|
element found in CVEs, return an sexp such as (\"binutils\" (<
|
|
|
|
|
\"2.31\")) that represents matching configurations."
|
|
|
|
|
(define string->operator
|
|
|
|
|
(match-lambda
|
|
|
|
|
("OR" 'or)
|
|
|
|
|
("AND" 'and)))
|
|
|
|
|
|
|
|
|
|
(define (node->configuration node)
|
|
|
|
|
(let ((operator (string->operator (assoc-ref node "operator"))))
|
|
|
|
|
(cond
|
|
|
|
|
((assoc-ref node "cpe_match")
|
|
|
|
|
=>
|
|
|
|
|
(lambda (matches)
|
|
|
|
|
(let ((matches (vector->list matches)))
|
|
|
|
|
(match (filter-map cpe-match->cve-configuration
|
|
|
|
|
matches)
|
|
|
|
|
(() #f)
|
|
|
|
|
((one) one)
|
|
|
|
|
(lst (cons operator lst))))))
|
|
|
|
|
((assoc-ref node "children") ;typically for 'and'
|
|
|
|
|
=>
|
|
|
|
|
(lambda (children)
|
|
|
|
|
(match (filter-map node->configuration (vector->list children))
|
|
|
|
|
(() #f)
|
|
|
|
|
((one) one)
|
|
|
|
|
(lst (cons operator lst)))))
|
|
|
|
|
(else
|
|
|
|
|
#f))))
|
|
|
|
|
|
|
|
|
|
(let ((nodes (vector->list (assoc-ref alist "nodes"))))
|
|
|
|
|
(filter-map node->configuration nodes)))
|
|
|
|
|
|
|
|
|
|
(define (json->cve-items json)
|
|
|
|
|
"Parse JSON, an input port or a string, and return a list of <cve-item>
|
|
|
|
|
records."
|
|
|
|
|
(let* ((alist (json->scm json))
|
|
|
|
|
(type (assoc-ref alist "CVE_data_type"))
|
|
|
|
|
(format (assoc-ref alist "CVE_data_format"))
|
|
|
|
|
(version (assoc-ref alist "CVE_data_version")))
|
|
|
|
|
(unless (equal? type "CVE")
|
|
|
|
|
(raise (condition (&message
|
|
|
|
|
(message "invalid CVE feed")))))
|
|
|
|
|
(unless (equal? format "MITRE")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (formatted-message (G_ "unsupported CVE format: '~a'")
|
|
|
|
|
format)))
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
(unless (equal? version "4.0")
|
2020-07-25 12:26:18 -04:00
|
|
|
|
(raise (formatted-message (G_ "unsupported CVE data version: '~a'")
|
|
|
|
|
version)))
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
|
|
|
|
|
(map json->cve-item
|
|
|
|
|
(vector->list (assoc-ref alist "CVE_Items")))))
|
|
|
|
|
|
|
|
|
|
(define (version-matches? version sexp)
|
|
|
|
|
"Return true if VERSION, a string, matches SEXP."
|
|
|
|
|
(match sexp
|
|
|
|
|
('_
|
|
|
|
|
#t)
|
|
|
|
|
((? string? expected)
|
|
|
|
|
(version-prefix? expected version))
|
|
|
|
|
(('or sexps ...)
|
|
|
|
|
(any (cut version-matches? version <>) sexps))
|
|
|
|
|
(('and sexps ...)
|
|
|
|
|
(every (cut version-matches? version <>) sexps))
|
|
|
|
|
(('< max)
|
|
|
|
|
(version>? max version))
|
|
|
|
|
(('<= max)
|
|
|
|
|
(version>=? max version))
|
|
|
|
|
(('> min)
|
|
|
|
|
(version>? version min))
|
|
|
|
|
(('>= min)
|
|
|
|
|
(version>=? version min))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; High-level interface.
|
|
|
|
|
;;;
|
2015-11-26 15:52:25 -05:00
|
|
|
|
|
2016-03-11 09:55:57 -05:00
|
|
|
|
(define %now
|
|
|
|
|
(current-date))
|
|
|
|
|
(define %current-year
|
|
|
|
|
(date-year %now))
|
|
|
|
|
(define %past-year
|
|
|
|
|
(- %current-year 1))
|
|
|
|
|
|
|
|
|
|
(define (yearly-feed-uri year)
|
|
|
|
|
"Return the URI for the CVE feed for YEAR."
|
2015-11-26 15:52:25 -05:00
|
|
|
|
(string->uri
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
(string-append "https://nvd.nist.gov/feeds/json/cve/1.1/nvdcve-1.1-"
|
|
|
|
|
(number->string year) ".json.gz")))
|
2015-11-26 15:52:25 -05:00
|
|
|
|
|
2016-03-11 09:55:57 -05:00
|
|
|
|
(define %current-year-ttl
|
2015-11-26 15:52:25 -05:00
|
|
|
|
;; According to <https://nvd.nist.gov/download.cfm#CVE_FEED>, feeds are
|
|
|
|
|
;; updated "approximately every two hours."
|
2017-11-15 04:23:38 -05:00
|
|
|
|
(* 60 30))
|
2015-11-26 15:52:25 -05:00
|
|
|
|
|
2016-03-11 09:55:57 -05:00
|
|
|
|
(define %past-year-ttl
|
|
|
|
|
;; Update the previous year's database more and more infrequently.
|
2017-11-15 04:23:38 -05:00
|
|
|
|
(* 3600 24 (date-month %now)))
|
2015-11-26 15:52:25 -05:00
|
|
|
|
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
(define-record-type <vulnerability>
|
|
|
|
|
(vulnerability id packages)
|
|
|
|
|
vulnerability?
|
|
|
|
|
(id vulnerability-id) ;string
|
|
|
|
|
(packages vulnerability-packages)) ;((p1 sexp1) (p2 sexp2) ...)
|
2015-11-26 15:52:25 -05:00
|
|
|
|
|
2016-05-23 11:42:32 -04:00
|
|
|
|
(define vulnerability->sexp
|
|
|
|
|
(match-lambda
|
|
|
|
|
(($ <vulnerability> id packages)
|
|
|
|
|
`(v ,id ,packages))))
|
|
|
|
|
|
|
|
|
|
(define sexp->vulnerability
|
|
|
|
|
(match-lambda
|
|
|
|
|
(('v id (packages ...))
|
|
|
|
|
(vulnerability id packages))))
|
|
|
|
|
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
(define (cve-configuration->package-list config)
|
|
|
|
|
"Parse CONFIG, a config sexp, and return a list of the form (P SEXP)
|
|
|
|
|
where P is a package name and SEXP expresses constraints on the matching
|
|
|
|
|
versions."
|
|
|
|
|
(let loop ((config config)
|
|
|
|
|
(packages '()))
|
|
|
|
|
(match config
|
|
|
|
|
(('or configs ...)
|
|
|
|
|
(fold loop packages configs))
|
|
|
|
|
(('and config _ ...) ;XXX
|
|
|
|
|
(loop config packages))
|
|
|
|
|
(((? string? package) '_) ;any version
|
|
|
|
|
(cons `(,package _)
|
|
|
|
|
(alist-delete package packages)))
|
|
|
|
|
(((? string? package) sexp)
|
|
|
|
|
(let ((previous (assoc-ref packages package)))
|
|
|
|
|
(if previous
|
|
|
|
|
(cons `(,package (or ,sexp ,@previous))
|
|
|
|
|
(alist-delete package packages))
|
|
|
|
|
(cons `(,package ,sexp) packages)))))))
|
|
|
|
|
|
|
|
|
|
(define (merge-package-lists lst)
|
|
|
|
|
"Merge the list in LST, each of which has the form (p sexp), where P
|
|
|
|
|
is the name of a package and SEXP is an sexp that constrains matching
|
|
|
|
|
versions."
|
|
|
|
|
(fold (lambda (plist result) ;XXX: quadratic
|
|
|
|
|
(fold (match-lambda*
|
|
|
|
|
(((package version) result)
|
|
|
|
|
(match (assoc-ref result package)
|
|
|
|
|
(#f
|
|
|
|
|
(cons `(,package ,version) result))
|
|
|
|
|
((previous)
|
|
|
|
|
(cons `(,package (or ,version ,previous))
|
|
|
|
|
(alist-delete package result))))))
|
|
|
|
|
result
|
|
|
|
|
plist))
|
|
|
|
|
'()
|
|
|
|
|
lst))
|
|
|
|
|
|
|
|
|
|
(define (cve-item->vulnerability item)
|
|
|
|
|
"Return a <vulnerability> corresponding to ITEM, a <cve-item> record;
|
|
|
|
|
return #f if ITEM does not list any configuration or if it does not list
|
|
|
|
|
any \"a\" (application) configuration."
|
|
|
|
|
(let ((id (cve-id (cve-item-cve item))))
|
|
|
|
|
(match (cve-item-configurations item)
|
|
|
|
|
(() ;no configurations
|
|
|
|
|
#f)
|
|
|
|
|
((configs ...)
|
|
|
|
|
(vulnerability id
|
|
|
|
|
(merge-package-lists
|
|
|
|
|
(map cve-configuration->package-list configs)))))))
|
|
|
|
|
|
|
|
|
|
(define (json->vulnerabilities json)
|
|
|
|
|
"Parse JSON, an input port or a string, and return the list of
|
|
|
|
|
vulnerabilities found therein."
|
|
|
|
|
(filter-map cve-item->vulnerability (json->cve-items json)))
|
|
|
|
|
|
2017-11-15 04:23:38 -05:00
|
|
|
|
(define (write-cache input cache)
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
"Read vulnerabilities as gzipped JSON from INPUT, and write it as a compact
|
2017-11-15 04:23:38 -05:00
|
|
|
|
sexp to CACHE."
|
|
|
|
|
(call-with-decompressed-port 'gzip input
|
|
|
|
|
(lambda (input)
|
|
|
|
|
(define vulns
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
(json->vulnerabilities input))
|
2016-03-11 09:55:57 -05:00
|
|
|
|
|
2017-11-15 04:23:38 -05:00
|
|
|
|
(write `(vulnerabilities
|
|
|
|
|
1 ;format version
|
|
|
|
|
,(map vulnerability->sexp vulns))
|
|
|
|
|
cache))))
|
2016-05-23 11:42:32 -04:00
|
|
|
|
|
2020-10-12 05:25:09 -04:00
|
|
|
|
(define* (fetch-vulnerabilities year ttl #:key (timeout 10))
|
2017-11-15 04:23:38 -05:00
|
|
|
|
"Return the list of <vulnerability> for YEAR, assuming the on-disk cache has
|
|
|
|
|
the given TTL (fetch from the NIST web site when TTL has expired)."
|
|
|
|
|
(define (cache-miss uri)
|
|
|
|
|
(format (current-error-port) "fetching CVE database for ~a...~%" year))
|
2016-05-23 11:42:32 -04:00
|
|
|
|
|
2017-09-19 15:24:31 -04:00
|
|
|
|
(define (read* port)
|
|
|
|
|
;; Disable read options to avoid populating the source property weak
|
|
|
|
|
;; table, which speeds things up, saves memory, and works around
|
|
|
|
|
;; <https://lists.gnu.org/archive/html/guile-devel/2017-09/msg00031.html>.
|
|
|
|
|
(let ((options (read-options)))
|
|
|
|
|
(dynamic-wind
|
|
|
|
|
(lambda ()
|
|
|
|
|
(read-disable 'positions))
|
|
|
|
|
(lambda ()
|
|
|
|
|
(read port))
|
|
|
|
|
(lambda ()
|
|
|
|
|
(read-options options)))))
|
|
|
|
|
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
;; Note: We used to keep the original JSON files in cache but parsing it
|
2017-11-15 04:23:38 -05:00
|
|
|
|
;; would take typically ~15s for a year of data. Thus, we instead store a
|
|
|
|
|
;; summarized version thereof as an sexp, which can be parsed in 1s or so.
|
|
|
|
|
(let* ((port (http-fetch/cached (yearly-feed-uri year)
|
|
|
|
|
#:ttl ttl
|
|
|
|
|
#:write-cache write-cache
|
2020-10-12 05:25:09 -04:00
|
|
|
|
#:cache-miss cache-miss
|
|
|
|
|
#:timeout timeout))
|
2017-11-15 04:23:38 -05:00
|
|
|
|
(sexp (read* port)))
|
|
|
|
|
(close-port port)
|
|
|
|
|
(match sexp
|
|
|
|
|
(('vulnerabilities 1 vulns)
|
|
|
|
|
(map sexp->vulnerability vulns)))))
|
2016-05-23 11:42:32 -04:00
|
|
|
|
|
2020-10-12 05:25:09 -04:00
|
|
|
|
(define* (current-vulnerabilities #:key (timeout 10))
|
2016-05-23 11:42:32 -04:00
|
|
|
|
"Return the current list of Common Vulnerabilities and Exposures (CVE) as
|
2020-10-12 05:25:09 -04:00
|
|
|
|
published by the US NIST. TIMEOUT specifies the timeout in seconds for
|
|
|
|
|
connection establishment."
|
2016-05-26 17:00:08 -04:00
|
|
|
|
(let ((past-years (unfold (cut > <> 3)
|
|
|
|
|
(lambda (n)
|
|
|
|
|
(- %current-year n))
|
|
|
|
|
1+
|
|
|
|
|
1))
|
|
|
|
|
(past-ttls (unfold (cut > <> 3)
|
|
|
|
|
(lambda (n)
|
|
|
|
|
(* n %past-year-ttl))
|
|
|
|
|
1+
|
|
|
|
|
1)))
|
2020-10-12 05:25:09 -04:00
|
|
|
|
(append-map (cut fetch-vulnerabilities <> <> #:timeout timeout)
|
2016-05-26 17:00:08 -04:00
|
|
|
|
(cons %current-year past-years)
|
|
|
|
|
(cons %current-year-ttl past-ttls))))
|
2015-11-26 15:52:25 -05:00
|
|
|
|
|
|
|
|
|
(define (vulnerabilities->lookup-proc vulnerabilities)
|
|
|
|
|
"Return a lookup procedure built from VULNERABILITIES that takes a package
|
|
|
|
|
name and optionally a version number. When the version is omitted, the lookup
|
2016-05-27 18:44:36 -04:00
|
|
|
|
procedure returns a list of vulnerabilities; otherwise, it returns a list of
|
|
|
|
|
vulnerabilities affecting the given package version."
|
2015-11-26 15:52:25 -05:00
|
|
|
|
(define table
|
|
|
|
|
;; Map package names to lists of version/vulnerability pairs.
|
|
|
|
|
(fold (lambda (vuln table)
|
|
|
|
|
(match vuln
|
|
|
|
|
(($ <vulnerability> id packages)
|
|
|
|
|
(fold (lambda (package table)
|
|
|
|
|
(match package
|
2016-05-27 18:44:36 -04:00
|
|
|
|
((name . versions)
|
|
|
|
|
(vhash-cons name (cons vuln versions)
|
2015-11-26 15:52:25 -05:00
|
|
|
|
table))))
|
|
|
|
|
table
|
|
|
|
|
packages))))
|
|
|
|
|
vlist-null
|
|
|
|
|
vulnerabilities))
|
|
|
|
|
|
|
|
|
|
(lambda* (package #:optional version)
|
|
|
|
|
(vhash-fold* (if version
|
|
|
|
|
(lambda (pair result)
|
|
|
|
|
(match pair
|
cve: Rewrite to read the JSON feed instead of the XML feed.
The XML feed was discontinued on Oct. 16th, 2019:
<https://nvd.nist.gov/General/News/XML-Vulnerability-Feed-Retirement-Phase-3>
* guix/cve.scm (string->date*): New procedure.
(<cve-item>, <cve>, <cve-reference>): New record types.
(cpe-match->cve-configuration, configuration-data->cve-configurations)
(json->cve-items, version-matches?): New procedures.
(yearly-feed-uri): Change URL to refer to JSON feed.
(cpe->product-alist, %parse-vulnerability-feed)
(xml->vulnerabilities): Remove.
(cve-configuration->package-list, merge-package-lists)
(cve-item->vulnerability, json->vulnerabilities): New procedures.
(write-cache): Use 'json->vulnerabilities' instead of
'xml->vulnerabilities', and remove 'parameterize'.
(vulnerabilities->lookup-proc): Use 'version-matches?' when VERSION is
true.
* tests/cve.scm (%sample): Use 'tests/cve-sample.json'.
(%expected-vulnerabilities): Rewrite accordingly.
("json->cve-items", "cve-item-published-date")
("json->vulnerabilities"): New tests.
("xml->vulnerabilities"): Remove.
("vulnerabilities->lookup-proc"): Adjust to new vulnerabilities.
* tests/cve-sample.json: New file.
* tests/cve-sample.xml: Remove.
* Makefile.am (EXTRA_DIST): Adjust accordingly.
* doc/guix.texi (Invoking guix lint): Update nist.gov URLs.
2019-10-20 16:10:00 -04:00
|
|
|
|
((vuln sexp)
|
|
|
|
|
(if (version-matches? version sexp)
|
2015-11-26 15:52:25 -05:00
|
|
|
|
(cons vuln result)
|
|
|
|
|
result))))
|
2016-05-27 18:44:36 -04:00
|
|
|
|
(lambda (pair result)
|
|
|
|
|
(match pair
|
|
|
|
|
((vuln . _)
|
|
|
|
|
(cons vuln result)))))
|
2015-11-26 15:52:25 -05:00
|
|
|
|
'()
|
|
|
|
|
package table)))
|
|
|
|
|
|
2016-03-11 09:55:57 -05:00
|
|
|
|
|
2015-11-26 15:52:25 -05:00
|
|
|
|
;;; cve.scm ends here
|