Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
ee2bcdec
Commit
ee2bcdec
authored
10 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Limit the size of uploads
parent
beaf50f5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
synapse/config/homeserver.py
+2
-1
2 additions, 1 deletion
synapse/config/homeserver.py
synapse/config/repository.py
+39
-0
39 additions, 0 deletions
synapse/config/repository.py
synapse/http/content_repository.py
+14
-0
14 additions, 0 deletions
synapse/http/content_repository.py
with
55 additions
and
1 deletion
synapse/config/homeserver.py
+
2
−
1
View file @
ee2bcdec
...
@@ -18,9 +18,10 @@ from .server import ServerConfig
...
@@ -18,9 +18,10 @@ from .server import ServerConfig
from
.logger
import
LoggingConfig
from
.logger
import
LoggingConfig
from
.database
import
DatabaseConfig
from
.database
import
DatabaseConfig
from
.ratelimiting
import
RatelimitConfig
from
.ratelimiting
import
RatelimitConfig
from
.repository
import
ContentRepositoryConfig
class
HomeServerConfig
(
TlsConfig
,
ServerConfig
,
DatabaseConfig
,
LoggingConfig
,
class
HomeServerConfig
(
TlsConfig
,
ServerConfig
,
DatabaseConfig
,
LoggingConfig
,
RatelimitConfig
):
RatelimitConfig
,
ContentRepositoryConfig
):
pass
pass
if
__name__
==
'
__main__
'
:
if
__name__
==
'
__main__
'
:
...
...
This diff is collapsed.
Click to expand it.
synapse/config/repository.py
0 → 100644
+
39
−
0
View file @
ee2bcdec
# -*- coding: utf-8 -*-
# Copyright 2014 matrix.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
._base
import
Config
import
os
class
ContentRepositoryConfig
(
Config
):
def
__init__
(
self
,
args
):
super
(
ContentRepositoryConfig
,
self
).
__init__
(
args
)
self
.
max_upload_size
=
self
.
parse_size
(
args
.
max_upload_size
)
def
parse_size
(
self
,
string
):
sizes
=
{
"
K
"
:
1024
,
"
M
"
:
1024
*
1024
}
size
=
1
suffix
=
string
[
-
1
]
if
suffix
in
sizes
:
string
=
string
[:
-
1
]
size
=
sizes
[
suffix
]
return
int
(
string
)
*
size
@classmethod
def
add_arguments
(
cls
,
parser
):
super
(
ContentRepositoryConfig
,
cls
).
add_arguments
(
parser
)
db_group
=
parser
.
add_argument_group
(
"
content_repository
"
)
db_group
.
add_argument
(
"
--max-upload-size
"
,
default
=
"
1M
"
)
This diff is collapsed.
Click to expand it.
synapse/http/content_repository.py
+
14
−
0
View file @
ee2bcdec
...
@@ -56,6 +56,7 @@ class ContentRepoResource(resource.Resource):
...
@@ -56,6 +56,7 @@ class ContentRepoResource(resource.Resource):
self
.
directory
=
directory
self
.
directory
=
directory
self
.
auth
=
auth
self
.
auth
=
auth
self
.
external_addr
=
external_addr
.
rstrip
(
'
/
'
)
self
.
external_addr
=
external_addr
.
rstrip
(
'
/
'
)
self
.
max_upload_size
=
hs
.
config
.
max_upload_size
if
not
os
.
path
.
isdir
(
self
.
directory
):
if
not
os
.
path
.
isdir
(
self
.
directory
):
os
.
mkdir
(
self
.
directory
)
os
.
mkdir
(
self
.
directory
)
...
@@ -155,6 +156,19 @@ class ContentRepoResource(resource.Resource):
...
@@ -155,6 +156,19 @@ class ContentRepoResource(resource.Resource):
@defer.inlineCallbacks
@defer.inlineCallbacks
def
_async_render
(
self
,
request
):
def
_async_render
(
self
,
request
):
try
:
try
:
# TODO: The checks here are a bit late. The content will have
# already been uploaded to a tmp file at this point
content_length
=
request
.
getHeader
(
"
Content-Length
"
)
if
content_length
is
None
:
raise
SynapseError
(
msg
=
"
Request must specify a Content-Length
"
,
code
=
400
)
if
int
(
content_length
)
>
self
.
max_upload_size
:
raise
SynapseError
(
msg
=
"
Upload request body is too large
"
,
code
=
413
,
)
fname
=
yield
self
.
map_request_to_name
(
request
)
fname
=
yield
self
.
map_request_to_name
(
request
)
# TODO I have a suspcious feeling this is just going to block
# TODO I have a suspcious feeling this is just going to block
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment