1*e0c4386eSCy Schubert /*
2*e0c4386eSCy Schubert * Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
3*e0c4386eSCy Schubert *
4*e0c4386eSCy Schubert * Licensed under the Apache License 2.0 (the "License"). You may not use
5*e0c4386eSCy Schubert * this file except in compliance with the License. You can obtain a copy
6*e0c4386eSCy Schubert * in the file LICENSE in the source distribution or at
7*e0c4386eSCy Schubert * https://www.openssl.org/source/license.html
8*e0c4386eSCy Schubert */
9*e0c4386eSCy Schubert
10*e0c4386eSCy Schubert #include <openssl/crypto.h>
11*e0c4386eSCy Schubert #include <string.h>
12*e0c4386eSCy Schubert
13*e0c4386eSCy Schubert #include "crypto/punycode.h"
14*e0c4386eSCy Schubert #include "internal/nelem.h"
15*e0c4386eSCy Schubert #include "testutil.h"
16*e0c4386eSCy Schubert
17*e0c4386eSCy Schubert
18*e0c4386eSCy Schubert static const struct puny_test {
19*e0c4386eSCy Schubert unsigned int raw[50];
20*e0c4386eSCy Schubert const char *encoded;
21*e0c4386eSCy Schubert } puny_cases[] = {
22*e0c4386eSCy Schubert /* Test cases from RFC 3492 */
23*e0c4386eSCy Schubert { /* Arabic (Egyptian) */
24*e0c4386eSCy Schubert { 0x0644, 0x064A, 0x0647, 0x0645, 0x0627, 0x0628, 0x062A, 0x0643, 0x0644,
25*e0c4386eSCy Schubert 0x0645, 0x0648, 0x0634, 0x0639, 0x0631, 0x0628, 0x064A, 0x061F
26*e0c4386eSCy Schubert },
27*e0c4386eSCy Schubert "egbpdaj6bu4bxfgehfvwxn"
28*e0c4386eSCy Schubert },
29*e0c4386eSCy Schubert { /* Chinese (simplified) */
30*e0c4386eSCy Schubert { 0x4ED6, 0x4EEC, 0x4E3A, 0x4EC0, 0x4E48, 0x4E0D, 0x8BF4, 0x4E2D, 0x6587
31*e0c4386eSCy Schubert },
32*e0c4386eSCy Schubert "ihqwcrb4cv8a8dqg056pqjye"
33*e0c4386eSCy Schubert },
34*e0c4386eSCy Schubert { /* Chinese (traditional) */
35*e0c4386eSCy Schubert { 0x4ED6, 0x5011, 0x7232, 0x4EC0, 0x9EBD, 0x4E0D, 0x8AAA, 0x4E2D, 0x6587
36*e0c4386eSCy Schubert },
37*e0c4386eSCy Schubert "ihqwctvzc91f659drss3x8bo0yb"
38*e0c4386eSCy Schubert },
39*e0c4386eSCy Schubert { /* Czech: Pro<ccaron>prost<ecaron>nemluv<iacute><ccaron>esky */
40*e0c4386eSCy Schubert { 0x0050, 0x0072, 0x006F, 0x010D, 0x0070, 0x0072, 0x006F, 0x0073, 0x0074,
41*e0c4386eSCy Schubert 0x011B, 0x006E, 0x0065, 0x006D, 0x006C, 0x0075, 0x0076, 0x00ED, 0x010D,
42*e0c4386eSCy Schubert 0x0065, 0x0073, 0x006B, 0x0079
43*e0c4386eSCy Schubert },
44*e0c4386eSCy Schubert "Proprostnemluvesky-uyb24dma41a"
45*e0c4386eSCy Schubert },
46*e0c4386eSCy Schubert { /* Hebrew */
47*e0c4386eSCy Schubert { 0x05DC, 0x05DE, 0x05D4, 0x05D4, 0x05DD, 0x05E4, 0x05E9, 0x05D5, 0x05D8,
48*e0c4386eSCy Schubert 0x05DC, 0x05D0, 0x05DE, 0x05D3, 0x05D1, 0x05E8, 0x05D9, 0x05DD, 0x05E2,
49*e0c4386eSCy Schubert 0x05D1, 0x05E8, 0x05D9, 0x05EA
50*e0c4386eSCy Schubert },
51*e0c4386eSCy Schubert "4dbcagdahymbxekheh6e0a7fei0b"
52*e0c4386eSCy Schubert },
53*e0c4386eSCy Schubert { /* Hindi (Devanagari) */
54*e0c4386eSCy Schubert { 0x092F, 0x0939, 0x0932, 0x094B, 0x0917, 0x0939, 0x093F, 0x0928, 0x094D,
55*e0c4386eSCy Schubert 0x0926, 0x0940, 0x0915, 0x094D, 0x092F, 0x094B, 0x0902, 0x0928, 0x0939,
56*e0c4386eSCy Schubert 0x0940, 0x0902, 0x092C, 0x094B, 0x0932, 0x0938, 0x0915, 0x0924, 0x0947,
57*e0c4386eSCy Schubert 0x0939, 0x0948, 0x0902
58*e0c4386eSCy Schubert },
59*e0c4386eSCy Schubert "i1baa7eci9glrd9b2ae1bj0hfcgg6iyaf8o0a1dig0cd"
60*e0c4386eSCy Schubert },
61*e0c4386eSCy Schubert { /* Japanese (kanji and hiragana) */
62*e0c4386eSCy Schubert { 0x306A, 0x305C, 0x307F, 0x3093, 0x306A, 0x65E5, 0x672C, 0x8A9E, 0x3092,
63*e0c4386eSCy Schubert 0x8A71, 0x3057, 0x3066, 0x304F, 0x308C, 0x306A, 0x3044, 0x306E, 0x304B
64*e0c4386eSCy Schubert },
65*e0c4386eSCy Schubert "n8jok5ay5dzabd5bym9f0cm5685rrjetr6pdxa"
66*e0c4386eSCy Schubert },
67*e0c4386eSCy Schubert { /* Korean (Hangul syllables) */
68*e0c4386eSCy Schubert { 0xC138, 0xACC4, 0xC758, 0xBAA8, 0xB4E0, 0xC0AC, 0xB78C, 0xB4E4, 0xC774,
69*e0c4386eSCy Schubert 0xD55C, 0xAD6D, 0xC5B4, 0xB97C, 0xC774, 0xD574, 0xD55C, 0xB2E4, 0xBA74,
70*e0c4386eSCy Schubert 0xC5BC, 0xB9C8, 0xB098, 0xC88B, 0xC744, 0xAE4C
71*e0c4386eSCy Schubert },
72*e0c4386eSCy Schubert "989aomsvi5e83db1d2a355cv1e0vak1dwrv93d5xbh15a0dt30a5jpsd879ccm6fea98c"
73*e0c4386eSCy Schubert },
74*e0c4386eSCy Schubert { /* Russian (Cyrillic) */
75*e0c4386eSCy Schubert { 0x043F, 0x043E, 0x0447, 0x0435, 0x043C, 0x0443, 0x0436, 0x0435, 0x043E,
76*e0c4386eSCy Schubert 0x043D, 0x0438, 0x043D, 0x0435, 0x0433, 0x043E, 0x0432, 0x043E, 0x0440,
77*e0c4386eSCy Schubert 0x044F, 0x0442, 0x043F, 0x043E, 0x0440, 0x0443, 0x0441, 0x0441, 0x043A,
78*e0c4386eSCy Schubert 0x0438
79*e0c4386eSCy Schubert },
80*e0c4386eSCy Schubert "b1abfaaepdrnnbgefbaDotcwatmq2g4l"
81*e0c4386eSCy Schubert },
82*e0c4386eSCy Schubert { /* Spanish */
83*e0c4386eSCy Schubert { 0x0050, 0x006F, 0x0072, 0x0071, 0x0075, 0x00E9, 0x006E, 0x006F, 0x0070,
84*e0c4386eSCy Schubert 0x0075, 0x0065, 0x0064, 0x0065, 0x006E, 0x0073, 0x0069, 0x006D, 0x0070,
85*e0c4386eSCy Schubert 0x006C, 0x0065, 0x006D, 0x0065, 0x006E, 0x0074, 0x0065, 0x0068, 0x0061,
86*e0c4386eSCy Schubert 0x0062, 0x006C, 0x0061, 0x0072, 0x0065, 0x006E, 0x0045, 0x0073, 0x0070,
87*e0c4386eSCy Schubert 0x0061, 0x00F1, 0x006F, 0x006C
88*e0c4386eSCy Schubert },
89*e0c4386eSCy Schubert "PorqunopuedensimplementehablarenEspaol-fmd56a"
90*e0c4386eSCy Schubert },
91*e0c4386eSCy Schubert { /* Vietnamese */
92*e0c4386eSCy Schubert { 0x0054, 0x1EA1, 0x0069, 0x0073, 0x0061, 0x006F, 0x0068, 0x1ECD, 0x006B,
93*e0c4386eSCy Schubert 0x0068, 0x00F4, 0x006E, 0x0067, 0x0074, 0x0068, 0x1EC3, 0x0063, 0x0068,
94*e0c4386eSCy Schubert 0x1EC9, 0x006E, 0x00F3, 0x0069, 0x0074, 0x0069, 0x1EBF, 0x006E, 0x0067,
95*e0c4386eSCy Schubert 0x0056, 0x0069, 0x1EC7, 0x0074
96*e0c4386eSCy Schubert },
97*e0c4386eSCy Schubert "TisaohkhngthchnitingVit-kjcr8268qyxafd2f1b9g"
98*e0c4386eSCy Schubert },
99*e0c4386eSCy Schubert { /* Japanese: 3<nen>B<gumi><kinpachi><sensei> */
100*e0c4386eSCy Schubert { 0x0033, 0x5E74, 0x0042, 0x7D44, 0x91D1, 0x516B, 0x5148, 0x751F
101*e0c4386eSCy Schubert },
102*e0c4386eSCy Schubert "3B-ww4c5e180e575a65lsy2b"
103*e0c4386eSCy Schubert },
104*e0c4386eSCy Schubert { /* Japanese: <amuro><namie>-with-SUPER-MONKEYS */
105*e0c4386eSCy Schubert { 0x5B89, 0x5BA4, 0x5948, 0x7F8E, 0x6075, 0x002D, 0x0077, 0x0069, 0x0074,
106*e0c4386eSCy Schubert 0x0068, 0x002D, 0x0053, 0x0055, 0x0050, 0x0045, 0x0052, 0x002D, 0x004D,
107*e0c4386eSCy Schubert 0x004F, 0x004E, 0x004B, 0x0045, 0x0059, 0x0053
108*e0c4386eSCy Schubert },
109*e0c4386eSCy Schubert "-with-SUPER-MONKEYS-pc58ag80a8qai00g7n9n"
110*e0c4386eSCy Schubert },
111*e0c4386eSCy Schubert { /* Japanese: Hello-Another-Way-<sorezore><no><basho> */
112*e0c4386eSCy Schubert { 0x0048, 0x0065, 0x006C, 0x006C, 0x006F, 0x002D, 0x0041, 0x006E, 0x006F,
113*e0c4386eSCy Schubert 0x0074, 0x0068, 0x0065, 0x0072, 0x002D, 0x0057, 0x0061, 0x0079, 0x002D,
114*e0c4386eSCy Schubert 0x305D, 0x308C, 0x305E, 0x308C, 0x306E, 0x5834, 0x6240
115*e0c4386eSCy Schubert },
116*e0c4386eSCy Schubert "Hello-Another-Way--fc4qua05auwb3674vfr0b"
117*e0c4386eSCy Schubert },
118*e0c4386eSCy Schubert { /* Japanese: <hitotsu><yane><no><shita>2 */
119*e0c4386eSCy Schubert { 0x3072, 0x3068, 0x3064, 0x5C4B, 0x6839, 0x306E, 0x4E0B, 0x0032
120*e0c4386eSCy Schubert },
121*e0c4386eSCy Schubert "2-u9tlzr9756bt3uc0v"
122*e0c4386eSCy Schubert },
123*e0c4386eSCy Schubert { /* Japanese: Maji<de>Koi<suru>5<byou><mae> */
124*e0c4386eSCy Schubert { 0x004D, 0x0061, 0x006A, 0x0069, 0x3067, 0x004B, 0x006F, 0x0069, 0x3059,
125*e0c4386eSCy Schubert 0x308B, 0x0035, 0x79D2, 0x524D
126*e0c4386eSCy Schubert },
127*e0c4386eSCy Schubert "MajiKoi5-783gue6qz075azm5e"
128*e0c4386eSCy Schubert },
129*e0c4386eSCy Schubert { /* Japanese: <pafii>de<runba> */
130*e0c4386eSCy Schubert { 0x30D1, 0x30D5, 0x30A3, 0x30FC, 0x0064, 0x0065, 0x30EB, 0x30F3, 0x30D0
131*e0c4386eSCy Schubert },
132*e0c4386eSCy Schubert "de-jg4avhby1noc0d"
133*e0c4386eSCy Schubert },
134*e0c4386eSCy Schubert { /* Japanese: <sono><supiido><de> */
135*e0c4386eSCy Schubert { 0x305D, 0x306E, 0x30B9, 0x30D4, 0x30FC, 0x30C9, 0x3067
136*e0c4386eSCy Schubert },
137*e0c4386eSCy Schubert "d9juau41awczczp"
138*e0c4386eSCy Schubert },
139*e0c4386eSCy Schubert { /* -> $1.00 <- */
140*e0c4386eSCy Schubert { 0x002D, 0x003E, 0x0020, 0x0024, 0x0031, 0x002E, 0x0030, 0x0030, 0x0020,
141*e0c4386eSCy Schubert 0x003C, 0x002D
142*e0c4386eSCy Schubert },
143*e0c4386eSCy Schubert "-> $1.00 <--"
144*e0c4386eSCy Schubert }
145*e0c4386eSCy Schubert };
146*e0c4386eSCy Schubert
test_punycode(int n)147*e0c4386eSCy Schubert static int test_punycode(int n)
148*e0c4386eSCy Schubert {
149*e0c4386eSCy Schubert const struct puny_test *tc = puny_cases + n;
150*e0c4386eSCy Schubert unsigned int buffer[50];
151*e0c4386eSCy Schubert unsigned int bsize = OSSL_NELEM(buffer);
152*e0c4386eSCy Schubert size_t i;
153*e0c4386eSCy Schubert
154*e0c4386eSCy Schubert if (!TEST_true(ossl_punycode_decode(tc->encoded, strlen(tc->encoded),
155*e0c4386eSCy Schubert buffer, &bsize)))
156*e0c4386eSCy Schubert return 0;
157*e0c4386eSCy Schubert for (i = 0; i < OSSL_NELEM(tc->raw); i++)
158*e0c4386eSCy Schubert if (tc->raw[i] == 0)
159*e0c4386eSCy Schubert break;
160*e0c4386eSCy Schubert if (!TEST_mem_eq(buffer, bsize * sizeof(*buffer),
161*e0c4386eSCy Schubert tc->raw, i * sizeof(*tc->raw)))
162*e0c4386eSCy Schubert return 0;
163*e0c4386eSCy Schubert return 1;
164*e0c4386eSCy Schubert }
165*e0c4386eSCy Schubert
test_a2ulabel(void)166*e0c4386eSCy Schubert static int test_a2ulabel(void)
167*e0c4386eSCy Schubert {
168*e0c4386eSCy Schubert char out[50];
169*e0c4386eSCy Schubert size_t outlen;
170*e0c4386eSCy Schubert
171*e0c4386eSCy Schubert /*
172*e0c4386eSCy Schubert * Test that no buffer correctly returns the true length.
173*e0c4386eSCy Schubert * The punycode being passed in and parsed is malformed but we're not
174*e0c4386eSCy Schubert * verifying that behaviour here.
175*e0c4386eSCy Schubert */
176*e0c4386eSCy Schubert if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", NULL, &outlen), 0)
177*e0c4386eSCy Schubert || !TEST_size_t_eq(outlen, 7)
178*e0c4386eSCy Schubert || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), 1))
179*e0c4386eSCy Schubert return 0;
180*e0c4386eSCy Schubert /* Test that a short input length returns the true length */
181*e0c4386eSCy Schubert outlen = 1;
182*e0c4386eSCy Schubert if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), 0)
183*e0c4386eSCy Schubert || !TEST_size_t_eq(outlen, 7)
184*e0c4386eSCy Schubert || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), 1)
185*e0c4386eSCy Schubert || !TEST_str_eq(out,"\xc2\x80.b.c"))
186*e0c4386eSCy Schubert return 0;
187*e0c4386eSCy Schubert /* Test for an off by one on the buffer size works */
188*e0c4386eSCy Schubert outlen = 6;
189*e0c4386eSCy Schubert if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), 0)
190*e0c4386eSCy Schubert || !TEST_size_t_eq(outlen, 7)
191*e0c4386eSCy Schubert || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), 1)
192*e0c4386eSCy Schubert || !TEST_str_eq(out,"\xc2\x80.b.c"))
193*e0c4386eSCy Schubert return 0;
194*e0c4386eSCy Schubert return 1;
195*e0c4386eSCy Schubert }
196*e0c4386eSCy Schubert
test_puny_overrun(void)197*e0c4386eSCy Schubert static int test_puny_overrun(void)
198*e0c4386eSCy Schubert {
199*e0c4386eSCy Schubert static const unsigned int out[] = {
200*e0c4386eSCy Schubert 0x0033, 0x5E74, 0x0042, 0x7D44, 0x91D1, 0x516B, 0x5148, 0x751F
201*e0c4386eSCy Schubert };
202*e0c4386eSCy Schubert static const char *in = "3B-ww4c5e180e575a65lsy2b";
203*e0c4386eSCy Schubert unsigned int buf[OSSL_NELEM(out)];
204*e0c4386eSCy Schubert unsigned int bsize = OSSL_NELEM(buf) - 1;
205*e0c4386eSCy Schubert
206*e0c4386eSCy Schubert if (!TEST_false(ossl_punycode_decode(in, strlen(in), buf, &bsize))) {
207*e0c4386eSCy Schubert if (TEST_mem_eq(buf, bsize * sizeof(*buf), out, sizeof(out)))
208*e0c4386eSCy Schubert TEST_error("CRITICAL: buffer overrun detected!");
209*e0c4386eSCy Schubert return 0;
210*e0c4386eSCy Schubert }
211*e0c4386eSCy Schubert return 1;
212*e0c4386eSCy Schubert }
213*e0c4386eSCy Schubert
setup_tests(void)214*e0c4386eSCy Schubert int setup_tests(void)
215*e0c4386eSCy Schubert {
216*e0c4386eSCy Schubert ADD_ALL_TESTS(test_punycode, OSSL_NELEM(puny_cases));
217*e0c4386eSCy Schubert ADD_TEST(test_a2ulabel);
218*e0c4386eSCy Schubert ADD_TEST(test_puny_overrun);
219*e0c4386eSCy Schubert return 1;
220*e0c4386eSCy Schubert }
221