Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 672370 Details for
Bug 891577
CVE-2012-6089 CVE-2012-6090 pl: buffer overflows in path canonisation and expansion of file names with long paths
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Upstream fix for CVE-2012-6089
0001-FIXED-Possible-buffer-overrun-in-patch-canonisation-.patch (text/plain), 2.47 KB, created by
Petr Pisar
on 2013-01-04 11:32:21 UTC
(
hide
)
Description:
Upstream fix for CVE-2012-6089
Filename:
MIME Type:
Creator:
Petr Pisar
Created:
2013-01-04 11:32:21 UTC
Size:
2.47 KB
patch
obsolete
>From a9a6fc8a2a9cf3b9154b490a4b1ffaa8be4d723c Mon Sep 17 00:00:00 2001 >From: Jan Wielemaker <J.Wielemaker@cs.vu.nl> >Date: Sun, 16 Dec 2012 18:13:17 +0100 >Subject: [PATCH] FIXED: Possible buffer overrun in patch canonisation code. > >Pushes pointers on an automatic array without checking for overflow. >Can be used for DoS attacks. Will be extremely hard to make it execute >arbitrary code. >--- > src/os/pl-buffer.h | 2 ++ > src/os/pl-os.c | 19 +++++++++++-------- > 2 files changed, 13 insertions(+), 8 deletions(-) > >diff --git a/src/os/pl-buffer.h b/src/os/pl-buffer.h >index 1e6262a..ba7e63f 100644 >--- a/src/os/pl-buffer.h >+++ b/src/os/pl-buffer.h >@@ -101,6 +101,8 @@ f__allocFromBuffer(Buffer b, size_t bytes) > sizeof((b)->static_buffer)) > #define emptyBuffer(b) ((b)->top = (b)->base) > #define isEmptyBuffer(b) ((b)->top == (b)->base) >+#define popBuffer(b,type) \ >+ ((b)->top -= sizeof(type), *(type*)(b)->top) > > #define discardBuffer(b) \ > do \ >diff --git a/src/os/pl-os.c b/src/os/pl-os.c >index 54affbf..c1f4c77 100644 >--- a/src/os/pl-os.c >+++ b/src/os/pl-os.c >@@ -1057,8 +1057,7 @@ cleanupExpand(void) > char * > canoniseFileName(char *path) > { char *out = path, *in = path, *start = path; >- char *osave[100]; >- int osavep = 0; >+ tmp_buffer saveb; > > #ifdef O_HASDRIVES /* C: */ > if ( in[1] == ':' && isLetter(in[0]) ) >@@ -1097,7 +1096,8 @@ canoniseFileName(char *path) > in += 2; > if ( in[0] == '/' ) > *out++ = '/'; >- osave[osavep++] = out; >+ initBuffer(&saveb); >+ addBuffer(&saveb, out, char*); > > while(*in) > { if (*in == '/') >@@ -1113,15 +1113,15 @@ canoniseFileName(char *path) > } > if ( in[2] == EOS ) /* delete trailing /. */ > { *out = EOS; >- return path; >+ goto out; > } > if ( in[2] == '.' && (in[3] == '/' || in[3] == EOS) ) >- { if ( osavep > 0 ) /* delete /foo/../ */ >- { out = osave[--osavep]; >+ { if ( !isEmptyBuffer(&saveb) ) /* delete /foo/../ */ >+ { out = popBuffer(&saveb, char*); > in += 3; > if ( in[0] == EOS && out > start+1 ) > { out[-1] = EOS; /* delete trailing / */ >- return path; >+ goto out; > } > goto again; > } else if ( start[0] == '/' && out == start+1 ) >@@ -1135,12 +1135,15 @@ canoniseFileName(char *path) > in++; > if ( out > path && out[-1] != '/' ) > *out++ = '/'; >- osave[osavep++] = out; >+ addBuffer(&saveb, out, char*); > } else > *out++ = *in++; > } > *out++ = *in++; > >+out: >+ discardBuffer(&saveb); >+ > return path; > } > >-- >1.7.11.7 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 891577
: 672370 |
672371
|
672401
|
672402