summaryrefslogtreecommitdiff
path: root/django/utils/_os.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@rd.io>2012-09-07 16:49:22 -0400
committerAlex Gaynor <alex.gaynor@rd.io>2012-09-07 16:49:22 -0400
commitb865009d414a0f6fd0c0f5ad7434b2c13eb761c7 (patch)
treec35dc5b66a3c42311037a28abfa7497071465fc6 /django/utils/_os.py
parent3a10bcc91726859f9f0f817b39586712c2d37c2b (diff)
Fixed #12397 -- allow safe_join to work with the root file system path, which means you can have your root template or file upload path at this location. You almost certainly don't want to do this, except in *very* limited sandboxed situations.
Diffstat (limited to 'django/utils/_os.py')
-rw-r--r--django/utils/_os.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/django/utils/_os.py b/django/utils/_os.py
index 9eb5e5e8ea..1ea12aed8a 100644
--- a/django/utils/_os.py
+++ b/django/utils/_os.py
@@ -1,6 +1,6 @@
import os
import stat
-from os.path import join, normcase, normpath, abspath, isabs, sep
+from os.path import join, normcase, normpath, abspath, isabs, sep, dirname
from django.utils.encoding import force_text
from django.utils import six
@@ -41,13 +41,16 @@ def safe_join(base, *paths):
paths = [force_text(p) for p in paths]
final_path = abspathu(join(base, *paths))
base_path = abspathu(base)
- base_path_len = len(base_path)
# Ensure final_path starts with base_path (using normcase to ensure we
- # don't false-negative on case insensitive operating systems like Windows)
- # and that the next character after the final path is os.sep (or nothing,
- # in which case final_path must be equal to base_path).
- if not normcase(final_path).startswith(normcase(base_path)) \
- or final_path[base_path_len:base_path_len+1] not in ('', sep):
+ # don't false-negative on case insensitive operating systems like Windows),
+ # further, one of the following conditions must be true:
+ # a) The next character is the path separator (to prevent conditions like
+ # safe_join("/dir", "/../d"))
+ # b) The final path must be the same as the base path.
+ # c) The base path must be the most root path (meaning either "/" or "C:\\")
+ if (not normcase(final_path).startswith(normcase(base_path + sep)) and
+ normcase(final_path) != normcase(base_path) and
+ dirname(normcase(base_path)) != normcase(base_path)):
raise ValueError('The joined path (%s) is located outside of the base '
'path component (%s)' % (final_path, base_path))
return final_path