]> git.proxmox.com Git - pve-common.git/commitdiff
tools: allow to force UTF-8 encoding for file_set_contents
authorLukas Wagner <l.wagner@proxmox.com>
Wed, 30 Aug 2023 12:37:52 +0000 (14:37 +0200)
committerFiona Ebner <f.ebner@proxmox.com>
Mon, 11 Sep 2023 11:42:07 +0000 (13:42 +0200)
Rationale: This is used from cfs_write_file, which is now also used to
write utf8-encoded strings that come from Rust. If no encoding is
specified while writing the file, we run into problems with certain
special characters (e.g. 'ü').

Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
[FG: use flag parameter instead of encoding as a string
     use stricter 'UTF-8' instaed of 'utf8' (see 'perldoc Enocode')]
Suggested-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
[FE: implement changes suggested by Fabian
     move binmode call to where $fh is known to be set]
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
src/PVE/Tools.pm

index 2cfe93f7f0f4cbe909a3c2df54aac3ec825d0e4a..569f0cdca0edf96f56c852267b1d34e839a25add 100644 (file)
@@ -238,7 +238,7 @@ sub lock_file {
 }
 
 sub file_set_contents {
-    my ($filename, $data, $perm)  = @_;
+    my ($filename, $data, $perm, $force_utf8)  = @_;
 
     $perm = 0644 if !defined($perm);
 
@@ -253,6 +253,9 @@ sub file_set_contents {
            }
        }
        die "unable to open file '$tmpname' - $!\n" if !$fh;
+
+       binmode($fh, ":encoding(UTF-8)") if $force_utf8;
+
        die "unable to write '$tmpname' - $!\n" unless print $fh $data;
        die "closing file '$tmpname' failed - $!\n" unless close $fh;
     };