]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
include/carefulputc: cleanup and add fputs_{quoted,nonblank}()
authorKarel Zak <kzak@redhat.com>
Wed, 19 Mar 2014 12:25:45 +0000 (13:25 +0100)
committerKarel Zak <kzak@redhat.com>
Thu, 3 Apr 2014 10:29:16 +0000 (12:29 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
include/carefulputc.h
login-utils/last.c
term-utils/wall.c
term-utils/write.c

index d4d0ee4ea5096fed492db98d5dd67e4d9cfb2cfd..2273028d1368d507b35c491e08b9424fecf85e37 100644 (file)
@@ -1,16 +1,18 @@
-#ifndef _CAREFUULPUTC_H
-#define _CAREFUULPUTC_H
+#ifndef UTIL_LINUX_CAREFUULPUTC_H
+#define UTIL_LINUX_CAREFUULPUTC_H
 
 /* putc() for use in write and wall (that sometimes are sgid tty) */
 /* Avoid control characters in our locale, and also ASCII control characters.
    Note that the locale of the recipient is unknown. */
 #include <stdio.h>
 #include <ctype.h>
+#include <string.h>
+#include <ctype.h>
 
 #define iso8859x_iscntrl(c) \
        (((c) & 0x7f) < 0x20 || (c) == 0x7f)
 
-static inline int carefulputc(int c, FILE *fp, const char fail) {
+static inline int fputc_careful(int c, FILE *fp, const char fail) {
        int ret;
 
        if (c == '\007' || c == '\t' || c == '\r' || c == '\n' ||
@@ -26,4 +28,41 @@ static inline int carefulputc(int c, FILE *fp, const char fail) {
        return (ret < 0) ? EOF : 0;
 }
 
+
+static inline void fputs_quoted(const char *data, FILE *out)
+{
+       const char *p;
+
+       fputc('"', out);
+       for (p = data; p && *p; p++) {
+               if ((unsigned char) *p == 0x22 ||               /* " */
+                   (unsigned char) *p == 0x5c ||               /* \ */
+                   !isprint((unsigned char) *p) ||
+                   iscntrl((unsigned char) *p)) {
+
+                       fprintf(out, "\\x%02x", (unsigned char) *p);
+               } else
+                       fputc(*p, out);
+       }
+       fputc('"', out);
+}
+
+static inline void fputs_nonblank(const char *data, FILE *out)
+{
+       const char *p;
+
+       for (p = data; p && *p; p++) {
+               if (isblank((unsigned char) *p) ||
+                   (unsigned char) *p == 0x5c ||               /* \ */
+                   !isprint((unsigned char) *p) ||
+                   iscntrl((unsigned char) *p)) {
+
+                       fprintf(out, "\\x%02x", (unsigned char) *p);
+
+               } else
+                       fputc(*p, out);
+       }
+}
+
+
 #endif  /*  _CAREFUULPUTC_H  */
index e4a8497765fd9a6db09b8da67c66fa170f03b7b8..5122f8e4b3855497fde82162b8cf850bd644f736 100644 (file)
@@ -528,7 +528,7 @@ static int list(const struct last_control *ctl, struct utmp *p, time_t t, int wh
         *      Print out "final" string safely.
         */
        for (s = final; *s; s++)
-               carefulputc(*s, stdout, '*');
+               fputc_careful(*s, stdout, '*');
 
        if (len < 0 || (size_t)len >= sizeof(final))
                putchar('\n');
index 20a2891f2e1b23e7642dbbcafece0471b6483c56..1bae9d652a3f1b781f0ac8e0ded05f8dfd334759 100644 (file)
@@ -284,7 +284,7 @@ static char *makemsg(char *fname, char **mvec, int mvecsz,
                                if (ch == '\t')
                                        cnt += (7 - (cnt % 8));
                                if (ch != '\n')
-                                       carefulputc(ch, fp, '^');
+                                       fputc_careful(ch, fp, '^');
                        }
                }
        }
index f5ca341089f2ff483feea87c86e60b70247c4415..146f4ba5e4c47fcd9a63c513eee8384e3cc318ea 100644 (file)
@@ -373,7 +373,7 @@ void wr_fputs(char *s)
 {
        char c;
 
-#define        PUTC(c) if (carefulputc(c, stdout, '^') == EOF) \
+#define        PUTC(c) if (fputc_careful(c, stdout, '^') == EOF) \
     err(EXIT_FAILURE, _("carefulputc failed"));
        while (*s) {
                c = *s++;