blob: 8dc300b36d01399828c1d35b546742401852095d [file] [log] [blame]
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -07001/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
Alex Deymo8f1a2142016-06-28 14:49:26 -07008 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -07009 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
Alex Deymo8f1a2142016-06-28 14:49:26 -070012 * are also available at https://curl.haxx.se/docs/copyright.html.
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070013 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22
23 /*
24 * IDN conversions using Windows kernel32 and normaliz libraries.
25 */
26
27#include "curl_setup.h"
28
29#ifdef USE_WIN32_IDN
30
31#include "curl_multibyte.h"
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070032#include "curl_memory.h"
Alex Deymo8f1a2142016-06-28 14:49:26 -070033#include "warnless.h"
34
35 /* The last #include file should be: */
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070036#include "memdebug.h"
37
38#ifdef WANT_IDN_PROTOTYPES
39# if defined(_SAL_VERSION)
40WINNORMALIZEAPI int WINAPI
41IdnToAscii(_In_ DWORD dwFlags,
42 _In_reads_(cchUnicodeChar) LPCWSTR lpUnicodeCharStr,
43 _In_ int cchUnicodeChar,
44 _Out_writes_opt_(cchASCIIChar) LPWSTR lpASCIICharStr,
45 _In_ int cchASCIIChar);
46WINNORMALIZEAPI int WINAPI
47IdnToUnicode(_In_ DWORD dwFlags,
48 _In_reads_(cchASCIIChar) LPCWSTR lpASCIICharStr,
49 _In_ int cchASCIIChar,
50 _Out_writes_opt_(cchUnicodeChar) LPWSTR lpUnicodeCharStr,
51 _In_ int cchUnicodeChar);
52# else
53WINBASEAPI int WINAPI IdnToAscii(DWORD dwFlags,
54 const WCHAR *lpUnicodeCharStr,
55 int cchUnicodeChar,
56 WCHAR *lpASCIICharStr,
57 int cchASCIIChar);
58WINBASEAPI int WINAPI IdnToUnicode(DWORD dwFlags,
59 const WCHAR *lpASCIICharStr,
60 int cchASCIIChar,
61 WCHAR *lpUnicodeCharStr,
62 int cchUnicodeChar);
63# endif
64#endif
65
66#define IDN_MAX_LENGTH 255
67
Alex Deymo8f1a2142016-06-28 14:49:26 -070068bool curl_win32_idn_to_ascii(const char *in, char **out);
69bool curl_win32_ascii_to_idn(const char *in, char **out);
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070070
Alex Deymo8f1a2142016-06-28 14:49:26 -070071bool curl_win32_idn_to_ascii(const char *in, char **out)
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070072{
Alex Deymo8f1a2142016-06-28 14:49:26 -070073 bool success = FALSE;
74
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070075 wchar_t *in_w = Curl_convert_UTF8_to_wchar(in);
76 if(in_w) {
77 wchar_t punycode[IDN_MAX_LENGTH];
Alex Deymo8f1a2142016-06-28 14:49:26 -070078 int chars = IdnToAscii(0, in_w, -1, punycode, IDN_MAX_LENGTH);
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070079 free(in_w);
Alex Deymo8f1a2142016-06-28 14:49:26 -070080 if(chars) {
81 *out = Curl_convert_wchar_to_UTF8(punycode);
82 if(*out)
83 success = TRUE;
84 }
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070085 }
Alex Deymo8f1a2142016-06-28 14:49:26 -070086
87 return success;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070088}
89
Alex Deymo8f1a2142016-06-28 14:49:26 -070090bool curl_win32_ascii_to_idn(const char *in, char **out)
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070091{
Alex Deymo8f1a2142016-06-28 14:49:26 -070092 bool success = FALSE;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070093
Alex Deymo8f1a2142016-06-28 14:49:26 -070094 wchar_t *in_w = Curl_convert_UTF8_to_wchar(in);
95 if(in_w) {
96 size_t in_len = wcslen(in_w) + 1;
97 wchar_t unicode[IDN_MAX_LENGTH];
98 int chars = IdnToUnicode(0, in_w, curlx_uztosi(in_len),
99 unicode, IDN_MAX_LENGTH);
100 free(in_w);
101 if(chars) {
102 *out = Curl_convert_wchar_to_UTF8(unicode);
103 if(*out)
104 success = TRUE;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700105 }
106 }
Alex Deymo8f1a2142016-06-28 14:49:26 -0700107
108 return success;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700109}
110
111#endif /* USE_WIN32_IDN */