elf: Add a way to check if tunable is set (BZ 27069)
[glibc.git] / iconvdata / ibm1364.c
blob5203f30e79ed07e94e8c0cdcafeb4ab4f1ad52cf
1 /* Conversion from and to IBM1364.
2 Copyright (C) 2005-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <dlfcn.h>
20 #include <stdint.h>
21 #include <wchar.h>
22 #include <byteswap.h>
24 #ifndef CHARSET_NAME
25 /* This is really the IBM1364 converter, not another module sharing
26 the code. */
27 # define DATA_HEADER "ibm1364.h"
28 # define CHARSET_NAME "IBM1364//"
29 # define FROM_LOOP from_ibm1364
30 # define TO_LOOP to_ibm1364
31 # define SB_TO_UCS4 __ibm1364sb_to_ucs4
32 # define DB_TO_UCS4_IDX __ibm1364db_to_ucs4_idx
33 # define DB_TO_UCS4 __ibm1364db_to_ucs4
34 # define UCS4_TO_SB_IDX __ucs4_to_ibm1364sb_idx
35 # define UCS4_TO_SB __ucs4_to_ibm1364sb
36 # define UCS4_TO_DB_IDX __ucs4_to_ibm1364db_idx
37 # define UCS4_TO_DB __ucs4_to_ibm1364db
38 # define UCS_LIMIT 0xffff
39 #endif
42 #include DATA_HEADER
44 /* The shift sequences for this charset (it does not use ESC). */
45 #define SI 0x0F /* Shift In, host code to turn DBCS off. */
46 #define SO 0x0E /* Shift Out, host code to turn DBCS on. */
48 /* Definitions used in the body of the `gconv' function. */
49 #define MIN_NEEDED_FROM 1
50 #define MAX_NEEDED_FROM 2
51 #define MIN_NEEDED_TO 4
52 #ifdef HAS_COMBINED
53 # define MAX_NEEDED_TO 8
54 #else
55 # define MAX_NEEDED_TO 4
56 #endif
57 #define ONE_DIRECTION 0
58 #define PREPARE_LOOP \
59 int save_curcs; \
60 int *curcsp = &data->__statep->__count;
61 #define EXTRA_LOOP_ARGS , curcsp
63 /* Definitions of initialization and destructor function. */
64 #define DEFINE_INIT 1
65 #define DEFINE_FINI 1
68 /* Since this is a stateful encoding we have to provide code which resets
69 the output state to the initial state. This has to be done during the
70 flushing. */
71 #define EMIT_SHIFT_TO_INIT \
72 if ((data->__statep->__count & ~7) != sb) \
73 { \
74 if (FROM_DIRECTION) \
75 data->__statep->__count &= 7; \
76 else \
77 { \
78 /* We are not in the initial state. To switch back we have \
79 to emit `SI'. */ \
80 if (__glibc_unlikely (outbuf >= outend)) \
81 /* We don't have enough room in the output buffer. */ \
82 status = __GCONV_FULL_OUTPUT; \
83 else \
84 { \
85 /* Write out the shift sequence. */ \
86 *outbuf++ = SI; \
87 data->__statep->__count &= 7; \
88 } \
89 } \
93 /* Since we might have to reset input pointer we must be able to save
94 and restore the state. */
95 #define SAVE_RESET_STATE(Save) \
96 if (Save) \
97 save_curcs = *curcsp; \
98 else \
99 *curcsp = save_curcs
102 /* Current codeset type. */
103 enum
105 sb = 0,
106 db = 64
110 /* Subroutine to write out converted UCS4 from IBM-13XX. */
111 #ifdef HAS_COMBINED
112 # define SUB_COMBINED_UCS_FROM_IBM13XX \
114 if (res != UCS_LIMIT || ch < __TO_UCS4_COMBINED_MIN \
115 || ch > __TO_UCS4_COMBINED_MAX) \
117 put32 (outptr, res); \
118 outptr += 4; \
120 else \
122 /* This is a combined character. Make sure we have room. */ \
123 if (__glibc_unlikely (outptr + 8 > outend)) \
125 result = __GCONV_FULL_OUTPUT; \
126 break; \
129 const struct divide *cmbp \
130 = &DB_TO_UCS4_COMB[ch - __TO_UCS4_COMBINED_MIN]; \
131 assert (cmbp->res1 != 0 && cmbp->res2 != 0); \
133 put32 (outptr, cmbp->res1); \
134 outptr += 4; \
135 put32 (outptr, cmbp->res2); \
136 outptr += 4; \
139 #else
140 # define SUB_COMBINED_UCS_FROM_IBM13XX \
142 put32 (outptr, res); \
143 outptr += 4; \
145 #endif /* HAS_COMBINED */
148 /* First, define the conversion function from IBM-13XX to UCS4. */
149 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
150 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
151 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
152 #define MAX_NEEDED_OUTPUT MAX_NEEDED_TO
153 #define LOOPFCT FROM_LOOP
154 #define BODY \
156 uint32_t ch = *inptr; \
158 if (__builtin_expect (ch, 0) == SO) \
160 /* Shift OUT, change to DBCS converter (redundant escape okay). */ \
161 curcs = db; \
162 ++inptr; \
163 continue; \
165 if (__builtin_expect (ch, 0) == SI) \
167 /* Shift IN, change to SBCS converter (redundant escape okay). */ \
168 curcs = sb; \
169 ++inptr; \
170 continue; \
173 if (curcs == sb) \
175 /* Use the IBM13XX table for single byte. */ \
176 uint32_t res = SB_TO_UCS4[ch]; \
177 if (__builtin_expect (res, L'\1') == L'\0' && ch != '\0') \
179 /* This is an illegal character. */ \
180 if (! ignore_errors_p ()) \
182 result = __GCONV_ILLEGAL_INPUT; \
183 break; \
185 ++*irreversible; \
187 else \
189 put32 (outptr, res); \
190 outptr += 4; \
192 ++inptr; \
194 else \
196 assert (curcs == db); \
198 if (__glibc_unlikely (inptr + 1 >= inend)) \
200 /* The second character is not available. Store the \
201 intermediate result. */ \
202 result = __GCONV_INCOMPLETE_INPUT; \
203 break; \
206 ch = (ch * 0x100) + inptr[1]; \
208 /* Use the IBM1364 table for double byte. */ \
209 const struct gap *rp2 = DB_TO_UCS4_IDX; \
210 while (ch > rp2->end) \
211 ++rp2; \
213 uint32_t res; \
214 if (__builtin_expect (rp2->start == 0xffff, 0) \
215 || __builtin_expect (ch < rp2->start, 0) \
216 || (res = DB_TO_UCS4[ch + rp2->idx], \
217 __builtin_expect (res, L'\1') == L'\0' && ch != '\0')) \
219 /* This is an illegal character. */ \
220 if (! ignore_errors_p ()) \
222 result = __GCONV_ILLEGAL_INPUT; \
223 break; \
225 ++*irreversible; \
227 else \
229 SUB_COMBINED_UCS_FROM_IBM13XX; \
231 inptr += 2; \
234 #define LOOP_NEED_FLAGS
235 #define EXTRA_LOOP_DECLS , int *curcsp
236 #define INIT_PARAMS int curcs = *curcsp & ~7
237 #define UPDATE_PARAMS *curcsp = curcs
238 #include <iconv/loop.c>
241 /* Subroutine to convert two UCS4 codes to IBM-13XX. */
242 #ifdef HAS_COMBINED
243 # define SUB_COMBINED_UCS_TO_IBM13XX \
245 const struct combine *cmbp = UCS4_COMB_TO_DB; \
246 while (cmbp->res1 < ch) \
247 ++cmbp; \
248 /* XXX if last char is beginning of combining store in state */ \
249 if (cmbp->res1 == ch && inptr + 4 < inend) \
251 /* See if input is part of a combined character. */ \
252 uint32_t ch_next = get32 (inptr + 4); \
253 while (cmbp->res2 != ch_next) \
255 ++cmbp; \
256 if (cmbp->res1 != ch) \
257 goto not_combined; \
260 /* It is a combined character. First make sure we are in \
261 double byte mode. */ \
262 if (curcs == sb) \
264 /* We know there is room for at least one byte. */ \
265 *outptr++ = SO; \
266 curcs = db; \
269 if (__glibc_unlikely (outptr + 2 > outend)) \
271 result = __GCONV_FULL_OUTPUT; \
272 break; \
274 *outptr++ = cmbp->ch[0]; \
275 *outptr++ = cmbp->ch[1]; \
276 inptr += 8; \
277 continue; \
279 not_combined:; \
282 #else
283 # define SUB_COMBINED_UCS_TO_IBM13XX
284 #endif /* HAS_COMBINED */
287 /* Next, define the other direction. */
288 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
289 #define MAX_NEEDED_INPUT MAX_NEEDED_TO
290 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
291 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
292 #define LOOPFCT TO_LOOP
293 #define BODY \
295 uint32_t ch = get32 (inptr); \
297 if (__glibc_unlikely (ch >= UCS_LIMIT)) \
299 UNICODE_TAG_HANDLER (ch, 4); \
301 if (! ignore_errors_p ()) \
303 result = __GCONV_ILLEGAL_INPUT; \
304 break; \
306 ++*irreversible; \
307 inptr += 4; \
308 continue; \
311 SUB_COMBINED_UCS_TO_IBM13XX; \
313 const struct gap *rp1 = UCS4_TO_SB_IDX; \
314 while (ch > rp1->end) \
315 ++rp1; \
317 /* Use the UCS4 table for single byte. */ \
318 const char *cp; \
319 if (__builtin_expect (ch < rp1->start, 0) \
320 || (cp = UCS4_TO_SB[ch + rp1->idx], \
321 __builtin_expect (cp[0], L'\1') == L'\0' && ch != '\0')) \
323 /* Use the UCS4 table for double byte. */ \
324 const struct gap *rp2 = UCS4_TO_DB_IDX; \
325 while (ch > rp2->end) \
326 ++rp2; \
328 if (__builtin_expect (ch < rp2->start, 0) \
329 || (cp = UCS4_TO_DB[ch + rp2->idx], \
330 __builtin_expect (cp[0], L'\1') == L'\0' && ch != '\0')) \
332 /* This is an illegal character. */ \
333 if (! ignore_errors_p ()) \
335 result = __GCONV_ILLEGAL_INPUT; \
336 break; \
338 ++*irreversible; \
340 else \
342 if (curcs == sb) \
344 /* We know there is room for at least one byte. */ \
345 *outptr++ = SO; \
346 curcs = db; \
349 if (__glibc_unlikely (outptr + 2 > outend)) \
351 result = __GCONV_FULL_OUTPUT; \
352 break; \
354 *outptr++ = cp[0]; \
355 *outptr++ = cp[1]; \
358 else \
360 if (__glibc_unlikely (curcs == db)) \
362 /* We know there is room for at least one byte. */ \
363 *outptr++ = SI; \
364 curcs = sb; \
366 if (__glibc_unlikely (outptr >= outend)) \
368 result = __GCONV_FULL_OUTPUT; \
369 break; \
373 *outptr++ = cp[0]; \
376 /* Now that we wrote the output increment the input pointer. */ \
377 inptr += 4; \
379 #define LOOP_NEED_FLAGS
380 #define EXTRA_LOOP_DECLS , int *curcsp
381 #define INIT_PARAMS int curcs = *curcsp & ~7
382 #define REINIT_PARAMS curcs = *curcsp & ~7
383 #define UPDATE_PARAMS *curcsp = curcs
384 #include <iconv/loop.c>
386 /* Now define the toplevel functions. */
387 #include <iconv/skeleton.c>