uri: do not add ipv6 brackets on non-ip host

The heuristic is a bit too agressive, as we may have hostname with
%-encoded ':' (as shown in GVfs URI tests).

Add an extra test to check :-decoding as well.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
Marc-André Lureau 2020-07-30 12:02:31 +04:00
parent 7ce6a01f99
commit 20ae4b46d4
2 changed files with 8 additions and 1 deletions

View File

@ -1383,7 +1383,7 @@ g_uri_join_internal (GUriFlags flags,
g_string_append_c (str, '@'); g_string_append_c (str, '@');
} }
if (strchr (host, ':')) if (strchr (host, ':') && g_hostname_is_ip_address (host))
{ {
g_string_append_c (str, '['); g_string_append_c (str, '[');
if (encoded) if (encoded)

View File

@ -669,6 +669,9 @@ static const UriAbsoluteTest absolute_tests[] = {
{ "http://:@host", { "http://:@host",
{ "http", ":", "host", -1, "", NULL, NULL } { "http", ":", "host", -1, "", NULL, NULL }
}, },
{ "scheme://foo%3Abar._webdav._tcp.local",
{ "scheme", NULL, "foo:bar._webdav._tcp.local", -1, "", NULL, NULL}
},
/* IPv6 scope ID parsing (both correct and incorrect) */ /* IPv6 scope ID parsing (both correct and incorrect) */
{ "http://[fe80::dead:beef%em1]/", { "http://[fe80::dead:beef%em1]/",
@ -1410,6 +1413,10 @@ test_uri_join (void)
g_assert_cmpstr (uri, ==, g_assert_cmpstr (uri, ==,
"scheme://user%01:pass%02;authparams%03@[::192.9.5.5]:9876/path?query#fragment"); "scheme://user%01:pass%02;authparams%03@[::192.9.5.5]:9876/path?query#fragment");
g_free (uri); g_free (uri);
uri = g_uri_join (G_URI_FLAGS_NONE, "scheme", NULL, "foo:bar._webdav._tcp.local", -1, "", NULL, NULL);
g_assert_cmpstr (uri, ==, "scheme://foo%3Abar._webdav._tcp.local");
g_free (uri);
} }
int int