Coverage Report

Created: 2026-01-09 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libidn/lib/tld.c
Line
Count
Source
1
/* tld.c --- Declarations for TLD restriction checking.
2
   Copyright (C) 2004-2025 Simon Josefsson.
3
   Copyright (C) 2003-2025 Free Software Foundation, Inc.
4
5
   Author: Thomas Jacob, Internet24.de
6
7
   This file is part of GNU Libidn.
8
9
   GNU Libidn is free software: you can redistribute it and/or
10
   modify it under the terms of either:
11
12
     * the GNU Lesser General Public License as published by the Free
13
       Software Foundation; either version 3 of the License, or (at
14
       your option) any later version.
15
16
   or
17
18
     * the GNU General Public License as published by the Free
19
       Software Foundation; either version 2 of the License, or (at
20
       your option) any later version.
21
22
   or both in parallel, as here.
23
24
   GNU Libidn is distributed in the hope that it will be useful,
25
   but WITHOUT ANY WARRANTY; without even the implied warranty of
26
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27
   General Public License for more details.
28
29
   You should have received copies of the GNU General Public License and
30
   the GNU Lesser General Public License along with this program.  If
31
   not, see <https://www.gnu.org/licenses/>. */
32
33
#include <config.h>
34
35
/* Get stringprep_utf8_to_ucs4, stringprep_locale_to_utf8. */
36
#include <stringprep.h>
37
38
/* Get strcmp(). */
39
#include <string.h>
40
41
/* Get specifications. */
42
#include <tld.h>
43
44
/* Array of built-in domain restriction structures.  See tlds.c.  */
45
extern const Tld_table *_tld_tables[];
46
47
/**
48
 * tld_get_table:
49
 * @tld: TLD name (e.g. "com") as zero terminated ASCII byte string.
50
 * @tables: Zero terminated array of #Tld_table info-structures for
51
 *   TLDs.
52
 *
53
 * Get the TLD table for a named TLD by searching through the given
54
 * TLD table array.
55
 *
56
 * Return value: Return structure corresponding to TLD @tld by going
57
 *   thru @tables, or return %NULL if no such structure is found.
58
 */
59
const Tld_table *
60
tld_get_table (const char *tld, const Tld_table **tables)
61
3.23k
{
62
3.23k
  const Tld_table **tldtable = NULL;
63
64
3.23k
  if (!tld || !tables)
65
0
    return NULL;
66
67
3.69k
  for (tldtable = tables; *tldtable; tldtable++)
68
3.54k
    if (!strcmp ((*tldtable)->name, tld))
69
3.08k
      return *tldtable;
70
71
146
  return NULL;
72
3.23k
}
73
74
/**
75
 * tld_default_table:
76
 * @tld: TLD name (e.g. "com") as zero terminated ASCII byte string.
77
 * @overrides: Additional zero terminated array of #Tld_table
78
 *   info-structures for TLDs, or %NULL to only use library default
79
 *   tables.
80
 *
81
 * Get the TLD table for a named TLD, using the internal defaults,
82
 * possibly overridden by the (optional) supplied tables.
83
 *
84
 * Return value: Return structure corresponding to TLD @tld_str, first
85
 *   looking through @overrides then thru built-in list, or %NULL if
86
 *   no such structure found.
87
 */
88
const Tld_table *
89
tld_default_table (const char *tld, const Tld_table **overrides)
90
3.23k
{
91
3.23k
  const Tld_table *tldtable = NULL;
92
93
3.23k
  if (!tld)
94
0
    return NULL;
95
96
3.23k
  if (overrides)
97
0
    tldtable = tld_get_table (tld, overrides);
98
99
3.23k
  if (!tldtable)
100
3.23k
    tldtable = tld_get_table (tld, _tld_tables);
101
102
3.23k
  return tldtable;
103
3.23k
}
104
105
6.83k
#define DOTP(c) ((c) == 0x002E || (c) == 0x3002 || \
106
6.83k
     (c) == 0xFF0E || (c) == 0xFF61)
107
108
/**
109
 * tld_get_4:
110
 * @in: Array of unicode code points to process. Does not need to be
111
 *   zero terminated.
112
 * @inlen: Number of unicode code points.
113
 * @out: Zero terminated ascii result string pointer.
114
 *
115
 * Isolate the top-level domain of @in and return it as an ASCII
116
 * string in @out.
117
 *
118
 * Return value: Return %TLD_SUCCESS on success, or the corresponding
119
 *   #Tld_rc error code otherwise.
120
 */
121
int
122
tld_get_4 (const uint32_t *in, size_t inlen, char **out)
123
8.05k
{
124
8.05k
  const uint32_t *ipos;
125
8.05k
  size_t olen;
126
127
8.05k
  *out = NULL;
128
8.05k
  if (!in || inlen == 0)
129
341
    return TLD_NODATA;
130
131
7.71k
  ipos = &in[inlen - 1];
132
7.71k
  olen = 0;
133
  /* Scan backwards for non(latin)letters. */
134
28.9k
  while (ipos >= in && ((*ipos >= 0x41 && *ipos <= 0x5A) ||
135
14.1k
      (*ipos >= 0x61 && *ipos <= 0x7A)))
136
21.2k
    ipos--, olen++;
137
138
7.71k
  if (olen > 0 && ipos >= in && DOTP (*ipos))
139
865
    {
140
      /* Found something that appears a TLD. */
141
865
      char *out_s = malloc (sizeof (char) * (olen + 1));
142
865
      char *opos = out_s;
143
144
865
      if (!opos)
145
0
  return TLD_MALLOC_ERROR;
146
147
865
      ipos++;
148
      /* Transcribe to lowercase ascii string. */
149
6.85k
      for (; ipos < &in[inlen]; ipos++, opos++)
150
5.98k
  *opos = *ipos > 0x5A ? *ipos : *ipos + 0x20;
151
865
      *opos = 0;
152
865
      *out = out_s;
153
865
      return TLD_SUCCESS;
154
865
    }
155
156
6.84k
  return TLD_NO_TLD;
157
7.71k
}
158
159
/**
160
 * tld_get_4z:
161
 * @in: Zero terminated array of unicode code points to process.
162
 * @out: Zero terminated ascii result string pointer.
163
 *
164
 * Isolate the top-level domain of @in and return it as an ASCII
165
 * string in @out.
166
 *
167
 * Return value: Return %TLD_SUCCESS on success, or the corresponding
168
 *   #Tld_rc error code otherwise.
169
 */
170
int
171
tld_get_4z (const uint32_t *in, char **out)
172
1.38k
{
173
1.38k
  const uint32_t *ipos = in;
174
175
1.38k
  if (!in)
176
0
    return TLD_NODATA;
177
178
12.1k
  while (*ipos)
179
10.8k
    ipos++;
180
181
1.38k
  return tld_get_4 (in, ipos - in, out);
182
1.38k
}
183
184
/**
185
 * tld_get_z:
186
 * @in: Zero terminated character array to process.
187
 * @out: Zero terminated ascii result string pointer.
188
 *
189
 * Isolate the top-level domain of @in and return it as an ASCII
190
 * string in @out.  The input string @in may be UTF-8, ISO-8859-1 or
191
 * any ASCII compatible character encoding.
192
 *
193
 * Return value: Return %TLD_SUCCESS on success, or the corresponding
194
 *   #Tld_rc error code otherwise.
195
 */
196
int
197
tld_get_z (const char *in, char **out)
198
2.72k
{
199
2.72k
  uint32_t *iucs;
200
2.72k
  size_t i, ilen;
201
2.72k
  int rc;
202
203
2.72k
  ilen = strlen (in);
204
2.72k
  iucs = calloc (ilen, sizeof (*iucs));
205
206
2.72k
  if (!iucs)
207
0
    return TLD_MALLOC_ERROR;
208
209
89.4k
  for (i = 0; i < ilen; i++)
210
86.7k
    iucs[i] = in[i];
211
212
2.72k
  rc = tld_get_4 (iucs, ilen, out);
213
214
2.72k
  free (iucs);
215
216
2.72k
  return rc;
217
2.72k
}
218
219
/*
220
 * tld_checkchar - verify that character is permitted
221
 * @ch: 32 bit unicode character to check.
222
 * @tld: A #Tld_table data structure to check @ch against.
223
 *
224
 * Verify if @ch is either in [a-z0-9-.] or mentioned as a valid
225
 * character in @tld.
226
 *
227
 * Return value: Return the #Tld_rc value %TLD_SUCCESS if @ch is a
228
 *   valid character for the TLD @tld or if @tld is %NULL,
229
 *   %TLD_INVALID if @ch is invalid as defined by @tld.
230
 */
231
static int
232
_tld_checkchar (uint32_t ch, const Tld_table *tld)
233
9.15k
{
234
9.15k
  const Tld_table_element *s, *e, *m;
235
236
9.15k
  if (!tld)
237
0
    return TLD_SUCCESS;
238
239
  /* Check for [-a-z0-9.]. */
240
9.15k
  if ((ch >= 0x61 && ch <= 0x7A) ||
241
8.21k
      (ch >= 0x30 && ch <= 0x39) || ch == 0x2D || DOTP (ch))
242
6.36k
    return TLD_SUCCESS;
243
244
2.79k
  s = tld->valid;
245
2.79k
  e = s + tld->nvalid;
246
10.6k
  while (s < e)
247
9.10k
    {
248
9.10k
      m = s + ((e - s) >> 1);
249
9.10k
      if (ch < m->start)
250
1.88k
  e = m;
251
7.21k
      else if (ch > m->end)
252
6.01k
  s = m + 1;
253
1.20k
      else
254
1.20k
  return TLD_SUCCESS;
255
9.10k
    }
256
257
1.59k
  return TLD_INVALID;
258
2.79k
}
259
260
/**
261
 * tld_check_4t:
262
 * @in: Array of unicode code points to process. Does not need to be
263
 *   zero terminated.
264
 * @inlen: Number of unicode code points.
265
 * @errpos: Position of offending character is returned here.
266
 * @tld: A #Tld_table data structure representing the restrictions for
267
 *   which the input should be tested.
268
 *
269
 * Test each of the code points in @in for whether or not
270
 * they are allowed by the data structure in @tld, return
271
 * the position of the first character for which this is not
272
 * the case in @errpos.
273
 *
274
 * Return value: Returns the #Tld_rc value %TLD_SUCCESS if all code
275
 *   points are valid or when @tld is null, %TLD_INVALID if a
276
 *   character is not allowed, or additional error codes on general
277
 *   failure conditions.
278
 */
279
int
280
tld_check_4t (const uint32_t *in, size_t inlen, size_t *errpos,
281
        const Tld_table *tld)
282
1.89k
{
283
1.89k
  const uint32_t *ipos;
284
1.89k
  int rc;
285
286
1.89k
  if (!tld)      /* No data for TLD so everything is valid. */
287
146
    return TLD_SUCCESS;
288
289
1.75k
  ipos = in;
290
9.31k
  while (ipos < &in[inlen])
291
9.15k
    {
292
9.15k
      rc = _tld_checkchar (*ipos, tld);
293
9.15k
      if (rc != TLD_SUCCESS)
294
1.59k
  {
295
1.59k
    if (errpos)
296
1.59k
      *errpos = ipos - in;
297
1.59k
    return rc;
298
1.59k
  }
299
7.56k
      ipos++;
300
7.56k
    }
301
157
  return TLD_SUCCESS;
302
1.75k
}
303
304
/**
305
 * tld_check_4tz:
306
 * @in: Zero terminated array of unicode code points to process.
307
 * @errpos: Position of offending character is returned here.
308
 * @tld: A #Tld_table data structure representing the restrictions for
309
 *   which the input should be tested.
310
 *
311
 * Test each of the code points in @in for whether or not
312
 * they are allowed by the data structure in @tld, return
313
 * the position of the first character for which this is not
314
 * the case in @errpos.
315
 *
316
 * Return value: Returns the #Tld_rc value %TLD_SUCCESS if all code
317
 *   points are valid or when @tld is null, %TLD_INVALID if a
318
 *   character is not allowed, or additional error codes on general
319
 *   failure conditions.
320
 */
321
int
322
tld_check_4tz (const uint32_t *in, size_t *errpos, const Tld_table *tld)
323
1.38k
{
324
1.38k
  const uint32_t *ipos = in;
325
326
1.38k
  if (!ipos)
327
0
    return TLD_NODATA;
328
329
12.1k
  while (*ipos)
330
10.8k
    ipos++;
331
332
1.38k
  return tld_check_4t (in, ipos - in, errpos, tld);
333
1.38k
}
334
335
/**
336
 * tld_check_4:
337
 * @in: Array of unicode code points to process. Does not need to be
338
 *   zero terminated.
339
 * @inlen: Number of unicode code points.
340
 * @errpos: Position of offending character is returned here.
341
 * @overrides: A #Tld_table array of additional domain restriction
342
 *  structures that complement and supersede the built-in information.
343
 *
344
 * Test each of the code points in @in for whether or not they are
345
 * allowed by the information in @overrides or by the built-in TLD
346
 * restriction data. When data for the same TLD is available both
347
 * internally and in @overrides, the information in @overrides takes
348
 * precedence. If several entries for a specific TLD are found, the
349
 * first one is used.  If @overrides is %NULL, only the built-in
350
 * information is used.  The position of the first offending character
351
 * is returned in @errpos.
352
 *
353
 * Return value: Returns the #Tld_rc value %TLD_SUCCESS if all code
354
 *   points are valid or when @tld is null, %TLD_INVALID if a
355
 *   character is not allowed, or additional error codes on general
356
 *   failure conditions.
357
 */
358
int
359
tld_check_4 (const uint32_t *in, size_t inlen, size_t *errpos,
360
       const Tld_table **overrides)
361
3.94k
{
362
3.94k
  const Tld_table *tld;
363
3.94k
  char *domain;
364
3.94k
  int rc;
365
366
3.94k
  if (errpos)
367
3.94k
    *errpos = 0;
368
369
  /* Get TLD name. */
370
3.94k
  rc = tld_get_4 (in, inlen, &domain);
371
372
3.94k
  if (rc != TLD_SUCCESS)
373
3.43k
    {
374
3.43k
      if (rc == TLD_NO_TLD)  /* No TLD, say OK */
375
3.20k
  return TLD_SUCCESS;
376
227
      else
377
227
  return rc;
378
3.43k
    }
379
380
  /* Retrieve appropriate data structure. */
381
509
  tld = tld_default_table (domain, overrides);
382
509
  free (domain);
383
384
509
  return tld_check_4t (in, inlen, errpos, tld);
385
3.94k
}
386
387
/**
388
 * tld_check_4z:
389
 * @in: Zero-terminated array of unicode code points to process.
390
 * @errpos: Position of offending character is returned here.
391
 * @overrides: A #Tld_table array of additional domain restriction
392
 *   structures that complement and supersede the built-in information.
393
 *
394
 * Test each of the code points in @in for whether or not they are
395
 * allowed by the information in @overrides or by the built-in TLD
396
 * restriction data. When data for the same TLD is available both
397
 * internally and in @overrides, the information in @overrides takes
398
 * precedence. If several entries for a specific TLD are found, the
399
 * first one is used.  If @overrides is %NULL, only the built-in
400
 * information is used.  The position of the first offending character
401
 * is returned in @errpos.
402
 *
403
 * Return value: Returns the #Tld_rc value %TLD_SUCCESS if all code
404
 *   points are valid or when @tld is null, %TLD_INVALID if a
405
 *   character is not allowed, or additional error codes on general
406
 *   failure conditions.
407
 */
408
int
409
tld_check_4z (const uint32_t *in, size_t *errpos, const Tld_table **overrides)
410
1.38k
{
411
1.38k
  const uint32_t *ipos = in;
412
413
1.38k
  if (!ipos)
414
0
    return TLD_NODATA;
415
416
12.1k
  while (*ipos)
417
10.8k
    ipos++;
418
419
1.38k
  return tld_check_4 (in, ipos - in, errpos, overrides);
420
1.38k
}
421
422
/**
423
 * tld_check_8z:
424
 * @in: Zero-terminated UTF8 string to process.
425
 * @errpos: Position of offending character is returned here.
426
 * @overrides: A #Tld_table array of additional domain restriction
427
 *   structures that complement and supersede the built-in information.
428
 *
429
 * Test each of the characters in @in for whether or not they are
430
 * allowed by the information in @overrides or by the built-in TLD
431
 * restriction data. When data for the same TLD is available both
432
 * internally and in @overrides, the information in @overrides takes
433
 * precedence. If several entries for a specific TLD are found, the
434
 * first one is used.  If @overrides is %NULL, only the built-in
435
 * information is used.  The position of the first offending character
436
 * is returned in @errpos.  Note that the error position refers to the
437
 * decoded character offset rather than the byte position in the
438
 * string.
439
 *
440
 * Return value: Returns the #Tld_rc value %TLD_SUCCESS if all
441
 *   characters are valid or when @tld is null, %TLD_INVALID if a
442
 *   character is not allowed, or additional error codes on general
443
 *   failure conditions.
444
 */
445
int
446
tld_check_8z (const char *in, size_t *errpos, const Tld_table **overrides)
447
3.29k
{
448
3.29k
  uint32_t *iucs;
449
3.29k
  size_t ilen;
450
3.29k
  int rc;
451
452
3.29k
  if (!in)
453
0
    return TLD_NODATA;
454
455
3.29k
  iucs = stringprep_utf8_to_ucs4 (in, -1, &ilen);
456
457
3.29k
  if (!iucs)
458
738
    return TLD_MALLOC_ERROR;
459
460
2.55k
  rc = tld_check_4 (iucs, ilen, errpos, overrides);
461
462
2.55k
  free (iucs);
463
464
2.55k
  return rc;
465
3.29k
}
466
467
/**
468
 * tld_check_lz:
469
 * @in: Zero-terminated string in the current locales encoding to process.
470
 * @errpos: Position of offending character is returned here.
471
 * @overrides: A #Tld_table array of additional domain restriction
472
 *   structures that complement and supersede the built-in information.
473
 *
474
 * Test each of the characters in @in for whether or not they are
475
 * allowed by the information in @overrides or by the built-in TLD
476
 * restriction data. When data for the same TLD is available both
477
 * internally and in @overrides, the information in @overrides takes
478
 * precedence. If several entries for a specific TLD are found, the
479
 * first one is used.  If @overrides is %NULL, only the built-in
480
 * information is used.  The position of the first offending character
481
 * is returned in @errpos.  Note that the error position refers to the
482
 * decoded character offset rather than the byte position in the
483
 * string.
484
 *
485
 * Return value: Returns the #Tld_rc value %TLD_SUCCESS if all
486
 *   characters are valid or when @tld is null, %TLD_INVALID if a
487
 *   character is not allowed, or additional error codes on general
488
 *   failure conditions.
489
 */
490
int
491
tld_check_lz (const char *in, size_t *errpos, const Tld_table **overrides)
492
2.72k
{
493
2.72k
  char *utf8;
494
2.72k
  int rc;
495
496
2.72k
  if (!in)
497
0
    return TLD_NODATA;
498
499
2.72k
  utf8 = stringprep_locale_to_utf8 (in);
500
2.72k
  if (!utf8)
501
2.15k
    return TLD_ICONV_ERROR;
502
503
504
567
  rc = tld_check_8z (utf8, errpos, overrides);
505
506
567
  free (utf8);
507
508
567
  return rc;
509
2.72k
}
510
511
/**
512
 * Tld_rc:
513
 * @TLD_SUCCESS: Successful operation.  This value is guaranteed to
514
 *   always be zero, the remaining ones are only guaranteed to hold
515
 *   non-zero values, for logical comparison purposes.
516
 * @TLD_INVALID: Invalid character found.
517
 * @TLD_NODATA: No input data was provided.
518
 * @TLD_MALLOC_ERROR: Error during memory allocation.
519
 * @TLD_ICONV_ERROR: Character encoding conversion error.
520
 * @TLD_NO_TLD: No top-level domain found in domain string.
521
 * @TLD_NOTLD: Same as @TLD_NO_TLD, for compatibility
522
 *   with typo in earlier versions.
523
 *
524
 * Enumerated return codes of the TLD checking functions.
525
 * The value 0 is guaranteed to always correspond to success.
526
 */