Skip to content

Latest commit

 

History

History
91 lines (77 loc) · 2.02 KB

iconv.c

File metadata and controls

91 lines (77 loc) · 2.02 KB
 
1
2
3
/*
* OpenConnect (SSL + DTLS) VPN client
*
Jan 26, 2015
Jan 26, 2015
4
* Copyright © 2008-2015 Intel Corporation.
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
*
* Author: David Woodhouse <dwmw2@infradead.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1, as published by the Free Software Foundation.
*
* 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
* Lesser General Public License for more details.
*/
#include <config.h>
#include <iconv.h>
#include <errno.h>
#include <string.h>
#include "openconnect-internal.h"
static char *convert_str(struct openconnect_info *vpninfo, iconv_t ic,
char *instr)
{
Oct 30, 2014
Oct 30, 2014
30
31
ICONV_CONST char *ic_in;
char *ic_out, *outstr;
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
size_t insize, outsize;
int addq = 0;
if (ic == (iconv_t)-1)
return instr;
iconv(ic, NULL, NULL, NULL, NULL);
insize = strlen(instr) + 1;
ic_in = instr;
outsize = insize;
ic_out = outstr = malloc(outsize);
if (!outstr)
return instr;
while (insize) {
Oct 30, 2014
Oct 30, 2014
49
if (iconv(ic, &ic_in, &insize, &ic_out, &outsize) == (size_t)-1) {
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
if (errno == EILSEQ) {
do {
ic_in++;
insize--;
} while (insize && (ic_in[0] & 0xc0) == 0x80);
addq = 1;
}
if (!outsize || errno == E2BIG) {
int outlen = ic_out - outstr;
realloc_inplace(outstr, outlen + 10);
if (!outstr)
return instr;
ic_out = outstr + outlen;
outsize = 10;
} else if (errno != EILSEQ) {
/* Should never happen */
free(outstr);
return instr;
}
if (addq) {
addq = 0;
*(ic_out++) = '?';
outsize--;
}
}
}
return outstr;
}
char *openconnect_legacy_to_utf8(struct openconnect_info *vpninfo,
const char *legacy)
{
return convert_str(vpninfo, vpninfo->ic_legacy_to_utf8, (char *)legacy);
}
char *openconnect_utf8_to_legacy(struct openconnect_info *vpninfo,
const char *utf8)
{
return convert_str(vpninfo, vpninfo->ic_utf8_to_legacy, (char *)utf8);
}