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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
|
/* punycode.c - punycode encoding/decoding
Copyright (C) 2011-2025 Simon Josefsson
Libidn2 is free software: you can redistribute it and/or modify it
under the terms of either:
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at
your option) any later version.
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at
your option) any later version.
or both in parallel, as here.
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 copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see <http://www.gnu.org/licenses/>.
*/
/*
Code copied from http://www.nicemice.net/idn/punycode-spec.gz on
2011-01-04 with SHA-1 a966a8017f6be579d74a50a226accc7607c40133
labeled punycode-spec 1.0.3 (2006-Mar-23-Thu). It is modified for
Libidn2 by Simon Josefsson and others. Original code license:
punycode-spec 1.0.3 (2006-Mar-23-Thu)
http://www.nicemice.net/idn/
Adam M. Costello
http://www.nicemice.net/amc/
B. Disclaimer and license
Regarding this entire document or any portion of it (including
the pseudocode and C code), the author makes no guarantees and
is not responsible for any damage resulting from its use. The
author grants irrevocable permission to anyone to use, modify,
and distribute it in any way that does not diminish the rights
of anyone else to use, modify, and distribute it, provided that
redistributed derivative works do not contain misleading author or
version information. Derivative works need not be licensed under
similar terms.
C. Punycode sample implementation
punycode-sample.c 2.0.0 (2004-Mar-21-Sun)
http://www.nicemice.net/idn/
Adam M. Costello
http://www.nicemice.net/amc/
This is ANSI C code (C89) implementing Punycode 1.0.x.
*/
#include <config.h>
#include "idn2.h" /* IDN2_OK, ... */
#include <string.h>
/*** Bootstring parameters for Punycode ***/
enum
{ base = 36, tmin = 1, tmax = 26, skew = 38, damp = 700,
initial_bias = 72, initial_n = 0x80, delimiter = 0x2D
};
/* basic(cp) tests whether cp is a basic code point: */
#define encode_basic(cp) ((uint32_t)(cp) < 0x80)
/* encode_digit(d,flag) returns the basic code point whose value */
/* (when used for representing integers) is d, which needs to be in */
/* the range 0 to base-1. The lowercase form is used unless flag is */
/* nonzero, in which case the uppercase form is used. The behavior */
/* is undefined if flag is nonzero and digit d has no uppercase form. */
static char
encode_digit (uint32_t d, int flag)
{
return d + 22 + 75 * (d < 26) - ((flag != 0) << 5);
/* 0..25 map to ASCII a..z or A..Z */
/* 26..35 map to ASCII 0..9 */
}
/* basic(cp) tests whether cp is a basic code point: */
#define decode_basic(cp) \
((cp >= 'a' && cp <= 'z') || (cp >= '0' && cp <='9') \
|| (cp >= 'A' && cp <='Z') || cp == '-' || cp == '_')
/* decode_digit(cp) returns the numeric value of a basic code */
/* point (for use in representing integers) in the range 0 to */
/* base-1, or base if cp does not represent a value. */
static unsigned
decode_digit (int cp)
{
if (cp >= 'a' && cp <= 'z')
return cp - 'a';
if (cp >= '0' && cp <= '9')
return cp - '0' + 26;
if (cp >= 'A' && cp <= 'Z')
return cp - 'A';
return 0;
}
/*** Bias adaptation function ***/
static uint32_t
adapt (uint32_t delta, uint32_t numpoints, int firsttime)
_GL_ATTRIBUTE_CONST;
static uint32_t adapt (uint32_t delta, uint32_t numpoints, int firsttime)
{
uint32_t k;
delta = firsttime ? delta / damp : delta >> 1;
/* delta >> 1 is a faster way of doing delta / 2 */
delta += delta / numpoints;
for (k = 0; delta > ((base - tmin) * tmax) / 2; k += base)
{
delta /= base - tmin;
}
return k + (base - tmin + 1) * delta / (delta + skew);
}
/**
* idn2_punycode_encode:
* @input: array of input Unicode (UCS-4) code points
* @input_length: number of code points in the @input array.
* @output: output character array with ASCII code points.
* @output_length: size of @output array
*
* Converts a sequence of code points to Punycode.
*
* Warning: Be aware that is rare for applications to need to perform
* Punycode operations, and you should consider idn2_to_ascii_8z(),
* idn2_to_ascii_lz(), idn2_to_ascii_4z() etc.
*
* Returns: On successful encoding %IDN2_OK is returned, or an error
* codes like %IDN2_PUNYCODE_BAD_INPUT, %IDN2_PUNYCODE_BIG_OUTPUT,
* or %IDN2_PUNYCODE_OVERFLOW.
*
* Since: 2.3.5
**/
int
idn2_punycode_encode (const uint32_t *input,
size_t input_length,
char *output, size_t *output_length)
{
uint32_t our_input_length, n, delta, h, b, bias, j, m, q, k, t;
size_t out, max_out;
/* The Punycode spec assumes that the input length is the same type */
/* of integer as a code point, so we need to convert the size_t to */
/* a uint32_t, which could overflow. */
if (input_length > UINT32_MAX)
return IDN2_PUNYCODE_OVERFLOW;
our_input_length = (uint32_t) input_length;
/* Initialize the state: */
n = initial_n;
delta = 0;
out = 0;
max_out = *output_length;
bias = initial_bias;
/* Handle the basic code points: */
for (j = 0; j < our_input_length; ++j)
{
if (encode_basic (input[j]))
{
if (max_out - out < 2)
return IDN2_PUNYCODE_BIG_OUTPUT;
output[out++] = (char) input[j];
}
else if (input[j] > 0x10FFFF
|| (input[j] >= 0xD800 && input[j] <= 0xDBFF))
return IDN2_PUNYCODE_BAD_INPUT;
}
h = b = (uint32_t) out;
/* cannot overflow because out <= our_input_length <= UINT32_MAX */
/* h is the number of code points that have been handled, b is the */
/* number of basic code points, and out is the number of ASCII code */
/* points that have been output. */
if (b > 0)
output[out++] = delimiter;
/* Main encoding loop: */
while (h < our_input_length)
{
/* All non-basic code points < n have been */
/* handled already. Find the next larger one: */
for (m = UINT32_MAX, j = 0; j < our_input_length; ++j)
{
/* if (basic(input[j])) continue; */
/* (not needed for Punycode) */
if (input[j] >= n && input[j] < m)
m = input[j];
}
/* Increase delta enough to advance the decoder's */
/* <n,i> state to <m,0>, but guard against overflow: */
if (m - n > (UINT32_MAX - delta) / (h + 1))
return IDN2_PUNYCODE_OVERFLOW;
delta += (m - n) * (h + 1);
n = m;
for (j = 0; j < our_input_length; ++j)
{
/* Punycode does not need to check whether input[j] is basic: */
if (input[j] < n /* || basic(input[j]) */ )
{
if (++delta == 0)
return IDN2_PUNYCODE_OVERFLOW;
}
if (input[j] == n)
{
/* Represent delta as a generalized variable-length integer: */
for (q = delta, k = base;; k += base)
{
if (out >= max_out)
return IDN2_PUNYCODE_BIG_OUTPUT;
t = k <= bias /* + tmin */ ? tmin : /* +tmin not needed */
k >= bias + tmax ? tmax : k - bias;
if (q < t)
break;
output[out++] = encode_digit (t + (q - t) % (base - t), 0);
q = (q - t) / (base - t);
}
output[out++] = encode_digit (q, 0);
bias = adapt (delta, h + 1, h == b);
delta = 0;
++h;
}
}
++delta, ++n;
}
*output_length = out;
return IDN2_OK;
}
/**
* idn2_punycode_decode:
* @input: array of ASCII characters (0..7F)
* @input_length: Number of ASCII characters in the @input array.
* @output: output character array with ASCII code points.
* @output_length: on input, guarantee that @output has room
* for this many code points; on output, *@output_length
* holds number of code points in @output.
*
* Converts Punycode to a sequence of code points.
*
* The decoder will never need to output more code points than the
* number of ASCII code points in the input, because of the way the
* encoding is defined.
*
* The number of code points output cannot exceed the maximum possible
* value of a uint32_t, even if the supplied @output_length is greater
* than that.
*
* Warning: Be aware that is rare for applications to need to perform
* Punycode operations, and you should consider
* idn2_to_unicode_8z8z(), idn2_to_unicode_lzlz() etc.
*
* Returns: On successful encoding %IDN2_OK is returned, or an error
* codes like %IDN2_PUNYCODE_BAD_INPUT, %IDN2_PUNYCODE_BIG_OUTPUT,
* or %IDN2_PUNYCODE_OVERFLOW.
*
* Since: 2.3.5
**/
int
idn2_punycode_decode (const char *input,
size_t input_length,
uint32_t *output, size_t *output_length)
{
uint32_t n, out = 0, i, max_out, bias, oldi, w, k, digit, t;
size_t b = 0, j, in;
if (!input_length)
return IDN2_PUNYCODE_BAD_INPUT;
/* Check that all chars are basic */
for (j = 0; j < input_length; ++j)
{
if (!decode_basic (input[j]))
return IDN2_PUNYCODE_BAD_INPUT;
if (input[j] == delimiter)
b = j;
}
max_out =
*output_length > UINT32_MAX ? UINT32_MAX : (uint32_t) * output_length;
if (input[b] == delimiter)
{
/* do not accept leading or trailing delimiter
* - leading delim must be omitted if there is no ASCII char in u-label
* - trailing delim means there where no non-ASCII chars in u-label
*/
if (!b || b == input_length - 1)
return IDN2_PUNYCODE_BAD_INPUT;
if (b >= max_out)
return IDN2_PUNYCODE_BIG_OUTPUT;
/* Check that all chars before last delimiter are basic chars */
/* and copy the first b code points to the output. */
for (j = 0; j < b; j++)
output[out++] = input[j];
b += 1; /* advance to non-basic char encoding */
}
/* Initialize the state: */
n = initial_n;
i = 0;
bias = initial_bias;
/* Main decoding loop: Start just after the last delimiter if any */
/* basic code points were copied; start at the beginning otherwise. */
for (in = b; in < input_length; ++out)
{
/* in is the index of the next ASCII code point to be consumed, */
/* and out is the number of code points in the output array. */
/* Decode a generalized variable-length integer into delta, */
/* which gets added to i. The overflow checking is easier */
/* if we increase i as we go, then subtract off its starting */
/* value at the end to obtain delta. */
for (oldi = i, w = 1, k = base;; k += base)
{
if (in >= input_length)
return IDN2_PUNYCODE_BAD_INPUT;
digit = decode_digit (input[in++]);
if (digit >= base)
return IDN2_PUNYCODE_BAD_INPUT;
if (digit > (UINT32_MAX - i) / w)
return IDN2_PUNYCODE_OVERFLOW;
i += digit * w;
t = k <= bias /* + tmin */ ? tmin : /* +tmin not needed */
k >= bias + tmax ? tmax : k - bias;
if (digit < t)
break;
if (w > UINT32_MAX / (base - t))
return IDN2_PUNYCODE_OVERFLOW;
w *= (base - t);
}
bias = adapt (i - oldi, out + 1, oldi == 0);
/* i was supposed to wrap around from out+1 to 0, */
/* incrementing n each time, so we'll fix that now: */
if (i / (out + 1) > UINT32_MAX - n)
return IDN2_PUNYCODE_OVERFLOW;
n += i / (out + 1);
if (n > 0x10FFFF || (n >= 0xD800 && n <= 0xDBFF))
return IDN2_PUNYCODE_BAD_INPUT;
i %= (out + 1);
/* Insert n at position i of the output: */
/* not needed for Punycode: */
/* if (basic(n)) return IDN2_PUNYCODE_BAD_INPUT; */
if (out >= max_out)
return IDN2_PUNYCODE_BIG_OUTPUT;
memmove (output + i + 1, output + i, (out - i) * sizeof *output);
output[i++] = n;
}
*output_length = (size_t) out;
/* cannot overflow because out <= old value of *output_length */
return IDN2_OK;
}
/* We are stuck exporting these old internal interfaces because old
versions of GNUTLS used them, and maybe other software. */
extern int _IDN2_API _idn2_punycode_decode (size_t input_length,
const char input[],
size_t *output_length,
uint32_t output[]);
extern int _IDN2_API _idn2_punycode_encode (size_t input_length,
const uint32_t input[],
size_t *output_length,
char output[]);
int
_idn2_punycode_decode (size_t input_length,
const char input[],
size_t *output_length, uint32_t output[])
{
return idn2_punycode_decode (input, input_length, output, output_length);
}
int
_idn2_punycode_encode (size_t input_length,
const uint32_t input[],
size_t *output_length, char output[])
{
return idn2_punycode_encode (input, input_length, output, output_length);
}
|