Skip to content
Snippets Groups Projects
Commit abf485e6 authored by Ben Gamari's avatar Ben Gamari
Browse files

base: Use strerror_r

As noted by #24344, `strerror` is not necessarily thread-safe.
Thankfully, POSIX.1-2001 has long offered `strerror_r`, which is
safe to use.

Fixes #24344.
parent 0d12b987
No related branches found
No related tags found
No related merge requests found
Pipeline #89180 failed
// glibc will only expose the POSIX strerror_r if this is defined.
#define _POSIX_C_SOURCE 200112L
#include <string.h>
int base_strerror_r(int errnum, char *ptr, size_t buflen)
{
return strerror_r(errnum, ptr, buflen);
}
......@@ -460,6 +460,20 @@ throwErrnoPathIfMinus1_ = throwErrnoPathIf_ (== -1)
-- conversion of an "errno" value into IO error
-- --------------------------------------------
foreign import ccall "base_strerror_r"
c_strerror_r :: CInt -> Ptr CChar -> CSize -> IO CInt
errnoToString :: Errno -> IO String
errnoToString errno =
allocaBytes len $ \ptr -> do
ret <- c_strerror_r errno ptr len
if ret /= 0
then return "errnoToString failed"
else peekCString ptr
where
len :: Num a => a
len = 512
-- | Construct an 'IOError' based on the given 'Errno' value.
-- The optional information can be used to improve the accuracy of
-- error messages.
......@@ -470,7 +484,7 @@ errnoToIOError :: String -- ^ the location where the error occurred
-> Maybe String -- ^ optional filename associated with the error
-> IOError
errnoToIOError loc errno maybeHdl maybeName = unsafePerformIO $ do
str <- strerror errno >>= peekCString
str <- errnoToString errno
return (IOError maybeHdl errType loc str (Just errno') maybeName)
where
Errno errno' = errno
......@@ -576,5 +590,3 @@ errnoToIOError loc errno maybeHdl maybeName = unsafePerformIO $ do
| errno == eXDEV = UnsupportedOperation
| otherwise = OtherError
foreign import ccall unsafe "string.h" strerror :: Errno -> IO (Ptr CChar)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment