Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e884be67
Commit
e884be67
authored
Oct 03, 2012
by
Jesus Cea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Closes #15897: zipimport.c doesn't check return value of fseek()
parent
31a9e83d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
7 deletions
+39
-7
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/zipimport.c
Modules/zipimport.c
+35
-7
No files found.
Misc/ACKS
View file @
e884be67
...
...
@@ -204,6 +204,7 @@ Christopher A. Craig
Jeremy Craven
Laura Creighton
Simon Cross
Felipe Cruz
Drew Csillag
Joaquin Cuenca Abela
John Cugini
...
...
Misc/NEWS
View file @
e884be67
...
...
@@ -38,6 +38,9 @@ Core and Builtins
- Issue #15368: An issue that caused bytecode generation to be
non-deterministic when using randomized hashing (-R) has been fixed.
- Issue #15897: zipimport.c doesn'
t
check
return
value
of
fseek
().
Patch
by
Felipe
Cruz
.
-
Issue
#
15033
:
Fix
the
exit
status
bug
when
modules
invoked
using
-
m
swith
,
return
the
proper
failure
return
value
(
1
).
Patch
contributed
by
Jeff
Knupp
.
...
...
Modules/zipimport.c
View file @
e884be67
...
...
@@ -709,7 +709,12 @@ read_directory(char *archive)
"'%.200s'"
,
archive
);
return
NULL
;
}
fseek
(
fp
,
-
22
,
SEEK_END
);
if
(
fseek
(
fp
,
-
22
,
SEEK_END
)
==
-
1
)
{
fclose
(
fp
);
PyErr_Format
(
ZipImportError
,
"can't read Zip file: %s"
,
archive
);
return
NULL
;
}
header_position
=
ftell
(
fp
);
if
(
fread
(
endof_central_dir
,
1
,
22
,
fp
)
!=
22
)
{
fclose
(
fp
);
...
...
@@ -743,11 +748,13 @@ read_directory(char *archive)
PyObject
*
t
;
int
err
;
fseek
(
fp
,
header_offset
,
0
);
/* Start of file header */
if
(
fseek
(
fp
,
header_offset
,
0
)
==
-
1
)
/* Start of file header */
goto
fseek_error
;
l
=
PyMarshal_ReadLongFromFile
(
fp
);
if
(
l
!=
0x02014B50
)
break
;
/* Bad: Central Dir File Header */
fseek
(
fp
,
header_offset
+
10
,
0
);
if
(
fseek
(
fp
,
header_offset
+
10
,
0
)
==
-
1
)
goto
fseek_error
;
compress
=
PyMarshal_ReadShortFromFile
(
fp
);
time
=
PyMarshal_ReadShortFromFile
(
fp
);
date
=
PyMarshal_ReadShortFromFile
(
fp
);
...
...
@@ -758,7 +765,8 @@ read_directory(char *archive)
header_size
=
46
+
name_size
+
PyMarshal_ReadShortFromFile
(
fp
)
+
PyMarshal_ReadShortFromFile
(
fp
);
fseek
(
fp
,
header_offset
+
42
,
0
);
if
(
fseek
(
fp
,
header_offset
+
42
,
0
)
==
-
1
)
goto
fseek_error
;
file_offset
=
PyMarshal_ReadLongFromFile
(
fp
)
+
arc_offset
;
if
(
name_size
>
MAXPATHLEN
)
name_size
=
MAXPATHLEN
;
...
...
@@ -790,6 +798,11 @@ read_directory(char *archive)
PySys_WriteStderr
(
"# zipimport: found %ld names in %s
\n
"
,
count
,
archive
);
return
files
;
fseek_error:
fclose
(
fp
);
Py_XDECREF
(
files
);
PyErr_Format
(
ZipImportError
,
"can't read Zip file: %s"
,
archive
);
return
NULL
;
error:
fclose
(
fp
);
Py_XDECREF
(
files
);
...
...
@@ -857,7 +870,12 @@ get_data(char *archive, PyObject *toc_entry)
}
/* Check to make sure the local file header is correct */
fseek
(
fp
,
file_offset
,
0
);
if
(
fseek
(
fp
,
file_offset
,
0
)
==
-
1
)
{
fclose
(
fp
);
PyErr_Format
(
ZipImportError
,
"can't read Zip file: %s"
,
archive
);
return
NULL
;
}
l
=
PyMarshal_ReadLongFromFile
(
fp
);
if
(
l
!=
0x04034B50
)
{
/* Bad: Local File Header */
...
...
@@ -867,7 +885,12 @@ get_data(char *archive, PyObject *toc_entry)
fclose
(
fp
);
return
NULL
;
}
fseek
(
fp
,
file_offset
+
26
,
0
);
if
(
fseek
(
fp
,
file_offset
+
26
,
0
)
==
-
1
)
{
fclose
(
fp
);
PyErr_Format
(
ZipImportError
,
"can't read Zip file: %s"
,
archive
);
return
NULL
;
}
l
=
30
+
PyMarshal_ReadShortFromFile
(
fp
)
+
PyMarshal_ReadShortFromFile
(
fp
);
/* local header size */
file_offset
+=
l
;
/* Start of file data */
...
...
@@ -881,8 +904,13 @@ get_data(char *archive, PyObject *toc_entry)
buf
=
PyString_AsString
(
raw_data
);
err
=
fseek
(
fp
,
file_offset
,
0
);
if
(
err
==
0
)
if
(
err
==
0
)
{
bytes_read
=
fread
(
buf
,
1
,
data_size
,
fp
);
}
else
{
fclose
(
fp
);
PyErr_Format
(
ZipImportError
,
"can't read Zip file: %s"
,
archive
);
return
NULL
;
}
fclose
(
fp
);
if
(
err
||
bytes_read
!=
data_size
)
{
PyErr_SetString
(
PyExc_IOError
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment