1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
/* Charset conversion.
Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
/* Specification. */
#include "iconvstring.h"
#include <errno.h>
#include <stdlib.h>
#if HAVE_ICONV
# include <iconv.h>
#endif
#include "xalloc.h"
#if HAVE_ICONV
/* POSIX does not specify clearly what happens when a character in the
source encoding is valid but cannot be represented in the destination
encoding.
GNU libc and libiconv stop the conversion in this case, with errno = EINVAL.
Irix iconv() inserts a NUL byte in this case. NetBSD iconv() inserts
a '?' byte. For other implementations, we don't know. Normally the
number of failed conversions is available as the iconv() result.
The problem with these implementations is that when iconv() fails, for
example with errno = E2BIG or = EINVAL, the number of failed conversions
gets lost. As a workaround, we need to process the input string slowly,
byte after byte. */
# if !(defined __GLIBC__ || defined _LIBICONV_VERSION)
# define UNSAFE_ICONV
# endif
/* Converts an entire string from one encoding to another, using iconv.
Return value: 0 if successful, otherwise -1 and errno set. */
int
iconv_string (iconv_t cd, const char *start, const char *end,
char **resultp, size_t *lengthp)
{
#define tmpbufsize 4096
size_t length;
char *result;
# ifdef UNSAFE_ICONV
int expect_einval = 0;
# endif
/* Avoid glibc-2.1 bug and Solaris 2.7-2.9 bug. */
# if defined _LIBICONV_VERSION \
|| !((__GLIBC__ - 0 == 2 && __GLIBC_MINOR__ - 0 <= 1) || defined __sun)
/* Set to the initial state. */
iconv (cd, NULL, NULL, NULL, NULL);
# endif
/* Determine the length we need. */
{
size_t count = 0;
char tmpbuf[tmpbufsize];
const char *inptr = start;
size_t insize = end - start;
while (insize > 0)
{
char *outptr = tmpbuf;
size_t outsize = tmpbufsize;
size_t res = iconv (cd,
(ICONV_CONST char **) &inptr, &insize,
&outptr, &outsize);
if (res == (size_t)(-1))
{
if (errno == E2BIG)
;
else if (errno == EINVAL)
{
# ifdef UNSAFE_ICONV
expect_einval = 1;
# endif
break;
}
else
return -1;
}
# ifdef UNSAFE_ICONV
else if (res > 0)
return -1;
# endif
count += outptr - tmpbuf;
}
/* Avoid glibc-2.1 bug and Solaris 2.7 bug. */
# if defined _LIBICONV_VERSION \
|| !((__GLIBC__ - 0 == 2 && __GLIBC_MINOR__ - 0 <= 1) || defined __sun)
{
char *outptr = tmpbuf;
size_t outsize = tmpbufsize;
size_t res = iconv (cd, NULL, NULL, &outptr, &outsize);
if (res == (size_t)(-1))
return -1;
count += outptr - tmpbuf;
}
# endif
length = count;
}
*lengthp = length;
*resultp = result = xrealloc (*resultp, length);
if (length == 0)
return 0;
/* Avoid glibc-2.1 bug and Solaris 2.7-2.9 bug. */
# if defined _LIBICONV_VERSION \
|| !((__GLIBC__ - 0 == 2 && __GLIBC_MINOR__ - 0 <= 1) || defined __sun)
/* Return to the initial state. */
iconv (cd, NULL, NULL, NULL, NULL);
# endif
/* Do the conversion for real. */
{
const char *inptr = start;
char *outptr = result;
size_t outsize = length;
# ifdef UNSAFE_ICONV
if (expect_einval)
{
/* Process the characters one by one, so as to not lose the
number of conversion failures. */
const char *inptr_end = end;
while (inptr < inptr_end)
{
size_t insize_max = inptr_end - inptr;
size_t insize_avail;
size_t res;
for (insize_avail = 1; ; insize_avail++)
{
/* Here 1 <= insize_avail <= insize_max. */
size_t insize = insize_avail;
res = iconv (cd,
(ICONV_CONST char **) &inptr, &insize,
&outptr, &outsize);
if (res == (size_t)(-1))
{
if (errno == EINVAL)
{
if (insize_avail < insize_max)
continue;
else
break;
}
else
/* E2BIG and other errors shouldn't happen in this
round any more. */
return -1;
}
else
break;
}
if (res == (size_t)(-1))
/* errno = EINVAL. Ignore the trailing incomplete character. */
break;
else if (res > 0)
return -1;
}
}
else
# endif
{
size_t insize = end - start;
while (insize > 0)
{
size_t res = iconv (cd,
(ICONV_CONST char **) &inptr, &insize,
&outptr, &outsize);
if (res == (size_t)(-1))
{
if (errno == EINVAL)
{
# ifdef UNSAFE_ICONV
/* EINVAL should already have occurred in the first
round. */
abort ();
# endif
/* Ignore the trailing incomplete character. */
break;
}
else
/* E2BIG and other errors shouldn't happen in this round
any more. */
return -1;
}
# ifdef UNSAFE_ICONV
else if (res > 0)
return -1;
# endif
}
}
/* Avoid glibc-2.1 bug and Solaris 2.7 bug. */
# if defined _LIBICONV_VERSION \
|| !((__GLIBC__ - 0 == 2 && __GLIBC_MINOR__ - 0 <= 1) || defined __sun)
{
size_t res = iconv (cd, NULL, NULL, &outptr, &outsize);
if (res == (size_t)(-1))
return -1;
}
# endif
if (outsize != 0)
abort ();
}
return 0;
#undef tmpbufsize
}
#endif
|