Commit 6ae3c752 authored by Jeremy Hylton's avatar Jeremy Hylton

Fix bug in description of FileStorage layout.

Simplify santiy checking of length fields in transaction metadata.
Replace the following test:
[1]    if ul > tl or dl > tl or el > tl or tl < (23+ul+dl+el):
with this one:
[2]    if tl < (23+ul+dl+el):

If any of the first three comparisons in [1] is true, then the final
test must also be true.  It's unlikely that any of the tests will be
true, so just do the final one.
parent 98d62acf
...@@ -109,6 +109,8 @@ ...@@ -109,6 +109,8 @@
# - user name # - user name
# #
# - description # - description
#
# - extension attributes
# #
# * A sequence of data records # * A sequence of data records
# #
...@@ -184,7 +186,7 @@ ...@@ -184,7 +186,7 @@
# may have a back pointer to a version record or to a non-version # may have a back pointer to a version record or to a non-version
# record. # record.
# #
__version__='$Revision: 1.65 $'[11:-2] __version__='$Revision: 1.66 $'[11:-2]
import struct, time, os, bpthread, string, base64, sys import struct, time, os, bpthread, string, base64, sys
from struct import pack, unpack from struct import pack, unpack
...@@ -400,7 +402,7 @@ class FileStorage(BaseStorage.BaseStorage, ...@@ -400,7 +402,7 @@ class FileStorage(BaseStorage.BaseStorage,
if stl != rstl: return 0 # inconsistent lengths if stl != rstl: return 0 # inconsistent lengths
if status == 'u': continue # undone trans, search back if status == 'u': continue # undone trans, search back
if status not in ' p': return 0 if status not in ' p': return 0
if ul > tl or dl > tl or el > tl or tl < (23+ul+dl+el): return 0 if tl < (23+ul+dl+el): return 0
tend=pos+tl tend=pos+tl
opos=pos+(23+ul+dl+el) opos=pos+(23+ul+dl+el)
if opos==tend: continue # empty trans if opos==tend: continue # empty trans
...@@ -1808,7 +1810,7 @@ def read_index(file, name, index, vindex, tindex, stop='\377'*8, ...@@ -1808,7 +1810,7 @@ def read_index(file, name, index, vindex, tindex, stop='\377'*8,
if status not in ' up': if status not in ' up':
warn('%s has invalid status, %s, at %s', name, status, pos) warn('%s has invalid status, %s, at %s', name, status, pos)
if ul > tl or dl > tl or el > tl or tl < (23+ul+dl+el): if tl < (23+ul+dl+el):
# We're in trouble. Find out if this is bad data in the # We're in trouble. Find out if this is bad data in the
# middle of the file, or just a turd that Win 9x dropped # middle of the file, or just a turd that Win 9x dropped
# at the end when the system crashed. # at the end when the system crashed.
...@@ -2025,7 +2027,7 @@ class FileIterator(Iterator): ...@@ -2025,7 +2027,7 @@ class FileIterator(Iterator):
if status not in ' up': if status not in ' up':
warn('%s has invalid status, %s, at %s', name, status, pos) warn('%s has invalid status, %s, at %s', name, status, pos)
if ul > tl or dl > tl or el > tl or tl < (23+ul+dl+el): if tl < (23+ul+dl+el):
# We're in trouble. Find out if this is bad data in # We're in trouble. Find out if this is bad data in
# the middle of the file, or just a turd that Win 9x # the middle of the file, or just a turd that Win 9x
# dropped at the end when the system crashed. Skip to # dropped at the end when the system crashed. Skip to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment