diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-12-21 17:39:32 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-12-21 17:39:32 -0500 |
commit | d5633af7b60ba70fb0e1713df69af6672d52e2cd (patch) | |
tree | 3da8250168afc23f8fedf37dee1497d91a080611 | |
parent | ec2bc3264ef007e6d7b6463029de689273161336 (diff) | |
download | postgresql-d5633af7b60ba70fb0e1713df69af6672d52e2cd.tar.gz postgresql-d5633af7b60ba70fb0e1713df69af6672d52e2cd.zip |
Fix detection of unfinished Unicode surrogate pair at end of string.
The U&'...' and U&"..." syntaxes silently discarded a surrogate pair
start (that is, a code between U+D800 and U+DBFF) if it occurred at
the very end of the string. This seems like an obvious oversight,
since we throw an error for every other invalid combination of surrogate
characters, including the very same situation in E'...' syntax.
This has been wrong since the pair processing was added (in 9.0),
so back-patch to all supported branches.
Discussion: https://postgr.es/m/19113.1482337898@sss.pgh.pa.us
-rw-r--r-- | src/backend/parser/scan.l | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/backend/parser/scan.l b/src/backend/parser/scan.l index ce2c84fd098..aa8299d69ef 100644 --- a/src/backend/parser/scan.l +++ b/src/backend/parser/scan.l @@ -1428,7 +1428,15 @@ litbuf_udeescape(unsigned char escape, core_yyscan_t yyscanner) } } + /* unfinished surrogate pair? */ + if (pair_first) + { + ADVANCE_YYLLOC(in - litbuf + 3); /* 3 for U&" */ + yyerror("invalid Unicode surrogate pair"); + } + *out = '\0'; + /* * We could skip pg_verifymbstr if we didn't process any non-7-bit-ASCII * codes; but it's probably not worth the trouble, since this isn't |