1 /* Conversion loop frame work.
2 Copyright (C) 1998-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 /* This file provides a frame for the reader loop in all conversion modules.
21 The actual code must (of course) be provided in the actual module source
22 code but certain actions can be written down generically, with some
23 customization options which are these:
25 MIN_NEEDED_INPUT minimal number of input bytes needed for the next
27 MIN_NEEDED_OUTPUT minimal number of bytes produced by the next round
30 MAX_NEEDED_INPUT you guess it, this is the maximal number of input
31 bytes needed. It defaults to MIN_NEEDED_INPUT
32 MAX_NEEDED_OUTPUT likewise for output bytes.
34 LOOPFCT name of the function created. If not specified
35 the name is `loop' but this prevents the use
36 of multiple functions in the same file.
38 BODY this is supposed to expand to the body of the loop.
39 The user must provide this.
41 EXTRA_LOOP_DECLS extra arguments passed from conversion loop call.
43 INIT_PARAMS code to define and initialize variables from params.
44 UPDATE_PARAMS code to store result in params.
46 ONEBYTE_BODY body of the specialized conversion function for a
47 single byte from the current character set to INTERNAL.
56 #include <sys/param.h> /* For MIN. */
59 #include <libc-internal.h>
61 /* We have to provide support for machines which are not able to handled
62 unaligned memory accesses. Some of the character encodings have
63 representations with a fixed width of 2 or 4 bytes. But if we cannot
64 access unaligned memory we still have to read byte-wise. */
66 #if _STRING_ARCH_unaligned || !defined DEFINE_UNALIGNED
67 /* We can handle unaligned memory access. */
68 # define get16(addr) *((const uint16_t *) (addr))
69 # define get32(addr) *((const uint32_t *) (addr))
71 /* We need no special support for writing values either. */
72 # define put16(addr, val) *((uint16_t *) (addr)) = (val)
73 # define put32(addr, val) *((uint32_t *) (addr)) = (val)
75 # define FCTNAME2(name) name
77 /* Distinguish between big endian and little endian. */
78 # if __BYTE_ORDER == __LITTLE_ENDIAN
79 # define get16(addr) \
80 (((const unsigned char *) (addr))[1] << 8 \
81 | ((const unsigned char *) (addr))[0])
82 # define get32(addr) \
83 (((((const unsigned char *) (addr))[3] << 8 \
84 | ((const unsigned char *) (addr))[2]) << 8 \
85 | ((const unsigned char *) (addr))[1]) << 8 \
86 | ((const unsigned char *) (addr))[0])
88 # define put16(addr, val) \
89 ({ uint16_t __val = (val); \
90 ((unsigned char *) (addr))[0] = __val; \
91 ((unsigned char *) (addr))[1] = __val >> 8; \
93 # define put32(addr, val) \
94 ({ uint32_t __val = (val); \
95 ((unsigned char *) (addr))[0] = __val; \
97 ((unsigned char *) (addr))[1] = __val; \
99 ((unsigned char *) (addr))[2] = __val; \
101 ((unsigned char *) (addr))[3] = __val; \
104 # define get16(addr) \
105 (((const unsigned char *) (addr))[0] << 8 \
106 | ((const unsigned char *) (addr))[1])
107 # define get32(addr) \
108 (((((const unsigned char *) (addr))[0] << 8 \
109 | ((const unsigned char *) (addr))[1]) << 8 \
110 | ((const unsigned char *) (addr))[2]) << 8 \
111 | ((const unsigned char *) (addr))[3])
113 # define put16(addr, val) \
114 ({ uint16_t __val = (val); \
115 ((unsigned char *) (addr))[1] = __val; \
116 ((unsigned char *) (addr))[0] = __val >> 8; \
118 # define put32(addr, val) \
119 ({ uint32_t __val = (val); \
120 ((unsigned char *) (addr))[3] = __val; \
122 ((unsigned char *) (addr))[2] = __val; \
124 ((unsigned char *) (addr))[1] = __val; \
126 ((unsigned char *) (addr))[0] = __val; \
130 # define FCTNAME2(name) name##_unaligned
132 #define FCTNAME(name) FCTNAME2(name)
135 /* We need at least one byte for the next round. */
136 #ifndef MIN_NEEDED_INPUT
137 # error "MIN_NEEDED_INPUT definition missing"
138 #elif MIN_NEEDED_INPUT < 1
139 # error "MIN_NEEDED_INPUT must be >= 1"
142 /* Let's see how many bytes we produce. */
143 #ifndef MAX_NEEDED_INPUT
144 # define MAX_NEEDED_INPUT MIN_NEEDED_INPUT
147 /* We produce at least one byte in the next round. */
148 #ifndef MIN_NEEDED_OUTPUT
149 # error "MIN_NEEDED_OUTPUT definition missing"
150 #elif MIN_NEEDED_OUTPUT < 1
151 # error "MIN_NEEDED_OUTPUT must be >= 1"
154 /* Let's see how many bytes we produce. */
155 #ifndef MAX_NEEDED_OUTPUT
156 # define MAX_NEEDED_OUTPUT MIN_NEEDED_OUTPUT
159 /* Default name for the function. */
161 # define LOOPFCT loop
164 /* Make sure we have a loop body. */
166 # error "Definition of BODY missing for function" LOOPFCT
170 /* If no arguments have to passed to the loop function define the macro
172 #ifndef EXTRA_LOOP_DECLS
173 # define EXTRA_LOOP_DECLS
176 /* Allow using UPDATE_PARAMS in macros where #ifdef UPDATE_PARAMS test
178 #ifndef UPDATE_PARAMS
179 # define UPDATE_PARAMS do { } while (0)
181 #ifndef REINIT_PARAMS
182 # define REINIT_PARAMS do { } while (0)
186 /* To make it easier for the writers of the modules, we define a macro
187 to test whether we have to ignore errors. */
188 #define ignore_errors_p() \
189 (irreversible != NULL && (flags & __GCONV_IGNORE_ERRORS))
192 /* Error handling for the FROM_LOOP direction, with ignoring of errors.
193 Note that we cannot use the do while (0) trick since `break' and
194 `continue' must reach certain points. */
195 #define STANDARD_FROM_LOOP_ERR_HANDLER(Incr) \
197 result = __GCONV_ILLEGAL_INPUT; \
199 if (! ignore_errors_p ()) \
202 /* We ignore the invalid input byte sequence. */ \
205 /* But we keep result == __GCONV_ILLEGAL_INPUT, because of the constraint \
206 that "iconv -c" must give the same exitcode as "iconv". */ \
210 /* Error handling for the TO_LOOP direction, with use of transliteration/
211 transcription functions and ignoring of errors. Note that we cannot use
212 the do while (0) trick since `break' and `continue' must reach certain
214 #define STANDARD_TO_LOOP_ERR_HANDLER(Incr) \
216 result = __GCONV_ILLEGAL_INPUT; \
218 if (irreversible == NULL) \
219 /* This means we are in call from __gconv_transliterate. In this \
220 case we are not doing any error recovery outself. */ \
223 /* If needed, flush any conversion state, so that __gconv_transliterate \
224 starts with current shift state. */ \
227 /* First try the transliteration methods. */ \
228 if ((step_data->__flags & __GCONV_TRANSLIT) != 0) \
229 result = __gconv_transliterate \
230 (step, step_data, *inptrp, \
231 &inptr, inend, &outptr, irreversible); \
235 /* If any of them recognized the input continue with the loop. */ \
236 if (result != __GCONV_ILLEGAL_INPUT) \
238 if (__glibc_unlikely (result == __GCONV_FULL_OUTPUT)) \
244 /* Next see whether we have to ignore the error. If not, stop. */ \
245 if (! ignore_errors_p ()) \
248 /* When we come here it means we ignore the character. */ \
251 /* But we keep result == __GCONV_ILLEGAL_INPUT, because of the constraint \
252 that "iconv -c" must give the same exitcode as "iconv". */ \
257 /* Handling of Unicode 3.1 TAG characters. Unicode recommends
258 "If language codes are not relevant to the particular processing
259 operation, then they should be ignored." This macro is usually
260 called right before STANDARD_TO_LOOP_ERR_HANDLER (Incr). */
261 #define UNICODE_TAG_HANDLER(Character, Incr) \
263 /* TAG characters are those in the range U+E0000..U+E007F. */ \
264 if (((Character) >> 7) == (0xe0000 >> 7)) \
272 /* The function returns the status, as defined in gconv.h. */
274 __attribute ((always_inline
))
275 FCTNAME (LOOPFCT
) (struct __gconv_step
*step
,
276 struct __gconv_step_data
*step_data
,
277 const unsigned char **inptrp
, const unsigned char *inend
,
278 unsigned char **outptrp
, const unsigned char *outend
,
279 size_t *irreversible EXTRA_LOOP_DECLS
)
281 #ifdef LOOP_NEED_STATE
282 mbstate_t *state
= step_data
->__statep
;
284 #ifdef LOOP_NEED_FLAGS
285 int flags
= step_data
->__flags
;
287 #ifdef LOOP_NEED_DATA
288 void *data
= step
->__data
;
290 int result
= __GCONV_EMPTY_INPUT
;
291 const unsigned char *inptr
= *inptrp
;
292 unsigned char *outptr
= *outptrp
;
298 while (inptr
!= inend
)
300 /* `if' cases for MIN_NEEDED_OUTPUT ==/!= 1 is made to help the
301 compiler generating better code. They will be optimized away
302 since MIN_NEEDED_OUTPUT is always a constant. */
303 if (MIN_NEEDED_INPUT
> 1
304 && __builtin_expect (inptr
+ MIN_NEEDED_INPUT
> inend
, 0))
306 /* We don't have enough input for another complete input
308 result
= __GCONV_INCOMPLETE_INPUT
;
311 if ((MIN_NEEDED_OUTPUT
!= 1
312 && __builtin_expect (outptr
+ MIN_NEEDED_OUTPUT
> outend
, 0))
313 || (MIN_NEEDED_OUTPUT
== 1
314 && __builtin_expect (outptr
>= outend
, 0)))
316 /* Overflow in the output buffer. */
317 result
= __GCONV_FULL_OUTPUT
;
321 /* Here comes the body the user provides. It can stop with
322 RESULT set to GCONV_INCOMPLETE_INPUT (if the size of the
323 input characters vary in size), GCONV_ILLEGAL_INPUT, or
324 GCONV_FULL_OUTPUT (if the output characters vary in size). */
328 /* Update the pointers pointed to by the parameters. */
337 /* Include the file a second time to define the function to handle
339 #if !defined DEFINE_UNALIGNED && !_STRING_ARCH_unaligned \
340 && MIN_NEEDED_INPUT != 1 && MAX_NEEDED_INPUT % MIN_NEEDED_INPUT == 0 \
341 && MIN_NEEDED_OUTPUT != 1 && MAX_NEEDED_OUTPUT % MIN_NEEDED_OUTPUT == 0
348 # define DEFINE_UNALIGNED
350 # undef DEFINE_UNALIGNED
352 # if MAX_NEEDED_INPUT > 1
353 # define SINGLE(fct) SINGLE2 (fct)
354 # define SINGLE2(fct) fct##_single
356 __attribute ((always_inline
))
357 SINGLE(LOOPFCT
) (struct __gconv_step
*step
,
358 struct __gconv_step_data
*step_data
,
359 const unsigned char **inptrp
, const unsigned char *inend
,
360 unsigned char **outptrp
, unsigned char *outend
,
361 size_t *irreversible EXTRA_LOOP_DECLS
)
363 mbstate_t *state
= step_data
->__statep
;
364 # ifdef LOOP_NEED_FLAGS
365 int flags
= step_data
->__flags
;
367 # ifdef LOOP_NEED_DATA
368 void *data
= step
->__data
;
370 int result
= __GCONV_OK
;
371 unsigned char bytebuf
[MAX_NEEDED_INPUT
];
372 const unsigned char *inptr
= *inptrp
;
373 unsigned char *outptr
= *outptrp
;
383 /* Add the bytes from the state to the input buffer. */
384 assert ((state
->__count
& 7) <= sizeof (state
->__value
));
385 for (inlen
= 0; inlen
< (size_t) (state
->__count
& 7); ++inlen
)
386 bytebuf
[inlen
] = state
->__value
.__wchb
[inlen
];
389 /* Are there enough bytes in the input buffer? */
390 if (MIN_NEEDED_INPUT
> 1
391 && __builtin_expect (inptr
+ (MIN_NEEDED_INPUT
- inlen
) > inend
, 0))
396 /* Building with -O3 GCC emits a `array subscript is above array
397 bounds' warning. GCC BZ #64739 has been opened for this. */
398 DIAG_PUSH_NEEDS_COMMENT
;
399 DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Warray-bounds");
400 while (inptr
< inend
)
401 bytebuf
[inlen
++] = *inptr
++;
402 DIAG_POP_NEEDS_COMMENT
;
406 inend
= &bytebuf
[inlen
];
410 /* We don't have enough input for another complete input
412 while (inptr
< inend
)
413 state
->__value
.__wchb
[inlen
++] = *inptr
++;
416 return __GCONV_INCOMPLETE_INPUT
;
419 /* Enough space in output buffer. */
420 if ((MIN_NEEDED_OUTPUT
!= 1 && outptr
+ MIN_NEEDED_OUTPUT
> outend
)
421 || (MIN_NEEDED_OUTPUT
== 1 && outptr
>= outend
))
422 /* Overflow in the output buffer. */
423 return __GCONV_FULL_OUTPUT
;
425 /* Now add characters from the normal input buffer. */
427 bytebuf
[inlen
++] = *inptr
++;
428 while (inlen
< MAX_NEEDED_INPUT
&& inptr
< inend
);
431 inend
= &bytebuf
[inlen
];
439 /* Now we either have produced an output character and consumed all the
440 bytes from the state and at least one more, or the character is still
441 incomplete, or we have some other error (like illegal input character,
442 no space in output buffer). */
443 if (__glibc_likely (inptr
!= bytebuf
))
445 /* We found a new character. */
446 assert (inptr
- bytebuf
> (state
->__count
& 7));
448 *inptrp
+= inptr
- bytebuf
- (state
->__count
& 7);
453 /* Clear the state buffer. */
457 state
->__count
&= ~7;
460 else if (result
== __GCONV_INCOMPLETE_INPUT
)
462 /* This can only happen if we have less than MAX_NEEDED_INPUT bytes
464 assert (inend
!= &bytebuf
[MAX_NEEDED_INPUT
]);
466 *inptrp
+= inend
- bytebuf
- (state
->__count
& 7);
472 /* We don't have enough input for another complete input
474 assert (inend
- inptr
> (state
->__count
& ~7));
475 assert (inend
- inptr
<= sizeof (state
->__value
));
476 state
->__count
= (state
->__count
& ~7) | (inend
- inptr
);
478 while (inptr
< inend
)
479 state
->__value
.__wchb
[inlen
++] = *inptr
++;
491 /* Define the shortcut function for btowc. */
493 gconv_btowc (struct __gconv_step
*step
, unsigned char c
)
495 # define FROM_ONEBYTE gconv_btowc
500 /* We remove the macro definitions so that we can include this file again
501 for the definition of another function. */
502 #undef MIN_NEEDED_INPUT
503 #undef MAX_NEEDED_INPUT
504 #undef MIN_NEEDED_OUTPUT
505 #undef MAX_NEEDED_OUTPUT
509 #undef EXTRA_LOOP_DECLS
516 #undef LOOP_NEED_STATE
517 #undef LOOP_NEED_FLAGS
518 #undef LOOP_NEED_DATA