Browse Source

Use strcpy instead of memcpy+strlen.

This replaces uses of:

	memcpy(dst, src, strlen(src))

with:

	strcpy(dst, src)

This fixes issues with reading past the end of the copied buffer
(e.g. when processing word-based replacements for emoji characters)
by ensuring that the destination buffer is null terminated.

Reported by Michael Curran <[email protected]>
master
Reece H. Dunn 7 years ago
parent
commit
119c200e00
5 changed files with 31 additions and 8 deletions
  1. 1
    0
      .gitignore
  2. 1
    0
      Makefile.am
  3. 2
    2
      src/libespeak-ng/dictionary.c
  4. 6
    6
      src/libespeak-ng/translate.c
  5. 21
    0
      tests/phoneme-output.test

+ 1
- 0
.gitignore View File



tests/*.test tests/*.test
!tests/languages.test !tests/languages.test
!tests/phoneme-output.test


espeak-ng.pc espeak-ng.pc



+ 1
- 0
Makefile.am View File

check: tests/encoding.check \ check: tests/encoding.check \
tests/readclause.check \ tests/readclause.check \
tests/api.check \ tests/api.check \
tests/phoneme-output.check \
tests/languages.check tests/languages.check


##### phoneme data: ##### phoneme data:

+ 2
- 2
src/libespeak-ng/dictionary.c View File

match1.end_type |= p - p_start; match1.end_type |= p - p_start;
} }
strcpy(end_phonemes, match1.phonemes); strcpy(end_phonemes, match1.phonemes);
memcpy(p_start, word_copy, strlen(word_copy));
strcpy(p_start, word_copy);
return match1.end_type; return match1.end_type;
} }
} }
} }
} }


memcpy(p_start, word_copy, strlen(word_copy));
strcpy(p_start, word_copy);


return 0; return 0;
} }

+ 6
- 6
src/libespeak-ng/translate.c View File

if (end2) { if (end2) {
RemoveEnding(tr, wordx, end2, word_copy); RemoveEnding(tr, wordx, end2, word_copy);
end_type = TranslateRules(tr, wordx, phonemes, N_WORD_PHONEMES, end_phonemes, wflags|FLAG_NO_TRACE, dictionary_flags); end_type = TranslateRules(tr, wordx, phonemes, N_WORD_PHONEMES, end_phonemes, wflags|FLAG_NO_TRACE, dictionary_flags);
memcpy(wordx, word_copy, strlen(word_copy));
strcpy(wordx, word_copy);
if ((end_type & SUFX_P) == 0) { if ((end_type & SUFX_P) == 0) {
// after removing the suffix, the prefix is no longer recognised. // after removing the suffix, the prefix is no longer recognised.
// Keep the suffix, but don't use the prefix // Keep the suffix, but don't use the prefix
wordx[-1] = ' '; wordx[-1] = ' ';
if (phonemes[0] == phonSWITCH) { if (phonemes[0] == phonSWITCH) {
// change to another language in order to translate this word // change to another language in order to translate this word
memcpy(wordx, word_copy, strlen(word_copy));
strcpy(wordx, word_copy);
strcpy(word_phonemes, phonemes); strcpy(word_phonemes, phonemes);
return 0; return 0;
} }
found = LookupDictList(tr, &wordx, phonemes, dictionary_flags2, end_flags, wtab); // without prefix and suffix found = LookupDictList(tr, &wordx, phonemes, dictionary_flags2, end_flags, wtab); // without prefix and suffix
if (phonemes[0] == phonSWITCH) { if (phonemes[0] == phonSWITCH) {
// change to another language in order to translate this word // change to another language in order to translate this word
memcpy(wordx, word_copy, strlen(word_copy));
strcpy(wordx, word_copy);
strcpy(word_phonemes, phonemes); strcpy(word_phonemes, phonemes);
return 0; return 0;
} }
if (phonemes[0] == phonSWITCH) { if (phonemes[0] == phonSWITCH) {
// change to another language in order to translate this word // change to another language in order to translate this word
strcpy(word_phonemes, phonemes); strcpy(word_phonemes, phonemes);
memcpy(wordx, word_copy, strlen(word_copy));
strcpy(wordx, word_copy);
wordx[-1] = c_temp; wordx[-1] = c_temp;
return 0; return 0;
} }
AppendPhonemes(tr, phonemes, N_WORD_PHONEMES, end_phonemes); AppendPhonemes(tr, phonemes, N_WORD_PHONEMES, end_phonemes);
end_phonemes[0] = 0; end_phonemes[0] = 0;
} }
memcpy(wordx, word_copy, strlen(word_copy));
strcpy(wordx, word_copy);
} }


wordx[-1] = c_temp; wordx[-1] = c_temp;
char word[N_WORD_BYTES+1]; char word[N_WORD_BYTES+1];
word[0] = 0; word[0] = 0;
word[1] = ' '; word[1] = ' ';
memcpy(word+2, word_out, strlen(word_out));
strcpy(word+2, word_out);
word_out = word+2; word_out = word+2;


while (*word_out && available > 1) { while (*word_out && available > 1) {

+ 21
- 0
tests/phoneme-output.test View File

#!/bin/sh

test_phonemes() {
TEST_LANG=$1
EXPECTED=$2
TEST_TEXT=$3

echo "testing ${TEST_LANG} \"${TEST_TEXT}\""
ESPEAK_DATA_PATH=`pwd` LD_LIBRARY_PATH=src:${LD_LIBRARY_PATH} \
src/espeak-ng -xq -v ${TEST_LANG} "${TEST_TEXT}" > actual.txt
echo "${EXPECTED}" > expected.txt
diff expected.txt actual.txt || exit 1
}

test_phonemes en " h@l'oU" "hello"

# Emoji

# ED-3 - emoji_character [http://www.unicode.org/reports/tr51/tr51-12.html#def_emoji_character]
test_phonemes en " Ekskla#m'eIS@N kw'EstS@n m'A@k" "⁉"
test_phonemes en " Ekskla#m'eIS@N kw'EstS@n m'A@k r'eInboU" "⁉ 🌈"

Loading…
Cancel
Save