guix-commits
[Top][All Lists]
Advanced

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

12/27: libutil: Improve errmsg on readLink size mismatch.


From: Ludovic Courtès
Subject: 12/27: libutil: Improve errmsg on readLink size mismatch.
Date: Wed, 03 Jun 2015 22:00:38 +0000

civodul pushed a commit to branch nix
in repository guix.

commit 0fed5fde65e4a0cd600dc181e5b3c42d1147df51
Author: aszlig <address@hidden>
Date:   Fri Jan 2 03:27:39 2015 +0100

    libutil: Improve errmsg on readLink size mismatch.
    
    A message like "error: reading symbolic link `...' : Success" really is
    quite confusing, so let's not indicate "success" but rather point out
    the real issue.
    
    We could also limit the check of this to just check for non-negative
    values, but this would introduce a race condition between stat() and
    readlink() if the link target changes between those two calls, thus
    leading to a buffer overflow vulnerability.
    
    Reported by @Ericson2314 on IRC. Happened due to a possible ntfs-3g bug
    where a relative symlink returned the absolute path (st_)size in stat()
    while readlink() returned the relative size.
    
    Signed-off-by: aszlig <address@hidden>
    Tested-by: John Ericson <address@hidden>
---
 nix/libutil/util.cc |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/nix/libutil/util.cc b/nix/libutil/util.cc
index 7998664..410d0f2 100644
--- a/nix/libutil/util.cc
+++ b/nix/libutil/util.cc
@@ -193,8 +193,12 @@ Path readLink(const Path & path)
     if (!S_ISLNK(st.st_mode))
         throw Error(format("`%1%' is not a symlink") % path);
     char buf[st.st_size];
-    if (readlink(path.c_str(), buf, st.st_size) != st.st_size)
-        throw SysError(format("reading symbolic link `%1%'") % path);
+    ssize_t rlsize = readlink(path.c_str(), buf, st.st_size);
+    if (rlsize == -1)
+        throw SysError(format("reading symbolic link '%1%'") % path);
+    else if (rlsize != st.st_size)
+        throw Error(format("symbolic link '%1%' size mismatch %2% != %3%")
+            % path % rlsize % st.st_size);
     return string(buf, st.st_size);
 }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]