summaryrefslogtreecommitdiff
path: root/net/mopd/files/patch-process.c
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-08-29 00:49:08 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-08-29 00:49:08 +0000
commit8f7ba5aeb3f7722732f6475b6688ee0e244d863f (patch)
tree318109f33692834b0523b87990ac022903db17bf /net/mopd/files/patch-process.c
parentLook for the correct shared version of Xaw3d. (diff)
String paranoia and security fixes from OpenBSD: prevent a remote buffer
overflow and remote syslog() exploits. Obtained from: OpenBSD
Diffstat (limited to '')
-rw-r--r--net/mopd/files/patch-process.c81
1 files changed, 81 insertions, 0 deletions
diff --git a/net/mopd/files/patch-process.c b/net/mopd/files/patch-process.c
new file mode 100644
index 000000000000..c173382e7ea9
--- /dev/null
+++ b/net/mopd/files/patch-process.c
@@ -0,0 +1,81 @@
+--- mopd/process.c 1996/09/21 19:12:26 1.2
++++ mopd/process.c 2000/07/04 23:46:23 1.8
+@@ -267,7 +267,7 @@
+ dllist[slot].a_lseek = 0;
+
+ dllist[slot].count = 0;
+- if (dllist[slot].dl_bsz >= 1492)
++ if ((dllist[slot].dl_bsz >= 1492) || (dllist[slot].dl_bsz == 0))
+ dllist[slot].dl_bsz = 1492;
+ if (dllist[slot].dl_bsz == 1030) /* VS/uVAX 2000 needs this */
+ dllist[slot].dl_bsz = 1000;
+@@ -350,10 +350,10 @@
+ close(dllist[slot].ldfd);
+ dllist[slot].ldfd = 0;
+ dllist[slot].status = DL_STATUS_FREE;
+- sprintf(line,
++ snprintf(line,sizeof(line),
+ "%x:%x:%x:%x:%x:%x Load completed",
+ dst[0],dst[1],dst[2],dst[3],dst[4],dst[5]);
+- syslog(LOG_INFO, line);
++ syslog(LOG_INFO, "%s", line);
+ return;
+ }
+
+@@ -438,7 +438,7 @@
+ {
+ u_char tmpc;
+ u_short moplen;
+- u_char pfile[17], mopcode;
++ u_char pfile[129], mopcode;
+ char filename[FILENAME_MAX];
+ char line[100];
+ int i,nfd,iindex;
+@@ -487,6 +487,8 @@
+ rpr_pgty = mopGetChar(pkt,index); /* Program Type */
+
+ tmpc = mopGetChar(pkt,index); /* Software ID Len */
++ if (tmpc > sizeof(pfile) - 1)
++ return;
+ for (i = 0; i < tmpc; i++) {
+ pfile[i] = mopGetChar(pkt,index);
+ pfile[i+1] = '\0';
+@@ -513,31 +515,32 @@
+ bcopy((char *)src, (char *)(dl_rpr->eaddr), 6);
+ mopProcessInfo(pkt,index,moplen,dl_rpr,trans);
+
+- sprintf(filename,"%s/%s.SYS", MOP_FILE_PATH, pfile);
++ snprintf(filename,sizeof(filename),
++ "%s/%s.SYS", MOP_FILE_PATH, pfile);
+ if ((mopCmpEAddr(dst,dl_mcst) == 0)) {
+ if ((nfd = open(filename, O_RDONLY, 0)) != -1) {
+ close(nfd);
+ mopSendASV(src, ii->eaddr, ii, trans);
+- sprintf(line,
++ snprintf(line,sizeof(line),
+ "%x:%x:%x:%x:%x:%x (%d) Do you have %s? (Yes)",
+ src[0],src[1],src[2],
+ src[3],src[4],src[5],trans,pfile);
+ } else {
+- sprintf(line,
++ snprintf(line,sizeof(line),
+ "%x:%x:%x:%x:%x:%x (%d) Do you have %s? (No)",
+ src[0],src[1],src[2],
+ src[3],src[4],src[5],trans,pfile);
+ }
+- syslog(LOG_INFO, line);
++ syslog(LOG_INFO, "%s", line);
+ } else {
+ if ((mopCmpEAddr(dst,ii->eaddr) == 0)) {
+ dl_rpr->ldfd = open(filename, O_RDONLY, 0);
+ mopStartLoad(src, ii->eaddr, dl_rpr, trans);
+- sprintf(line,
++ snprintf(line,sizeof(line),
+ "%x:%x:%x:%x:%x:%x Send me %s",
+ src[0],src[1],src[2],
+ src[3],src[4],src[5],pfile);
+- syslog(LOG_INFO, line);
++ syslog(LOG_INFO, "%s", line);
+ }
+ }
+