svn commit: r286350 - in releng/10.2: sbin/routed usr.bin/patch
Xin LI
delphij at FreeBSD.org
Wed Aug 5 22:05:14 UTC 2015
Author: delphij
Date: Wed Aug 5 22:05:12 2015
New Revision: 286350
URL: https://svnweb.freebsd.org/changeset/base/286350
Log:
Fix patch(1) shell injection vulnerability via ed(1). [SA-15:18]
Fix routed remote denial of service vulnerability. [SA-15:19]
Approved by: re (so blanket)
Modified:
releng/10.2/sbin/routed/input.c
releng/10.2/usr.bin/patch/pathnames.h
releng/10.2/usr.bin/patch/pch.c
Modified: releng/10.2/sbin/routed/input.c
==============================================================================
--- releng/10.2/sbin/routed/input.c Wed Aug 5 22:05:07 2015 (r286349)
+++ releng/10.2/sbin/routed/input.c Wed Aug 5 22:05:12 2015 (r286350)
@@ -160,6 +160,12 @@ input(struct sockaddr_in *from, /* rece
trace_rip("Recv", "from", from, sifp, rip, cc);
+ if (sifp == 0) {
+ trace_pkt(" discard a request from an indirect router"
+ " (possibly an attack)");
+ return;
+ }
+
if (rip->rip_vers == 0) {
msglim(&bad_router, FROM_NADDR,
"RIP version 0, cmd %d, packet received from %s",
Modified: releng/10.2/usr.bin/patch/pathnames.h
==============================================================================
--- releng/10.2/usr.bin/patch/pathnames.h Wed Aug 5 22:05:07 2015 (r286349)
+++ releng/10.2/usr.bin/patch/pathnames.h Wed Aug 5 22:05:12 2015 (r286350)
@@ -9,4 +9,4 @@
#include <paths.h>
-#define _PATH_ED "/bin/ed"
+#define _PATH_RED "/bin/red"
Modified: releng/10.2/usr.bin/patch/pch.c
==============================================================================
--- releng/10.2/usr.bin/patch/pch.c Wed Aug 5 22:05:07 2015 (r286349)
+++ releng/10.2/usr.bin/patch/pch.c Wed Aug 5 22:05:12 2015 (r286350)
@@ -1,4 +1,3 @@
-
/*-
* Copyright 1986, Larry Wall
*
@@ -1409,13 +1408,14 @@ do_ed_script(void)
char *t;
off_t beginning_of_this_line;
FILE *pipefp = NULL;
+ int continuation;
if (!skip_rest_of_patch) {
if (copy_file(filearg[0], TMPOUTNAME) < 0) {
unlink(TMPOUTNAME);
fatal("can't create temp file %s", TMPOUTNAME);
}
- snprintf(buf, buf_size, "%s%s%s", _PATH_ED,
+ snprintf(buf, buf_size, "%s%s%s", _PATH_RED,
verbose ? " " : " -s ", TMPOUTNAME);
pipefp = popen(buf, "w");
}
@@ -1433,7 +1433,19 @@ do_ed_script(void)
(*t == 'a' || *t == 'c' || *t == 'd' || *t == 'i' || *t == 's')) {
if (pipefp != NULL)
fputs(buf, pipefp);
- if (*t != 'd') {
+ if (*t == 's') {
+ for (;;) {
+ continuation = 0;
+ t = strchr(buf, '\0') - 1;
+ while (--t >= buf && *t == '\\')
+ continuation = !continuation;
+ if (!continuation ||
+ pgets(true) == 0)
+ break;
+ if (pipefp != NULL)
+ fputs(buf, pipefp);
+ }
+ } else if (*t != 'd') {
while (pgets(true)) {
p_input_line++;
if (pipefp != NULL)
More information about the svn-src-all
mailing list