ash: support platforms that don't have '%m' printf specifier
authorRon Yorston <rmy@pobox.com>
Thu, 27 Jul 2017 12:53:39 +0000 (13:53 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 28 Jul 2017 13:39:26 +0000 (15:39 +0200)
The '%m' conversion specifier prints an error message based on the
current value of 'errno'.  It is available in the GNU C library,
Cygwin (since 2012), uClibc and musl.

It is not available in various BSDs, BSD-derived systems (MacOS,
Android) or Microsoft Windows.

Use a symbol defined in platform.h to control how error messages
can be formatted to display the 'errno' message.  On platforms that
support it use '%m'; on other platforms use '%s' and strerror().

On platforms that have '%m' there is essentially no change in the
size of the binary.  Otherwise:

function                                             old     new   delta
redirect                                            1287    1310     +23
xtcsetpgrp                                            27      44     +17
dup2_or_raise                                         34      51     +17
setinputfile                                         267     275      +8
.rodata                                           163379  163371      -8
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 4/1 up/down: 65/-8)              Total: 57 bytes

Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
include/platform.h
shell/ash.c

index ea49c7e9251ecef704753616bb2491e4cd730940..b81c59d4ea5da692f8b108993a2e393933e6cd62 100644 (file)
@@ -406,6 +406,7 @@ typedef unsigned smalluint;
 #define HAVE_MNTENT_H 1
 #define HAVE_NET_ETHERNET_H 1
 #define HAVE_SYS_STATFS_H 1
+#define HAVE_PRINTF_PERCENTM 1
 
 #if defined(__UCLIBC__)
 # if UCLIBC_VERSION < KERNEL_VERSION(0, 9, 32)
@@ -461,6 +462,7 @@ typedef unsigned smalluint;
 # undef HAVE_DPRINTF
 # undef HAVE_UNLOCKED_STDIO
 # undef HAVE_UNLOCKED_LINE_OPS
+# undef HAVE_PRINTF_PERCENTM
 #endif
 
 #if defined(__dietlibc__)
@@ -483,6 +485,7 @@ typedef unsigned smalluint;
 # undef HAVE_STRVERSCMP
 # undef HAVE_XTABS
 # undef HAVE_UNLOCKED_LINE_OPS
+# undef HAVE_PRINTF_PERCENTM
 # include <osreldate.h>
 # if __FreeBSD_version < 1000029
 #  undef HAVE_STRCHRNUL /* FreeBSD added strchrnul() between 1000028 and 1000029 */
@@ -517,6 +520,7 @@ typedef unsigned smalluint;
 # undef HAVE_STRVERSCMP
 # undef HAVE_UNLOCKED_LINE_OPS
 # undef HAVE_NET_ETHERNET_H
+# undef HAVE_PRINTF_PERCENTM
 #endif
 
 /*
index 1f5a8dae02bd23701909d85a077bd4c7024ec220..f9c78ee789480bb2f26de2e5d4454fce99db0c4a 100644 (file)
@@ -1306,6 +1306,18 @@ ash_msg_and_raise_error(const char *msg, ...)
        va_end(ap);
 }
 
+/*
+ * Use '%m' to append error string on platforms that support it, '%s' and
+ * strerror() on those that don't.
+ *
+ * 'fmt' must be a string literal.
+ */
+#ifdef HAVE_PRINTF_PERCENTM
+#define ash_msg_and_raise_perror(fmt, ...) ash_msg_and_raise_error(fmt ": %m", ##__VA_ARGS__)
+#else
+#define ash_msg_and_raise_perror(fmt, ...) ash_msg_and_raise_error(fmt ": %s", ##__VA_ARGS__, strerror(errno))
+#endif
+
 static void raise_error_syntax(const char *) NORETURN;
 static void
 raise_error_syntax(const char *msg)
@@ -3827,7 +3839,7 @@ static void
 xtcsetpgrp(int fd, pid_t pgrp)
 {
        if (tcsetpgrp(fd, pgrp))
-               ash_msg_and_raise_error("can't set tty process group (%m)");
+               ash_msg_and_raise_perror("can't set tty process group");
 }
 
 /*
@@ -5313,7 +5325,7 @@ savefd(int from)
        err = newfd < 0 ? errno : 0;
        if (err != EBADF) {
                if (err)
-                       ash_msg_and_raise_error("%d: %m", from);
+                       ash_msg_and_raise_perror("%d", from);
                close(from);
                fcntl(newfd, F_SETFD, FD_CLOEXEC);
        }
@@ -5328,7 +5340,7 @@ dup2_or_raise(int from, int to)
        newfd = (from != to) ? dup2(from, to) : to;
        if (newfd < 0) {
                /* Happens when source fd is not open: try "echo >&99" */
-               ash_msg_and_raise_error("%d: %m", from);
+               ash_msg_and_raise_perror("%d", from);
        }
        return newfd;
 }
@@ -5459,7 +5471,7 @@ redirect(union node *redir, int flags)
                        /* "echo >&10" and 10 is a fd opened to a sh script? */
                        if (is_hidden_fd(sv, right_fd)) {
                                errno = EBADF; /* as if it is closed */
-                               ash_msg_and_raise_error("%d: %m", right_fd);
+                               ash_msg_and_raise_perror("%d", right_fd);
                        }
                        newfd = -1;
                } else {
@@ -5493,7 +5505,7 @@ redirect(union node *redir, int flags)
                                        if (newfd >= 0)
                                                close(newfd);
                                        errno = i;
-                                       ash_msg_and_raise_error("%d: %m", fd);
+                                       ash_msg_and_raise_perror("%d", fd);
                                        /* NOTREACHED */
                                }
                                /* EBADF: it is not open - good, remember to close it */