Commit e145d51b authored by Wayne Davison's avatar Wayne Davison

Make sure that we can't scan past the end of the format string.

parent dcbae654
......@@ -371,6 +371,8 @@ static void log_formatted(enum logcode code, char *format, char *op,
*n++ = *p++;
while (isdigit(*(uchar*)p) && n - fmt < (int)(sizeof fmt) - 8)
*n++ = *p++;
if (!*p)
break;
*n = '\0';
n = NULL;
......@@ -497,9 +499,6 @@ static void log_formatted(enum logcode code, char *format, char *op,
break;
}
/* Subtract the length of the escape from the string's size. */
total -= p - s;
/* "n" is the string to be inserted in place of this % code. */
if (!n)
continue;
......@@ -510,6 +509,9 @@ static void log_formatted(enum logcode code, char *format, char *op,
}
len = strlen(n);
/* Subtract the length of the escape from the string's size. */
total -= p - s;
if (len + total >= sizeof buf) {
rprintf(FERROR,
"buffer overflow expanding %%%c -- exiting\n",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment