Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
storagedriver
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
2
Merge Requests
4
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1f336e7d
authored
Nov 17, 2014
by
Guba Sándor
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'max-files-size' into 'master'
Max files size fixes
#3
See merge request
!7
parents
2d0631fb
205e1a73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
disk.py
+16
-2
No files found.
disk.py
View file @
1f336e7d
...
...
@@ -19,11 +19,17 @@ re_qemu_img = re.compile(r'(file format: (?P<format>(qcow2|raw))|'
r'virtual size: \w+ \((?P<size>[0-9]+) bytes\)|'
r'backing file: \S+ \(actual path: (?P<base>\S+)\))$'
)
maximum_size
=
float
(
os
.
getenv
(
"DOWNLOAD_MAX_SIZE"
,
1024
*
1024
*
1024
*
10
))
class
AbortException
(
Exception
):
pass
class
FileTooBig
(
Exception
):
pass
class
Disk
(
object
):
''' Storage driver DISK object.
...
...
@@ -204,7 +210,9 @@ class Disk(object):
# undocumented zlib feature http://stackoverflow.com/a/2424549
elif
ext
==
'bz2'
:
decompressor
=
BZ2Decompressor
()
clen
=
max
(
int
(
r
.
headers
.
get
(
'content-length'
,
700000000
)),
1
)
clen
=
int
(
r
.
headers
.
get
(
'content-length'
,
maximum_size
))
if
clen
>
maximum_size
:
raise
FileTooBig
()
percent
=
0
try
:
with
open
(
disk_path
,
'wb'
)
as
f
:
...
...
@@ -213,6 +221,8 @@ class Disk(object):
chunk
=
decompressor
.
decompress
(
chunk
)
f
.
write
(
chunk
)
actsize
=
f
.
tell
()
if
actsize
>
maximum_size
:
raise
FileTooBig
()
new_percent
=
min
(
100
,
round
(
actsize
*
100.0
/
clen
))
if
new_percent
>
percent
:
percent
=
new_percent
...
...
@@ -234,6 +244,10 @@ class Disk(object):
os
.
unlink
(
disk_path
)
logger
.
info
(
"Download
%
s aborted
%
s removed."
,
url
,
disk_path
)
except
FileTooBig
:
os
.
unlink
(
disk_path
)
raise
Exception
(
"
%
s file is too big. Maximum size "
"is
%
s"
%
url
,
maximum_size
)
except
:
os
.
unlink
(
disk_path
)
logger
.
error
(
"Download
%
s failed,
%
s removed."
,
...
...
@@ -309,7 +323,7 @@ class Disk(object):
percent
=
0
diff_disk
=
Disk
.
get
(
self
.
dir
,
self
.
name
)
base_disk
=
Disk
.
get
(
self
.
dir
,
self
.
base_name
)
clen
=
m
ax
(
base_disk
.
actual_size
+
diff_disk
.
actual_size
,
clen
=
m
in
(
base_disk
.
actual_size
+
diff_disk
.
actual_size
,
diff_disk
.
size
)
output
=
new_disk
.
get_path
()
proc
=
subprocess
.
Popen
(
cmdline
)
...
...
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