strerror_r: fix AIX test failures
authorEric Blake <eblake@redhat.com>
Tue, 24 May 2011 03:37:11 +0000 (21:37 -0600)
committerEric Blake <eblake@redhat.com>
Tue, 24 May 2011 19:42:57 +0000 (13:42 -0600)
Already documented as an AIX limitation.

* lib/strerror_r.c (strerror_r): Convert silent truncation to
ERANGE failure.

Signed-off-by: Eric Blake <eblake@redhat.com>
ChangeLog
lib/strerror_r.c

index 80e9369..2f31f7d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2011-05-24  Eric Blake  <eblake@redhat.com>
 
+       strerror_r: fix AIX test failures
+       * lib/strerror_r.c (strerror_r): Convert silent truncation to
+       ERANGE failure.
+
        strerror_r: fix Solaris test failures
        * lib/strerror_r.c (strerror_r): Partially populate buf on ERANGE
        failures.
index f6ce8a3..034c22e 100644 (file)
@@ -473,7 +473,8 @@ strerror_r (int errnum, char *buf, size_t buflen)
       buflen = INT_MAX;
 
 # ifdef __hpux
-    /* On HP-UX 11.31, strerror_r always fails when buflen < 80.  */
+    /* On HP-UX 11.31, strerror_r always fails when buflen < 80; it
+       also fails to change buf on EINVAL.  */
     {
       char stackbuf[80];
 
@@ -501,6 +502,23 @@ strerror_r (int errnum, char *buf, size_t buflen)
       }
 # endif
 
+# ifdef _AIX
+    /* AIX returns 0 rather than ERANGE when truncating strings; try
+       again until we are sure we got the entire string.  */
+    if (!ret && strlen (buf) == buflen - 1)
+      {
+        char stackbuf[STACKBUF_LEN];
+        size_t len;
+        strerror_r (errnum, stackbuf, sizeof stackbuf);
+        len = strlen (stackbuf);
+        /* stackbuf should have been large enough.  */
+        if (len + 1 == sizeof stackbuf)
+          abort ();
+        if (buflen <= len)
+          ret = ERANGE;
+      }
+# endif
+
     /* Some old implementations may return (-1, EINVAL) instead of EINVAL.  */
     if (ret < 0)
       ret = errno;