mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-10 01:17:44 +03:00
coredump: when parsing json, optionally copy the string first
This commit is contained in:
parent
4f0d1cd011
commit
87707784c7
@ -326,6 +326,19 @@ static int parse_package_metadata(const char *name, JsonVariant *id_json, Elf *e
|
||||
if (note_header.n_type != ELF_PACKAGE_METADATA_ID)
|
||||
continue;
|
||||
|
||||
_cleanup_free_ char *payload_0suffixed = NULL;
|
||||
assert(note_offset > desc_offset);
|
||||
size_t payload_len = note_offset - desc_offset;
|
||||
|
||||
/* If we are lucky and the payload is NUL-padded, we don't need to copy the string.
|
||||
* But if happens to go all the way until the end of the buffer, make a copy. */
|
||||
if (payload[payload_len-1] != '\0') {
|
||||
payload_0suffixed = memdup_suffix0(payload, payload_len);
|
||||
if (!payload_0suffixed)
|
||||
return log_oom();
|
||||
payload = payload_0suffixed;
|
||||
}
|
||||
|
||||
r = json_parse(payload, 0, &v, NULL, NULL);
|
||||
if (r < 0)
|
||||
return log_error_errno(r, "json_parse on %s failed: %m", payload);
|
||||
|
Loading…
Reference in New Issue
Block a user