[network-manager-openvpn/th/utf8safe-bgo763039: 5/5] import: ignore file encoding for ovpn configuration file



commit 1788b7d5aca72695c038cf49ccc0c37b12e71773
Author: Thomas Haller <thaller redhat com>
Date:   Wed Mar 2 12:53:02 2016 +0100

    import: ignore file encoding for ovpn configuration file
    
    Openvpn treats ovpn files as ASCII configuration file and
    does not care about a specific certain encoding. As such,
    only encodings that are an extension of ASCII can work at
    all (like iso8859-* or utf8).
    
    We should not try to handle configuration files that cannot even
    be handled by openvpn itself.
    
    As regular options must be ASCII-compatbile, the encoding only
    matters for filenames and inline-blobs.
    
    Openvpn itself doesn't care about encoding of filenames and passes
    them directly to the system functions (open, access). The same is true
    for glib, which expects paths in "GLib file encoding".
    Note, that openvpn doesn't support escape sequences like "\344", thus,
    if the user really wanted to specify such a character, he is only
    able to do so if we don't mess with the encoding during import.
    
    Inline blobs usually are ASCII/base64 encoded. If they happen to be in a
    different encoding, we still want to preserve the original blob and
    not guess and convert encodings.
    
    The only sane option is ignoring the encoding and pretend it is
    ASCII compatible. Who writes non-utf8 configuration files anyway?

 properties/import-export.c            |   17 -----------------
 properties/tests/test-import-export.c |    3 +--
 2 files changed, 1 insertions(+), 19 deletions(-)
---
diff --git a/properties/import-export.c b/properties/import-export.c
index ae27715..c693d56 100644
--- a/properties/import-export.c
+++ b/properties/import-export.c
@@ -758,7 +758,6 @@ do_import (const char *path, const char *contents, gsize contents_len, GError **
        gs_free char *basename = NULL;
        gs_free char *default_path = NULL;
        char *tmp, *tmp2;
-       gs_free char *new_contents = NULL;
        const char *last_seen_key_direction = NULL;
        gboolean have_certs, have_ca;
        GSList *inline_blobs = NULL, *sl_iter;
@@ -794,22 +793,6 @@ do_import (const char *path, const char *contents, gsize contents_len, GError **
                *tmp = '\0';
        g_object_set (s_con, NM_SETTING_CONNECTION_ID, basename, NULL);
 
-       if (!g_utf8_validate (contents, contents_len, NULL)) {
-               GError *conv_error = NULL;
-               gsize bytes_written;
-
-               new_contents = g_locale_to_utf8 (contents, contents_len, NULL, &bytes_written, &conv_error);
-               if (conv_error) {
-                       /* ignore the error, we tried at least. */
-                       g_error_free (conv_error);
-                       g_free (new_contents);
-               } else {
-                       g_assert (new_contents);
-                       contents = new_contents;  /* update contents with the UTF-8 safe text */
-                       contents_len = bytes_written + 1;
-               }
-       }
-
        if (strncmp (contents, "\xEF\xBB\xBF", 3) == 0) {
                /* skip over UTF-8 BOM */
                contents += 3;
diff --git a/properties/tests/test-import-export.c b/properties/tests/test-import-export.c
index 612675a..5c8b7a0 100644
--- a/properties/tests/test-import-export.c
+++ b/properties/tests/test-import-export.c
@@ -496,7 +496,6 @@ test_non_utf8_import (void)
        NMConnection *connection;
        NMSettingConnection *s_con;
        NMSettingVpn *s_vpn;
-       const char *expected_cacert = "Attätaenko.pem";
        char *expected_path;
        const char *charset = NULL;
 
@@ -517,7 +516,7 @@ test_non_utf8_import (void)
        s_vpn = nm_connection_get_setting_vpn (connection);
        g_assert (s_vpn);
 
-       expected_path = g_strdup_printf ("%s/%s", SRCDIR, expected_cacert);
+       expected_path = g_strdup_printf ("%s/%s", SRCDIR, "Att\\344taenko.pem");
        _check_item (s_vpn, NM_OPENVPN_KEY_CA, expected_path);
        g_free (expected_path);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]