summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-01-31 00:43:59 +0000
committerZac Medico <zmedico@gentoo.org>2010-01-31 00:43:59 +0000
commit451c7bab87dbe67f26906126b2336299e88a6403 (patch)
treefe3762e1851a19f5ce66d6da9773c61040f1adc5
parentb80eb88971a1c775c3c227c8a593a667ea6041bc (diff)
downloadportage-451c7bab87dbe67f26906126b2336299e88a6403.tar.gz
portage-451c7bab87dbe67f26906126b2336299e88a6403.tar.bz2
portage-451c7bab87dbe67f26906126b2336299e88a6403.zip
Bug #302764 - Inside __iter__, only recurse 1 deep, in order to avoid
iteration over entries from another nested cache instance. This can happen if the user nests an overlay inside /usr/portage/local. Thanks to Vlastimil Babka <caster@g.o> for this patch. svn path=/main/trunk/; revision=15295
-rw-r--r--pym/portage/cache/flat_hash.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/pym/portage/cache/flat_hash.py b/pym/portage/cache/flat_hash.py
index 934115805..f882c2475 100644
--- a/pym/portage/cache/flat_hash.py
+++ b/pym/portage/cache/flat_hash.py
@@ -120,11 +120,12 @@ class database(fs_template.FsBased):
def __iter__(self):
"""generator for walking the dir struct"""
- dirs = [self.location]
+ dirs = [(0, self.location)]
len_base = len(self.location)
while len(dirs):
try:
- dir_list = os.listdir(dirs[0])
+ depth = dirs[0][0]
+ dir_list = os.listdir(dirs[0][1])
except OSError as e:
if e.errno != errno.ENOENT:
raise
@@ -134,10 +135,15 @@ class database(fs_template.FsBased):
for l in dir_list:
if l.endswith(".cpickle"):
continue
- p = os.path.join(dirs[0],l)
+ p = os.path.join(dirs[0][1], l)
st = os.lstat(p)
if stat.S_ISDIR(st.st_mode):
- dirs.append(p)
+ # Only recurse 1 deep, in order to avoid iteration over
+ # entries from another nested cache instance. This can
+ # happen if the user nests an overlay inside
+ # /usr/portage/local as in bug #302764.
+ if depth < 1:
+ dirs.append((depth+1, p))
continue
yield p[len_base+1:]
dirs.pop(0)