diff options
author | Venkata Sidagam <venkata.sidagam@oracle.com> | 2014-01-11 14:48:29 +0530 |
---|---|---|
committer | Venkata Sidagam <venkata.sidagam@oracle.com> | 2014-01-11 14:48:29 +0530 |
commit | ff06148679933705db013ca7dbec56296e9f062c (patch) | |
tree | fd328e1f871c0e19b59c610a4dc0c95d58da265a /include | |
parent | 605aa82f5d0ae0a7521d06a9a0911b453e9dbf0d (diff) | |
download | mariadb-git-ff06148679933705db013ca7dbec56296e9f062c.tar.gz |
Bug #17760379 COLLATIONS WITH CONTRACTIONS BUFFER-OVERFLOW THEMSELVES IN THE FOOT
Description: A typo in create_tailoring() causes the "contraction_flags" to be written
into cs->contractions in the wrong place. This causes two problems:
(1) Anyone relying on `contraction_flags` to decide "could this character be
part of a contraction" is 100% broken.
(2) Anyone relying on `contractions` to determine the weight of a contraction
is mostly broken
Analysis: When we are preparing the contraction in create_tailoring(), we are corrupting the
cs->contractions memory location which is supposed to store the weights(8k) + contraction information(256 bytes). We started storing the contraction information after the 4k location. This is because of logic flaw in the code.
Fix: When we create the contractions, we need to calculate the contraction with (char*) (cs->contractions + 0x40*0x40) from ((char*) cs->contractions) + 0x40*0x40. This makes the "cs->contractions" to move to 8k bytes and stores the contraction information from there. Similarly when we are calculating it for like range queries we need to calculate it from the 8k bytes onwards, this can be done by changing the logic to (const char*) (cs->contractions + 0x40*0x40). And for ucs2 charsets we need to modify the my_cs_can_be_contraction_head() and my_cs_can_be_contraction_tail() to point to 8k+ locations.
Diffstat (limited to 'include')
-rw-r--r-- | include/m_ctype.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_ctype.h b/include/m_ctype.h index f44fe1b10de..81096f60c78 100644 --- a/include/m_ctype.h +++ b/include/m_ctype.h @@ -372,13 +372,13 @@ my_cs_have_contractions(CHARSET_INFO *cs) static inline my_bool my_cs_can_be_contraction_head(CHARSET_INFO *cs, my_wc_t wc) { - return ((const char *)cs->contractions)[0x40*0x40 + (wc & 0xFF)]; + return ((const char *) cs->contractions)[0x40 * 0x40 * 2 + (wc & 0xFF)]; } static inline my_bool my_cs_can_be_contraction_tail(CHARSET_INFO *cs, my_wc_t wc) { - return ((const char *)cs->contractions)[0x40*0x40 + (wc & 0xFF)]; + return ((const char *) cs->contractions)[0x40 * 0x40 * 2 + (wc & 0xFF)]; } static inline uint16* |