Searched hist:e59f39d40397645477b959255aedfa17a7c9c779 (Results 1 – 3 of 3) sorted by relevance
/openbmc/qemu/util/ |
H A D | unicode.c | diff e59f39d40397645477b959255aedfa17a7c9c779 Thu Aug 23 11:39:49 CDT 2018 Markus Armbruster <armbru@redhat.com> json: Reject invalid UTF-8 sequences
We reject bytes that can't occur in valid UTF-8 (\xC0..\xC1, \xF5..\xFF in the lexer. That's insufficient; there's plenty of invalid UTF-8 not containing these bytes, as demonstrated by check-qjson:
* Malformed sequences
- Unexpected continuation bytes
- Missing continuation bytes after start bytes other than \xC0..\xC1, \xF5..\xFD.
* Overlong sequences with start bytes other than \xC0..\xC1, \xF5..\xFD.
* Invalid code points
Fixing this in the lexer would be bothersome. Fixing it in the parser is straightforward, so do that.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20180823164025.12553-23-armbru@redhat.com>
|
/openbmc/qemu/include/qemu/ |
H A D | unicode.h | diff e59f39d40397645477b959255aedfa17a7c9c779 Thu Aug 23 11:39:49 CDT 2018 Markus Armbruster <armbru@redhat.com> json: Reject invalid UTF-8 sequences
We reject bytes that can't occur in valid UTF-8 (\xC0..\xC1, \xF5..\xFF in the lexer. That's insufficient; there's plenty of invalid UTF-8 not containing these bytes, as demonstrated by check-qjson:
* Malformed sequences
- Unexpected continuation bytes
- Missing continuation bytes after start bytes other than \xC0..\xC1, \xF5..\xFD.
* Overlong sequences with start bytes other than \xC0..\xC1, \xF5..\xFD.
* Invalid code points
Fixing this in the lexer would be bothersome. Fixing it in the parser is straightforward, so do that.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20180823164025.12553-23-armbru@redhat.com>
|
/openbmc/qemu/qobject/ |
H A D | json-parser.c | diff e59f39d40397645477b959255aedfa17a7c9c779 Thu Aug 23 11:39:49 CDT 2018 Markus Armbruster <armbru@redhat.com> json: Reject invalid UTF-8 sequences
We reject bytes that can't occur in valid UTF-8 (\xC0..\xC1, \xF5..\xFF in the lexer. That's insufficient; there's plenty of invalid UTF-8 not containing these bytes, as demonstrated by check-qjson:
* Malformed sequences
- Unexpected continuation bytes
- Missing continuation bytes after start bytes other than \xC0..\xC1, \xF5..\xFD.
* Overlong sequences with start bytes other than \xC0..\xC1, \xF5..\xFD.
* Invalid code points
Fixing this in the lexer would be bothersome. Fixing it in the parser is straightforward, so do that.
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20180823164025.12553-23-armbru@redhat.com>
|