|
@@ -3,10 +3,10 @@
|
|
|
#include <pty.h>
|
|
|
#include <stdio.h>
|
|
|
#include <string.h>
|
|
|
-#include <termios.h>
|
|
|
-#include <unistd.h>
|
|
|
#include <sys/select.h>
|
|
|
#include <sys/wait.h>
|
|
|
+#include <termios.h>
|
|
|
+#include <unistd.h>
|
|
|
|
|
|
// #include <signal.h> // handle Ctrl-C/SIGINT
|
|
|
|
|
@@ -78,7 +78,6 @@ struct console_details console;
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
-
|
|
|
// END LOGGING
|
|
|
|
|
|
#include "lastseen.h"
|
|
@@ -148,6 +147,7 @@ const char *random_phrase(const char *words, int len, int last_seen) {
|
|
|
void harry_idle_event(int fd) {
|
|
|
// Make something happen
|
|
|
char buffer[100];
|
|
|
+ int slen;
|
|
|
int r;
|
|
|
// This is no where near finished, BUT!
|
|
|
const char *phrases[] = {"Hahaha", "Snicker, snicker", "Boo!",
|
|
@@ -176,7 +176,12 @@ void harry_idle_event(int fd) {
|
|
|
} // If it's 0 let's make it 1. // color = (random() % 15) + 1
|
|
|
*/
|
|
|
|
|
|
- sprintf(buffer, "^S2^C%02d%s^P2^CR^D%02d", color, cp, (int)strlen(cp));
|
|
|
+ slen = snprintf(buffer, sizeof(buffer), "^S2^C%02d%s^P2^CR^D%02d", color, cp,
|
|
|
+ (int)strlen(cp));
|
|
|
+ if (slen >= sizeof(buffer)) {
|
|
|
+ ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(buffer));
|
|
|
+ buffer[0] = 0;
|
|
|
+ }
|
|
|
ZF_LOGD("harry_event: render(%d, \"%s\")", fd, buffer);
|
|
|
render(fd, buffer, strlen(buffer));
|
|
|
}
|
|
@@ -544,6 +549,7 @@ int mangle(int fd, const char *buffer, int len) {
|
|
|
|
|
|
if (random_activate(3)) {
|
|
|
char display[100] = "";
|
|
|
+ int slen;
|
|
|
int needs_cls = 0;
|
|
|
|
|
|
struct file_need {
|
|
@@ -566,8 +572,14 @@ int mangle(int fd, const char *buffer, int len) {
|
|
|
x = randint(50) + 1;
|
|
|
y = randint(12) + 1;
|
|
|
char fgoto[10];
|
|
|
+
|
|
|
if (possibles[r].rand_pos) {
|
|
|
- sprintf(fgoto, "^f%02d%02d", x, y);
|
|
|
+ int slen;
|
|
|
+ slen = snprintf(fgoto, sizeof(fgoto), "^f%02d%02d", x, y);
|
|
|
+ if (slen >= sizeof(fgoto)) {
|
|
|
+ ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(fgoto));
|
|
|
+ fgoto[0] = 0;
|
|
|
+ }
|
|
|
} else {
|
|
|
strcpy(fgoto, "^F");
|
|
|
}
|
|
@@ -583,9 +595,13 @@ int mangle(int fd, const char *buffer, int len) {
|
|
|
// I tried a ^P2 before doing this .. but I'd rather have the picture up
|
|
|
// right away I think.
|
|
|
|
|
|
- sprintf(display, "%s%s%s.^P3%s", needs_cls ? "\x1b[2J" : "", fgoto,
|
|
|
- possibles[r].filename, restore_color);
|
|
|
-
|
|
|
+ slen = snprintf(display, sizeof(display), "%s%s%s.^P3%s",
|
|
|
+ needs_cls ? "\x1b[2J" : "", fgoto,
|
|
|
+ possibles[r].filename, restore_color);
|
|
|
+ if (slen >= sizeof(display)) {
|
|
|
+ ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(display));
|
|
|
+ display[0] = 0;
|
|
|
+ }
|
|
|
ZF_LOGI("mangle(ANSI_CLS): %d file inserted %s", r, repr(display));
|
|
|
|
|
|
// Move the buffer so there's room for the display string.
|
|
@@ -617,14 +633,20 @@ int mangle(int fd, const char *buffer, int len) {
|
|
|
if (random_activate(4)) {
|
|
|
int r;
|
|
|
char display[100] = "";
|
|
|
- /*
|
|
|
+ int slen;
|
|
|
+
|
|
|
+ /*
|
|
|
Interesting note here:
|
|
|
"Anyone there" qualifies as a valid WORDS regex match.
|
|
|
It is possible that it can get mangled/wrangled!
|
|
|
*/
|
|
|
- const char *phrasing[] = {"^R1Haha^P1ha^P1ha", "Poof!", "Got U",
|
|
|
- "Anyone there?", "^R1Knock, ^P1Knock",
|
|
|
- "^G0101^C07^S9Segmentation fault (core dumped)^P2"};
|
|
|
+ const char *phrasing[] = {
|
|
|
+ "^R1Haha^P1ha^P1ha",
|
|
|
+ "Poof!",
|
|
|
+ "Got U",
|
|
|
+ "Anyone there?",
|
|
|
+ "^R1Knock, ^P1Knock",
|
|
|
+ "^G0101^C07^S9Segmentation fault (core dumped)^P2"};
|
|
|
static LastSeen last_phrasing(2);
|
|
|
|
|
|
ZF_LOGI("mangle(ANSI_CLS)");
|
|
@@ -637,7 +659,8 @@ int mangle(int fd, const char *buffer, int len) {
|
|
|
// Add in random text, plus color!
|
|
|
do {
|
|
|
r = random() % ((sizeof(phrasing) / sizeof(char *)) - 1);
|
|
|
- // Does this drop the last element in phrasing? (Seems like it takes awhile to get Seg Fault spoof, might be why)
|
|
|
+ // Does this drop the last element in phrasing? (Seems like it takes
|
|
|
+ // awhile to get Seg Fault spoof, might be why)
|
|
|
} while (last_phrasing.seen_before(r));
|
|
|
|
|
|
int color = random() % 15 + 1;
|
|
@@ -658,13 +681,20 @@ int mangle(int fd, const char *buffer, int len) {
|
|
|
HOME, CLS, HOME, ... Not sure what others do there. We'll see.
|
|
|
*/
|
|
|
|
|
|
- sprintf(display, "^G%02d%02d^S3^C%02d^P1%s^S0^R0%s^P1^G0101", x, y,
|
|
|
- color, phrasing[r], restore_color);
|
|
|
+ slen = snprintf(display, sizeof(display),
|
|
|
+ "^G%02d%02d^S3^C%02d^P1%s^S0^R0%s^P1^G0101", x, y,
|
|
|
+ color, phrasing[r], restore_color);
|
|
|
+ if (slen >= sizeof(display)) {
|
|
|
+ ZF_LOGE("snprintf %d > size %d", slen, (int)sizeof(display));
|
|
|
+ display[0] = 0;
|
|
|
+ }
|
|
|
|
|
|
// sprintf(display, "^P1^S3^C%02d%s^S0^R0%s^P1", color, phrasing[r],
|
|
|
// restore_color);
|
|
|
- // Added debug statement so we can identify what was sent... color, number picked and what that is
|
|
|
- ZF_LOGD("mangle(ANSI_CLS): Inserted color=%02d r=%d phrase='%s'", color, r, phrasing[r]);
|
|
|
+ // Added debug statement so we can identify what was sent... color,
|
|
|
+ // number picked and what that is
|
|
|
+ ZF_LOGD("mangle(ANSI_CLS): Inserted color=%02d r=%d phrase='%s'",
|
|
|
+ color, r, phrasing[r]);
|
|
|
ZF_LOGI_MEM(play, len, "mangle(ANSI_CLS) :");
|
|
|
|
|
|
// Move the buffer so there's room for the display string.
|
|
@@ -738,7 +768,7 @@ int mangle(int fd, const char *buffer, int len) {
|
|
|
I'd want mangle and wrangle to work.
|
|
|
|
|
|
The Message menu -- doesn't hardly get mangled at all (at least on
|
|
|
- my test site). Because all of the color changes break up the
|
|
|
+ my test site). Because all of the color changes break up the
|
|
|
words in the menu.
|
|
|
*/
|
|
|
x = rx_match(&WORDS, work);
|
|
@@ -809,7 +839,7 @@ int harry_happens(time_t *last_event, int wakeup) {
|
|
|
|
|
|
/*
|
|
|
|
|
|
-This is done. :D My buffering system works with stack'em.
|
|
|
+This is done. :D My buffering system works with stack'em.
|
|
|
|
|
|
TO FIX: Stop using c strings, must use char * buffer + int length.
|
|
|
MAY CONTAIN NULL VALUES.
|