diff options
author | David Malcolm <dmalcolm@redhat.com> | 2019-05-23 00:42:03 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2019-05-23 00:42:03 +0000 |
commit | 30d3ba5142311df568e8f62a374d83d0bdab42bf (patch) | |
tree | 94063ddaab8d31b6e0f1b5ab9eb9870683948b21 /gcc/json.h | |
parent | cf9219c7420320986f9bcd956b04b95a51ebac49 (diff) | |
download | gcc-30d3ba5142311df568e8f62a374d83d0bdab42bf.zip gcc-30d3ba5142311df568e8f62a374d83d0bdab42bf.tar.gz gcc-30d3ba5142311df568e8f62a374d83d0bdab42bf.tar.bz2 |
Bulletproof -fdiagnostics-format=json against bad locations (PR c++/90462)
PR c++/90462 reports an ICE with -fdiagnostics-format=json when
attempting to serialize a malformed location to JSON.
The compound location_t in question has meaningful "caret" and "start"
locations, but has UNKNOWN_LOCATION for its "finish" location,
leading to a NULL pointer dereference when attempting to build a JSON
string for the filename.
This patch bulletproofs the JSON output so that attempts to write
a JSON object for a location with a NULL file will lead to an object
with no "file" key, and attempts to write a compound location with
UNKNOWN_LOCATION for its start or finish will lead to the corresponding
JSON child object being omitted.
This patch also adds a json::object::get member function, for self-testing
the above.
gcc/ChangeLog:
PR c++/90462
* diagnostic-format-json.cc: Include "selftest.h".
(json_from_expanded_location): Only add "file" key for non-NULL
file strings.
(json_from_location_range): Don't add "start" and "finish"
children if they are UNKNOWN_LOCATION.
(selftest::test_unknown_location): New selftest.
(selftest::test_bad_endpoints): New selftest.
(selftest::diagnostic_format_json_cc_tests): New function.
* json.cc (json::object::get): New function.
(selftest::test_object_get): New selftest.
(selftest::json_cc_tests): Call it.
* json.h (json::object::get): New decl.
* selftest-run-tests.c (selftest::run_tests): Call
selftest::diagnostic_format_json_cc_tests.
* selftest.h (selftest::diagnostic_format_json_cc_tests): New
decl.
gcc/testsuite/ChangeLog:
PR c++/90462
* g++.dg/pr90462.C: New test.
From-SVN: r271535
Diffstat (limited to 'gcc/json.h')
-rw-r--r-- | gcc/json.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -90,6 +90,7 @@ class object : public value void print (pretty_printer *pp) const FINAL OVERRIDE; void set (const char *key, value *v); + value *get (const char *key) const; private: typedef hash_map <char *, value *, |