package/pkg-utils: escape \ in generated legal-info
authorYann E. MORIN <yann.morin.1998@free.fr>
Sat, 6 Feb 2021 08:51:02 +0000 (09:51 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sun, 7 Feb 2021 09:32:40 +0000 (10:32 +0100)
commite4c284e6b931fb4eabda57322fbcede798f63bef
treeac0c67f9959e839befbf7aca72af1ff0b90f0e79
parent3658c1362b3c7423f23d6c7fd1c4874e21e1d64c
package/pkg-utils: escape \ in generated legal-info

In the output of legal-info, which is JSON-formatted, we include the
CPI_ID (when it is valid).

For xerces, the CPE_ID contains two sequences of \+ (which is exactly
what is present in the NIST DB, [0]).

However, in JSON, like in C, \ escapes the following character; only a
very limited set of characters are valid to escape: " \ / b f n r t u.
Escaping any other character is invalid. Conformant JSON parser will
choke on invalid sequences, and so does not the json python module:

      File "/usr/lib/python2.7/json/decoder.py", line 380, in raw_decode
        obj, end = self.scan_once(s, idx)
    ValueError: Invalid \escape: line 1 column 608554 (char 608553)

We fix that be globally escaping \ in our json output, in the generic
sanitising macro.

[0] https://nvd.nist.gov/products/cpe/detail/645?namingFormat=2.3&orderBy=CPEURI&keyword=xerces&status=FINAL

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/pkg-utils.mk