Server IP : 172.67.216.182 / Your IP : 172.70.189.161 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/php/82/src/ext/mbstring/libmbfl/filters/ |
Upload File : |
/* * "streamable kanji code filter and converter" * Copyright (c) 1998-2002 HappySize, Inc. All rights reserved. * * LICENSE NOTICES * * This file is part of "streamable kanji code filter and converter", * which is distributed under the terms of GNU Lesser General Public * License (version 2) as published by the Free Software Foundation. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with "streamable kanji code filter and converter"; * if not, write to the Free Software Foundation, Inc., 59 Temple Place, * Suite 330, Boston, MA 02111-1307 USA * * The author of this file: * */ /* * The source code included in this files was separated from mbfilter_kr.c * by moriyoshi koizumi <[email protected]> on 4 dec 2002. * */ /* ISO-2022-KR is defined in RFC 1557 * * The RFC says that ESC $ ) C must appear once in a ISO-2022-KR string, * at the beginning of a line, before any instances of the Shift In or * Shift Out bytes which are used to switch between ASCII/KSC 5601 modes * * We don't enforce that for ISO-2022-KR input */ #include "mbfilter.h" #include "mbfilter_iso2022_kr.h" #include "unicode_table_uhc.h" static int mbfl_filt_conv_2022kr_wchar_flush(mbfl_convert_filter *filter); static int mbfl_filt_conv_any_2022kr_flush(mbfl_convert_filter *filter); static size_t mb_iso2022kr_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state); static void mb_wchar_to_iso2022kr(uint32_t *in, size_t len, mb_convert_buf *buf, bool end); const mbfl_encoding mbfl_encoding_2022kr = { mbfl_no_encoding_2022kr, "ISO-2022-KR", "ISO-2022-KR", NULL, NULL, MBFL_ENCTYPE_GL_UNSAFE, &vtbl_2022kr_wchar, &vtbl_wchar_2022kr, mb_iso2022kr_to_wchar, mb_wchar_to_iso2022kr, NULL }; const struct mbfl_convert_vtbl vtbl_wchar_2022kr = { mbfl_no_encoding_wchar, mbfl_no_encoding_2022kr, mbfl_filt_conv_common_ctor, NULL, mbfl_filt_conv_wchar_2022kr, mbfl_filt_conv_any_2022kr_flush, NULL, }; const struct mbfl_convert_vtbl vtbl_2022kr_wchar = { mbfl_no_encoding_2022kr, mbfl_no_encoding_wchar, mbfl_filt_conv_common_ctor, NULL, mbfl_filt_conv_2022kr_wchar, mbfl_filt_conv_2022kr_wchar_flush, NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) int mbfl_filt_conv_2022kr_wchar(int c, mbfl_convert_filter *filter) { int w = 0; switch (filter->status & 0xf) { /* case 0x00: ASCII */ /* case 0x10: KSC5601 */ case 0: if (c == 0x1b) { /* ESC */ filter->status += 2; } else if (c == 0x0f) { /* shift in (ASCII) */ filter->status = 0; } else if (c == 0x0e) { /* shift out (KSC5601) */ filter->status = 0x10; } else if ((filter->status & 0x10) && c > 0x20 && c < 0x7f) { /* KSC5601 lead byte */ filter->cache = c; filter->status = 0x11; } else if ((filter->status & 0x10) == 0 && c >= 0 && c < 0x80) { /* latin, CTLs */ CK((*filter->output_function)(c, filter->data)); } else { CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data)); } break; case 1: /* dbcs second byte */ filter->status = 0x10; int c1 = filter->cache; int flag = 0; if (c1 > 0x20 && c1 < 0x47) { flag = 1; } else if (c1 >= 0x47 && c1 <= 0x7e && c1 != 0x49) { flag = 2; } if (flag > 0 && c > 0x20 && c < 0x7f) { if (flag == 1) { if (c1 != 0x22 || c <= 0x65) { w = (c1 - 0x21)*190 + (c - 0x41) + 0x80; ZEND_ASSERT(w < uhc2_ucs_table_size); w = uhc2_ucs_table[w]; } } else { w = (c1 - 0x47)*94 + c - 0x21; if (w < uhc3_ucs_table_size) { w = uhc3_ucs_table[w]; } else { w = MBFL_BAD_INPUT; } } if (w <= 0) { w = MBFL_BAD_INPUT; } CK((*filter->output_function)(w, filter->data)); } else { CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data)); } break; case 2: /* ESC */ if (c == '$') { filter->status++; } else { filter->status &= ~0xF; CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data)); } break; case 3: /* ESC $ */ if (c == ')') { filter->status++; } else { filter->status &= ~0xF; CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data)); } break; case 4: /* ESC $ ) */ filter->status = 0; if (c != 'C') { CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data)); } break; EMPTY_SWITCH_DEFAULT_CASE(); } return 0; } static int mbfl_filt_conv_2022kr_wchar_flush(mbfl_convert_filter *filter) { if (filter->status & 0xF) { /* 2-byte character was truncated */ CK((*filter->output_function)(MBFL_BAD_INPUT, filter->data)); } filter->status = 0; if (filter->flush_function) { (*filter->flush_function)(filter->data); } return 0; } int mbfl_filt_conv_wchar_2022kr(int c, mbfl_convert_filter *filter) { int c1, c2, s = 0; if ((filter->status & 0x100) == 0) { CK((*filter->output_function)(0x1b, filter->data)); /* ESC */ CK((*filter->output_function)('$', filter->data)); CK((*filter->output_function)(')', filter->data)); CK((*filter->output_function)('C', filter->data)); filter->status |= 0x100; } if (c >= ucs_a1_uhc_table_min && c < ucs_a1_uhc_table_max) { s = ucs_a1_uhc_table[c - ucs_a1_uhc_table_min]; } else if (c >= ucs_a2_uhc_table_min && c < ucs_a2_uhc_table_max) { s = ucs_a2_uhc_table[c - ucs_a2_uhc_table_min]; } else if (c >= ucs_a3_uhc_table_min && c < ucs_a3_uhc_table_max) { s = ucs_a3_uhc_table[c - ucs_a3_uhc_table_min]; } else if (c >= ucs_i_uhc_table_min && c < ucs_i_uhc_table_max) { s = ucs_i_uhc_table[c - ucs_i_uhc_table_min]; } else if (c >= ucs_s_uhc_table_min && c < ucs_s_uhc_table_max) { s = ucs_s_uhc_table[c - ucs_s_uhc_table_min]; } else if (c >= ucs_r1_uhc_table_min && c < ucs_r1_uhc_table_max) { s = ucs_r1_uhc_table[c - ucs_r1_uhc_table_min]; } else if (c >= ucs_r2_uhc_table_min && c < ucs_r2_uhc_table_max) { s = ucs_r2_uhc_table[c - ucs_r2_uhc_table_min]; } c1 = (s >> 8) & 0xff; c2 = s & 0xff; /* exclude UHC extension area */ if (c1 < 0xa1 || c2 < 0xa1) { s = c; } else if (s & 0x8000) { s -= 0x8080; } if (s <= 0) { if (c == 0) { s = 0; } else { s = -1; } } else if ((s >= 0x80 && s < 0x2121) || (s > 0x8080)) { s = -1; } if (s >= 0) { if (s < 0x80 && s >= 0) { /* ASCII */ if (filter->status & 0x10) { CK((*filter->output_function)(0x0f, filter->data)); /* shift in */ filter->status &= ~0x10; } CK((*filter->output_function)(s, filter->data)); } else { if ((filter->status & 0x10) == 0) { CK((*filter->output_function)(0x0e, filter->data)); /* shift out */ filter->status |= 0x10; } CK((*filter->output_function)((s >> 8) & 0xff, filter->data)); CK((*filter->output_function)(s & 0xff, filter->data)); } } else { CK(mbfl_filt_conv_illegal_output(c, filter)); } return 0; } static int mbfl_filt_conv_any_2022kr_flush(mbfl_convert_filter *filter) { if (filter->status & 0xF) { /* Escape sequence or 2-byte character was truncated */ (*filter->output_function)(MBFL_BAD_INPUT, filter->data); } /* back to ascii */ if (filter->status & 0x10) { CK((*filter->output_function)(0x0f, filter->data)); /* shift in */ } filter->status = filter->cache = 0; if (filter->flush_function) { return (*filter->flush_function)(filter->data); } return 0; } #define ASCII 0 #define KSC5601 1 static size_t mb_iso2022kr_to_wchar(unsigned char **in, size_t *in_len, uint32_t *buf, size_t bufsize, unsigned int *state) { unsigned char *p = *in, *e = p + *in_len; uint32_t *out = buf, *limit = buf + bufsize; while (p < e && out < limit) { unsigned char c = *p++; if (c == 0x1B) { if ((e - p) < 3) { *out++ = MBFL_BAD_INPUT; if (p < e && *p++ == '$') { if (p < e) { p++; } } continue; } unsigned char c2 = *p++; unsigned char c3 = *p++; unsigned char c4 = *p++; if (c2 == '$' && c3 == ')' && c4 == 'C') { *state = ASCII; } else { if (c3 != ')') { p--; if (c2 != '$') p--; } *out++ = MBFL_BAD_INPUT; } } else if (c == 0xF) { *state = ASCII; } else if (c == 0xE) { *state = KSC5601; } else if (c >= 0x21 && c <= 0x7E && *state == KSC5601) { if (p == e) { *out++ = MBFL_BAD_INPUT; break; } unsigned char c2 = *p++; unsigned int w = 0; if (c2 < 0x21 || c2 > 0x7E) { *out++ = MBFL_BAD_INPUT; continue; } if (c < 0x47) { if (c != 0x22 || c2 <= 0x65) { w = (c - 0x21)*190 + (c2 - 0x41) + 0x80; ZEND_ASSERT(w < uhc2_ucs_table_size); w = uhc2_ucs_table[w]; } } else if (c != 0x49 && c <= 0x7D) { w = (c - 0x47)*94 + c2 - 0x21; ZEND_ASSERT(w < uhc3_ucs_table_size); w = uhc3_ucs_table[w]; } if (!w) w = MBFL_BAD_INPUT; *out++ = w; } else if (c < 0x80 && *state == ASCII) { *out++ = c; } else { *out++ = MBFL_BAD_INPUT; } } *in_len = e - p; *in = p; return out - buf; } #define EMITTED_ESC_SEQUENCE 0x10 static void mb_wchar_to_iso2022kr(uint32_t *in, size_t len, mb_convert_buf *buf, bool end) { unsigned char *out, *limit; MB_CONVERT_BUF_LOAD(buf, out, limit); /* This escape sequence needs to come *somewhere* at the beginning of a line before * we can use the Shift In/Shift Out bytes, but it only needs to come once in a string * Rather than tracking newlines, we can just emit the sequence once at the beginning * of the output string... since that will always be "the beginning of a line" */ if (len && !(buf->state & EMITTED_ESC_SEQUENCE)) { MB_CONVERT_BUF_ENSURE(buf, out, limit, 4 + len); out = mb_convert_buf_add4(out, 0x1B, '$', ')', 'C'); buf->state |= EMITTED_ESC_SEQUENCE; } else { MB_CONVERT_BUF_ENSURE(buf, out, limit, len); } while (len--) { uint32_t w = *in++; unsigned int s = 0; if (w >= ucs_a1_uhc_table_min && w < ucs_a1_uhc_table_max) { s = ucs_a1_uhc_table[w - ucs_a1_uhc_table_min]; } else if (w >= ucs_a2_uhc_table_min && w < ucs_a2_uhc_table_max) { s = ucs_a2_uhc_table[w - ucs_a2_uhc_table_min]; } else if (w >= ucs_a3_uhc_table_min && w < ucs_a3_uhc_table_max) { s = ucs_a3_uhc_table[w - ucs_a3_uhc_table_min]; } else if (w >= ucs_i_uhc_table_min && w < ucs_i_uhc_table_max) { s = ucs_i_uhc_table[w - ucs_i_uhc_table_min]; } else if (w >= ucs_s_uhc_table_min && w < ucs_s_uhc_table_max) { s = ucs_s_uhc_table[w - ucs_s_uhc_table_min]; } else if (w >= ucs_r1_uhc_table_min && w < ucs_r1_uhc_table_max) { s = ucs_r1_uhc_table[w - ucs_r1_uhc_table_min]; } else if (w >= ucs_r2_uhc_table_min && w < ucs_r2_uhc_table_max) { s = ucs_r2_uhc_table[w - ucs_r2_uhc_table_min]; } if (((s >> 8) & 0xFF) < 0xA1 || (s & 0xFF) < 0xA1) { s = w; } else { s -= 0x8080; } if ((s >= 0x80 && s < 0x2121) || (s > 0x8080)) { MB_CONVERT_ERROR(buf, out, limit, w, mb_wchar_to_iso2022kr); MB_CONVERT_BUF_ENSURE(buf, out, limit, len); } else if (s < 0x80) { if ((buf->state & 1) != ASCII) { MB_CONVERT_BUF_ENSURE(buf, out, limit, len + 2); out = mb_convert_buf_add(out, 0xF); buf->state &= ~KSC5601; } out = mb_convert_buf_add(out, s); } else { if ((buf->state & 1) != KSC5601) { MB_CONVERT_BUF_ENSURE(buf, out, limit, len + 3); out = mb_convert_buf_add(out, 0xE); buf->state |= KSC5601; } else { MB_CONVERT_BUF_ENSURE(buf, out, limit, len + 2); } out = mb_convert_buf_add2(out, (s >> 8) & 0xFF, s & 0xFF); } } if (end && (buf->state & 1) != ASCII) { MB_CONVERT_BUF_ENSURE(buf, out, limit, 1); out = mb_convert_buf_add(out, 0xF); } MB_CONVERT_BUF_STORE(buf, out, limit); }