summaryrefslogtreecommitdiff
path: root/mail/popper
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1998-06-27 21:47:34 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1998-06-27 21:47:34 +0000
commitd5ff240d341a9c8e95d2c7e823b1f6b2dc160a14 (patch)
treef6330c7ec944d9e935d2de79b7f5798f0fb21a44 /mail/popper
parentAdd -3 to len as room for \n\r\0 (diff)
Close a missing overflow with strcat() in my original change
and add an extra overflow fix to pop_log.c. This is just a place-holder until Peter comes along with a more comprehensive set of patches.
Notes
Notes: svn path=/head/; revision=11566
Diffstat (limited to 'mail/popper')
-rw-r--r--mail/popper/files/patch-ag36
1 files changed, 32 insertions, 4 deletions
diff --git a/mail/popper/files/patch-ag b/mail/popper/files/patch-ag
index 662330daffb8..9ed0df9ccc06 100644
--- a/mail/popper/files/patch-ag
+++ b/mail/popper/files/patch-ag
@@ -1,5 +1,5 @@
--- pop_msg.c.orig Sat Jun 27 03:09:47 1998
-+++ pop_msg.c Sat Jun 27 03:14:27 1998
++++ pop_msg.c Sat Jun 27 14:35:49 1998
@@ -27,6 +27,7 @@
{
POP * p;
@@ -28,14 +28,42 @@
if (format)
#ifdef HAVE_VPRINTF
- vsprintf(mp,format,ap);
-+ vsnprintf(mp,len-3,format,ap);
++ vsnprintf(mp,len,format,ap);
#else
# ifdef PYRAMID
- (void)sprintf(mp,format, arg1, arg2, arg3, arg4, arg5, arg6);
-+ (void)snprintf(mp,len-3,format, arg1, arg2, arg3, arg4, arg5, arg6);
++ (void)snprintf(mp,len,format, arg1, arg2, arg3, arg4, arg5, arg6);
# else
- (void)sprintf(mp,format,((int *)ap)[0],((int *)ap)[1],((int *)ap)[2],
-+ (void)snprintf(mp,len-3,format,((int *)ap)[0],((int *)ap)[1],((int *)ap)[2],
++ (void)snprintf(mp,len,format,((int *)ap)[0],((int *)ap)[1],((int *)ap)[2],
((int *)ap)[3],((int *)ap)[4]);
# endif
#endif
+@@ -87,7 +90,8 @@
+ (p->user ? p->user : "(null)"), p->client, message);
+
+ /* Append the <CR><LF> */
+- (void)strcat(message, "\r\n");
++ len -= strlen(message);
++ (void)strncat(message, len, "\r\n");
+
+ /* Send the message to the client */
+ (void)fputs(message,p->output);
+--- pop_log.c.orig Wed Nov 19 13:20:38 1997
++++ pop_log.c Sat Jun 27 14:46:17 1998
+@@ -47,12 +47,12 @@
+ #endif
+
+ #ifdef HAVE_VPRINTF
+- vsprintf(msgbuf,format,ap);
++ vsnprintf(msgbuf,sizeof msgbuf,format,ap);
+ #else
+ # ifdef PYRAMID
+- (void)sprintf(msgbuf,format, arg1, arg2, arg3, arg4, arg5, arg6);
++ (void)snprintf(msgbuf,sizeof msgbuf,format, arg1, arg2, arg3, arg4, arg5, arg6);
+ # else
+- (void)sprintf (msgbuf,format,((int *)ap)[0],((int *)ap)[1],((int *)ap)[2],
++ (void)snprintf (msgbuf,sizeof msgbuf,format,((int *)ap)[0],((int *)ap)[1],((int *)ap)[2],
+ ((int *)ap)[3],((int *)ap)[4],((int *)ap)[5]);
+ # endif
+ va_end(ap);