mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 18:28:25 +00:00
Revert "Skip ascii-only names IDN processing"
This reverts commit 9cb7f8a655.
This commit is contained in:
24
src/util.c
24
src/util.c
@@ -115,8 +115,7 @@ u64 rand64(void)
|
|||||||
return (u64)out[outleft+1] + (((u64)out[outleft]) << 32);
|
return (u64)out[outleft+1] + (((u64)out[outleft]) << 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* returns 1 if name is OK and ascii printable
|
/* returns 2 if names is OK but contains one or more underscores */
|
||||||
* returns 2 if name should be processed by IDN */
|
|
||||||
static int check_name(char *in)
|
static int check_name(char *in)
|
||||||
{
|
{
|
||||||
/* remove trailing .
|
/* remove trailing .
|
||||||
@@ -124,7 +123,6 @@ static int check_name(char *in)
|
|||||||
size_t dotgap = 0, l = strlen(in);
|
size_t dotgap = 0, l = strlen(in);
|
||||||
char c;
|
char c;
|
||||||
int nowhite = 0;
|
int nowhite = 0;
|
||||||
int r = 1;
|
|
||||||
int hasuscore = 0;
|
int hasuscore = 0;
|
||||||
|
|
||||||
if (l == 0 || l > MAXDNAME) return 0;
|
if (l == 0 || l > MAXDNAME) return 0;
|
||||||
@@ -144,30 +142,22 @@ static int check_name(char *in)
|
|||||||
else if (isascii((unsigned char)c) && iscntrl((unsigned char)c))
|
else if (isascii((unsigned char)c) && iscntrl((unsigned char)c))
|
||||||
/* iscntrl only gives expected results for ascii */
|
/* iscntrl only gives expected results for ascii */
|
||||||
return 0;
|
return 0;
|
||||||
else if (!isascii((unsigned char)c))
|
|
||||||
#if !defined(HAVE_IDN) && !defined(HAVE_LIBIDN2)
|
#if !defined(HAVE_IDN) && !defined(HAVE_LIBIDN2)
|
||||||
|
else if (!isascii((unsigned char)c))
|
||||||
return 0;
|
return 0;
|
||||||
#else
|
|
||||||
r = 2;
|
|
||||||
#endif
|
#endif
|
||||||
else if (c != ' ')
|
else if (c != ' ')
|
||||||
{
|
{
|
||||||
nowhite = 1;
|
nowhite = 1;
|
||||||
#if defined(HAVE_LIBIDN2) && (!defined(IDN2_VERSION_NUMBER) || IDN2_VERSION_NUMBER < 0x02000003)
|
|
||||||
/* older libidn2 strips underscores, so don't do IDN processing
|
|
||||||
if the name has an underscore */
|
|
||||||
if (c == '_')
|
if (c == '_')
|
||||||
hasuscore = 1;
|
hasuscore = 1;
|
||||||
#else
|
|
||||||
(void)hasuscore;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!nowhite)
|
if (!nowhite)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
return (hasuscore) ? 1 : r;
|
return hasuscore ? 2 : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hostnames have a more limited valid charset than domain names
|
/* Hostnames have a more limited valid charset than domain names
|
||||||
@@ -214,8 +204,12 @@ char *canonicalise(char *in, int *nomem)
|
|||||||
if (!(rc = check_name(in)))
|
if (!(rc = check_name(in)))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
#if defined(HAVE_LIBIDN2) && (!defined(IDN2_VERSION_NUMBER) || IDN2_VERSION_NUMBER < 0x02000003)
|
||||||
|
/* older libidn2 strips underscores, so don't do IDN processing
|
||||||
|
if the name has an underscore (check_name() returned 2) */
|
||||||
|
if (rc != 2)
|
||||||
|
#endif
|
||||||
#if defined(HAVE_IDN) || defined(HAVE_LIBIDN2)
|
#if defined(HAVE_IDN) || defined(HAVE_LIBIDN2)
|
||||||
if (rc == 2)
|
|
||||||
{
|
{
|
||||||
# ifdef HAVE_LIBIDN2
|
# ifdef HAVE_LIBIDN2
|
||||||
rc = idn2_to_ascii_lz(in, &ret, IDN2_NONTRANSITIONAL);
|
rc = idn2_to_ascii_lz(in, &ret, IDN2_NONTRANSITIONAL);
|
||||||
@@ -240,8 +234,6 @@ char *canonicalise(char *in, int *nomem)
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
(void)rc;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if ((ret = whine_malloc(strlen(in)+1)))
|
if ((ret = whine_malloc(strlen(in)+1)))
|
||||||
|
|||||||
Reference in New Issue
Block a user