]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/plugins/pppoe/common.c
pppoe: Print packet fields in hex if they contain non-printable characters
[ppp.git] / pppd / plugins / pppoe / common.c
index 8b0e636acb800ab923a6b6c6d2cb3053448189f2..9ddbcbd47f3202045c01141f9157f422840d77e8 100644 (file)
@@ -28,6 +28,7 @@ static char const RCSID[] =
 #include <errno.h>
 #include <stdlib.h>
 #include <syslog.h>    /* for LOG_DEBUG */
+#include <ctype.h>
 
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
@@ -303,6 +304,15 @@ void pppoe_printpkt(PPPoEPacket *packet,
            printer(arg, "unknown tag 0x%x", tag);
        }
        if (tlen) {
+           /* If it is supposed to be text, make sure it's all printing chars */
+           if (text) {
+               for (j = 0; j < tlen; ++j) {
+                   if (!isprint(packet->payload[i+j])) {
+                       text = 0;
+                       break;
+                   }
+               }
+           }
            if (text)
                printer(arg, " %.*s", tlen, &packet->payload[i]);
            else {