mirror of
https://github.com/eledio-devices/thirdparty-littlefs.git
synced 2025-11-01 16:14:13 +01:00
Compare commits
1 Commits
lfs-util-i
...
rev-sum-st
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b24ddac95e |
9
.gitignore
vendored
9
.gitignore
vendored
@@ -1,9 +0,0 @@
|
|||||||
# Compilation output
|
|
||||||
*.o
|
|
||||||
*.d
|
|
||||||
*.a
|
|
||||||
|
|
||||||
# Testing things
|
|
||||||
blocks/
|
|
||||||
lfs
|
|
||||||
test.c
|
|
||||||
337
.travis.yml
337
.travis.yml
@@ -1,321 +1,48 @@
|
|||||||
# Environment variables
|
|
||||||
env:
|
|
||||||
global:
|
|
||||||
- CFLAGS=-Werror
|
|
||||||
|
|
||||||
# Common test script
|
|
||||||
script:
|
script:
|
||||||
# make sure example can at least compile
|
# make sure example can at least compile
|
||||||
- sed -n '/``` c/,/```/{/```/d; p;}' README.md > test.c &&
|
- sed -n '/``` c/,/```/{/```/d; p;}' README.md > test.c &&
|
||||||
make all CFLAGS+="
|
CFLAGS='
|
||||||
-Duser_provided_block_device_read=NULL
|
-Duser_provided_block_device_read=NULL
|
||||||
-Duser_provided_block_device_prog=NULL
|
-Duser_provided_block_device_prog=NULL
|
||||||
-Duser_provided_block_device_erase=NULL
|
-Duser_provided_block_device_erase=NULL
|
||||||
-Duser_provided_block_device_sync=NULL
|
-Duser_provided_block_device_sync=NULL
|
||||||
-include stdio.h"
|
-include stdio.h -Werror' make all size
|
||||||
|
|
||||||
# run tests
|
# run tests
|
||||||
- make test QUIET=1
|
- make test
|
||||||
|
|
||||||
# run tests with a few different configurations
|
# run tests with a few different configurations
|
||||||
- make test QUIET=1 CFLAGS+="-DLFS_READ_SIZE=1 -DLFS_CACHE_SIZE=4"
|
- CFLAGS="-DLFS_READ_SIZE=1 -DLFS_PROG_SIZE=1" make test
|
||||||
- make test QUIET=1 CFLAGS+="-DLFS_READ_SIZE=512 -DLFS_CACHE_SIZE=512 -DLFS_BLOCK_CYCLES=16"
|
- CFLAGS="-DLFS_READ_SIZE=512 -DLFS_PROG_SIZE=512" make test
|
||||||
- make test QUIET=1 CFLAGS+="-DLFS_BLOCK_COUNT=1023 -DLFS_LOOKAHEAD_SIZE=256"
|
- CFLAGS="-DLFS_BLOCK_COUNT=1023" make test
|
||||||
|
- CFLAGS="-DLFS_LOOKAHEAD=2047" make test
|
||||||
- make clean test QUIET=1 CFLAGS+="-DLFS_INLINE_MAX=0"
|
|
||||||
- make clean test QUIET=1 CFLAGS+="-DLFS_EMUBD_ERASE_VALUE=0xff"
|
|
||||||
- make clean test QUIET=1 CFLAGS+="-DLFS_NO_INTRINSICS"
|
|
||||||
|
|
||||||
# additional configurations that don't support all tests (this should be
|
|
||||||
# fixed but at the moment it is what it is)
|
|
||||||
- make test_files QUIET=1
|
|
||||||
CFLAGS+="-DLFS_READ_SIZE=1 -DLFS_BLOCK_SIZE=4096"
|
|
||||||
- make test_files QUIET=1
|
|
||||||
CFLAGS+="-DLFS_READ_SIZE=\(2*1024\) -DLFS_BLOCK_SIZE=\(64*1024\)"
|
|
||||||
- make test_files QUIET=1
|
|
||||||
CFLAGS+="-DLFS_READ_SIZE=\(8*1024\) -DLFS_BLOCK_SIZE=\(64*1024\)"
|
|
||||||
- make test_files QUIET=1
|
|
||||||
CFLAGS+="-DLFS_READ_SIZE=11 -DLFS_BLOCK_SIZE=704"
|
|
||||||
|
|
||||||
# compile and find the code size with the smallest configuration
|
|
||||||
- make clean size
|
|
||||||
OBJ="$(ls lfs*.o | tr '\n' ' ')"
|
|
||||||
CFLAGS+="-DLFS_NO_ASSERT -DLFS_NO_DEBUG -DLFS_NO_WARN -DLFS_NO_ERROR"
|
|
||||||
| tee sizes
|
|
||||||
|
|
||||||
# update status if we succeeded, compare with master if possible
|
|
||||||
- |
|
|
||||||
if [ "$TRAVIS_TEST_RESULT" -eq 0 ]
|
|
||||||
then
|
|
||||||
CURR=$(tail -n1 sizes | awk '{print $1}')
|
|
||||||
PREV=$(curl -u "$GEKY_BOT_STATUSES" https://api.github.com/repos/$TRAVIS_REPO_SLUG/status/master \
|
|
||||||
| jq -re "select(.sha != \"$TRAVIS_COMMIT\")
|
|
||||||
| .statuses[] | select(.context == \"$STAGE/$NAME\").description
|
|
||||||
| capture(\"code size is (?<size>[0-9]+)\").size" \
|
|
||||||
|| echo 0)
|
|
||||||
|
|
||||||
STATUS="Passed, code size is ${CURR}B"
|
|
||||||
if [ "$PREV" -ne 0 ]
|
|
||||||
then
|
|
||||||
STATUS="$STATUS ($(python -c "print '%+.2f' % (100*($CURR-$PREV)/$PREV.0)")%)"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# CI matrix
|
|
||||||
jobs:
|
|
||||||
include:
|
|
||||||
# native testing
|
|
||||||
- stage: test
|
|
||||||
env:
|
|
||||||
- STAGE=test
|
|
||||||
- NAME=littlefs-x86
|
|
||||||
|
|
||||||
# cross-compile with ARM (thumb mode)
|
|
||||||
- stage: test
|
|
||||||
env:
|
|
||||||
- STAGE=test
|
|
||||||
- NAME=littlefs-arm
|
|
||||||
- CC="arm-linux-gnueabi-gcc --static -mthumb"
|
|
||||||
- EXEC="qemu-arm"
|
|
||||||
install:
|
|
||||||
- sudo apt-get install
|
|
||||||
gcc-arm-linux-gnueabi
|
|
||||||
libc6-dev-armel-cross
|
|
||||||
qemu-user
|
|
||||||
- arm-linux-gnueabi-gcc --version
|
|
||||||
- qemu-arm -version
|
|
||||||
|
|
||||||
# cross-compile with PowerPC
|
|
||||||
- stage: test
|
|
||||||
env:
|
|
||||||
- STAGE=test
|
|
||||||
- NAME=littlefs-powerpc
|
|
||||||
- CC="powerpc-linux-gnu-gcc --static"
|
|
||||||
- EXEC="qemu-ppc"
|
|
||||||
install:
|
|
||||||
- sudo apt-get install
|
|
||||||
gcc-powerpc-linux-gnu
|
|
||||||
libc6-dev-powerpc-cross
|
|
||||||
qemu-user
|
|
||||||
- powerpc-linux-gnu-gcc --version
|
|
||||||
- qemu-ppc -version
|
|
||||||
|
|
||||||
# cross-compile with MIPS
|
|
||||||
- stage: test
|
|
||||||
env:
|
|
||||||
- STAGE=test
|
|
||||||
- NAME=littlefs-mips
|
|
||||||
- CC="mips-linux-gnu-gcc --static"
|
|
||||||
- EXEC="qemu-mips"
|
|
||||||
install:
|
|
||||||
- sudo apt-get install
|
|
||||||
gcc-mips-linux-gnu
|
|
||||||
libc6-dev-mips-cross
|
|
||||||
qemu-user
|
|
||||||
- mips-linux-gnu-gcc --version
|
|
||||||
- qemu-mips -version
|
|
||||||
|
|
||||||
# self-host with littlefs-fuse for fuzz test
|
# self-host with littlefs-fuse for fuzz test
|
||||||
- stage: test
|
- make -C littlefs-fuse
|
||||||
env:
|
|
||||||
- STAGE=test
|
|
||||||
- NAME=littlefs-fuse
|
|
||||||
if: branch !~ -prefix$
|
|
||||||
install:
|
|
||||||
- sudo apt-get install libfuse-dev
|
|
||||||
- git clone --depth 1 https://github.com/geky/littlefs-fuse -b v2
|
|
||||||
- fusermount -V
|
|
||||||
- gcc --version
|
|
||||||
before_script:
|
|
||||||
# setup disk for littlefs-fuse
|
|
||||||
- rm -rf littlefs-fuse/littlefs/*
|
|
||||||
- cp -r $(git ls-tree --name-only HEAD) littlefs-fuse/littlefs
|
|
||||||
|
|
||||||
- mkdir mount
|
- littlefs-fuse/lfs --format /dev/loop0
|
||||||
- sudo chmod a+rw /dev/loop0
|
- littlefs-fuse/lfs /dev/loop0 mount
|
||||||
- dd if=/dev/zero bs=512 count=4096 of=disk
|
|
||||||
- losetup /dev/loop0 disk
|
|
||||||
script:
|
|
||||||
# self-host test
|
|
||||||
- make -C littlefs-fuse
|
|
||||||
|
|
||||||
- littlefs-fuse/lfs --format /dev/loop0
|
- ls mount
|
||||||
- littlefs-fuse/lfs /dev/loop0 mount
|
- mkdir mount/littlefs
|
||||||
|
- cp -r $(git ls-tree --name-only HEAD) mount/littlefs
|
||||||
|
- cd mount/littlefs
|
||||||
|
- ls
|
||||||
|
- make -B test_dirs
|
||||||
|
|
||||||
- ls mount
|
|
||||||
- mkdir mount/littlefs
|
|
||||||
- cp -r $(git ls-tree --name-only HEAD) mount/littlefs
|
|
||||||
- cd mount/littlefs
|
|
||||||
- stat .
|
|
||||||
- ls -flh
|
|
||||||
- make -B test_dirs test_files QUIET=1
|
|
||||||
|
|
||||||
# self-host with littlefs-fuse for fuzz test
|
|
||||||
- stage: test
|
|
||||||
env:
|
|
||||||
- STAGE=test
|
|
||||||
- NAME=littlefs-migration
|
|
||||||
if: branch !~ -prefix$
|
|
||||||
install:
|
|
||||||
- sudo apt-get install libfuse-dev
|
|
||||||
- git clone --depth 1 https://github.com/geky/littlefs-fuse -b v2 v2
|
|
||||||
- git clone --depth 1 https://github.com/geky/littlefs-fuse -b v1 v1
|
|
||||||
- fusermount -V
|
|
||||||
- gcc --version
|
|
||||||
before_script:
|
|
||||||
# setup disk for littlefs-fuse
|
|
||||||
- rm -rf v2/littlefs/*
|
|
||||||
- cp -r $(git ls-tree --name-only HEAD) v2/littlefs
|
|
||||||
|
|
||||||
- mkdir mount
|
|
||||||
- sudo chmod a+rw /dev/loop0
|
|
||||||
- dd if=/dev/zero bs=512 count=4096 of=disk
|
|
||||||
- losetup /dev/loop0 disk
|
|
||||||
script:
|
|
||||||
# compile v1 and v2
|
|
||||||
- make -C v1
|
|
||||||
- make -C v2
|
|
||||||
|
|
||||||
# run self-host test with v1
|
|
||||||
- v1/lfs --format /dev/loop0
|
|
||||||
- v1/lfs /dev/loop0 mount
|
|
||||||
|
|
||||||
- ls mount
|
|
||||||
- mkdir mount/littlefs
|
|
||||||
- cp -r $(git ls-tree --name-only HEAD) mount/littlefs
|
|
||||||
- cd mount/littlefs
|
|
||||||
- stat .
|
|
||||||
- ls -flh
|
|
||||||
- make -B test_dirs test_files QUIET=1
|
|
||||||
|
|
||||||
# attempt to migrate
|
|
||||||
- cd ../..
|
|
||||||
- fusermount -u mount
|
|
||||||
|
|
||||||
- v2/lfs --migrate /dev/loop0
|
|
||||||
- v2/lfs /dev/loop0 mount
|
|
||||||
|
|
||||||
# run self-host test with v2 right where we left off
|
|
||||||
- ls mount
|
|
||||||
- cd mount/littlefs
|
|
||||||
- stat .
|
|
||||||
- ls -flh
|
|
||||||
- make -B test_dirs test_files QUIET=1
|
|
||||||
|
|
||||||
# Automatically create releases
|
|
||||||
- stage: deploy
|
|
||||||
env:
|
|
||||||
- STAGE=deploy
|
|
||||||
- NAME=deploy
|
|
||||||
script:
|
|
||||||
- |
|
|
||||||
bash << 'SCRIPT'
|
|
||||||
set -ev
|
|
||||||
# Find version defined in lfs.h
|
|
||||||
LFS_VERSION=$(grep -ox '#define LFS_VERSION .*' lfs.h | cut -d ' ' -f3)
|
|
||||||
LFS_VERSION_MAJOR=$((0xffff & ($LFS_VERSION >> 16)))
|
|
||||||
LFS_VERSION_MINOR=$((0xffff & ($LFS_VERSION >> 0)))
|
|
||||||
# Grab latests patch from repo tags, default to 0, needs finagling
|
|
||||||
# to get past github's pagination api
|
|
||||||
PREV_URL=https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/refs/tags/v$LFS_VERSION_MAJOR.$LFS_VERSION_MINOR.
|
|
||||||
PREV_URL=$(curl -u "$GEKY_BOT_RELEASES" "$PREV_URL" -I \
|
|
||||||
| sed -n '/^Link/{s/.*<\(.*\)>; rel="last"/\1/;p;q0};$q1' \
|
|
||||||
|| echo $PREV_URL)
|
|
||||||
LFS_VERSION_PATCH=$(curl -u "$GEKY_BOT_RELEASES" "$PREV_URL" \
|
|
||||||
| jq 'map(.ref | match("\\bv.*\\..*\\.(.*)$";"g")
|
|
||||||
.captures[].string | tonumber) | max + 1' \
|
|
||||||
|| echo 0)
|
|
||||||
# We have our new version
|
|
||||||
LFS_VERSION="v$LFS_VERSION_MAJOR.$LFS_VERSION_MINOR.$LFS_VERSION_PATCH"
|
|
||||||
echo "VERSION $LFS_VERSION"
|
|
||||||
# Check that we're the most recent commit
|
|
||||||
CURRENT_COMMIT=$(curl -f -u "$GEKY_BOT_RELEASES" \
|
|
||||||
https://api.github.com/repos/$TRAVIS_REPO_SLUG/commits/master \
|
|
||||||
| jq -re '.sha')
|
|
||||||
[ "$TRAVIS_COMMIT" == "$CURRENT_COMMIT" ] || exit 0
|
|
||||||
# Create major branch
|
|
||||||
git branch v$LFS_VERSION_MAJOR HEAD
|
|
||||||
# Create major prefix branch
|
|
||||||
git config user.name "geky bot"
|
|
||||||
git config user.email "bot@geky.net"
|
|
||||||
git fetch https://github.com/$TRAVIS_REPO_SLUG.git \
|
|
||||||
--depth=50 v$LFS_VERSION_MAJOR-prefix || true
|
|
||||||
./scripts/prefix.py lfs$LFS_VERSION_MAJOR
|
|
||||||
git branch v$LFS_VERSION_MAJOR-prefix $( \
|
|
||||||
git commit-tree $(git write-tree) \
|
|
||||||
$(git rev-parse --verify -q FETCH_HEAD | sed -e 's/^/-p /') \
|
|
||||||
-p HEAD \
|
|
||||||
-m "Generated v$LFS_VERSION_MAJOR prefixes")
|
|
||||||
git reset --hard
|
|
||||||
# Update major version branches (vN and vN-prefix)
|
|
||||||
git push https://$GEKY_BOT_RELEASES@github.com/$TRAVIS_REPO_SLUG.git \
|
|
||||||
v$LFS_VERSION_MAJOR \
|
|
||||||
v$LFS_VERSION_MAJOR-prefix
|
|
||||||
# Create patch version tag (vN.N.N)
|
|
||||||
curl -f -u "$GEKY_BOT_RELEASES" -X POST \
|
|
||||||
https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/refs \
|
|
||||||
-d "{
|
|
||||||
\"ref\": \"refs/tags/$LFS_VERSION\",
|
|
||||||
\"sha\": \"$TRAVIS_COMMIT\"
|
|
||||||
}"
|
|
||||||
# Create minor release?
|
|
||||||
[[ "$LFS_VERSION" == *.0 ]] || exit 0
|
|
||||||
# Build release notes
|
|
||||||
PREV=$(git tag --sort=-v:refname -l "v*.0" | head -1)
|
|
||||||
if [ ! -z "$PREV" ]
|
|
||||||
then
|
|
||||||
echo "PREV $PREV"
|
|
||||||
CHANGES=$'### Changes\n\n'$( \
|
|
||||||
git log --oneline $PREV.. --grep='^Merge' --invert-grep)
|
|
||||||
printf "CHANGES\n%s\n\n" "$CHANGES"
|
|
||||||
fi
|
|
||||||
# Create the release
|
|
||||||
curl -f -u "$GEKY_BOT_RELEASES" -X POST \
|
|
||||||
https://api.github.com/repos/$TRAVIS_REPO_SLUG/releases \
|
|
||||||
-d "{
|
|
||||||
\"tag_name\": \"$LFS_VERSION\",
|
|
||||||
\"name\": \"${LFS_VERSION%.0}\",
|
|
||||||
\"draft\": true,
|
|
||||||
\"body\": $(jq -sR '.' <<< "$CHANGES")
|
|
||||||
}" #"
|
|
||||||
SCRIPT
|
|
||||||
|
|
||||||
# Manage statuses
|
|
||||||
before_install:
|
before_install:
|
||||||
- |
|
- fusermount -V
|
||||||
curl -u "$GEKY_BOT_STATUSES" -X POST \
|
- gcc --version
|
||||||
https://api.github.com/repos/$TRAVIS_REPO_SLUG/statuses/${TRAVIS_PULL_REQUEST_SHA:-$TRAVIS_COMMIT} \
|
|
||||||
-d "{
|
|
||||||
\"context\": \"$STAGE/$NAME\",
|
|
||||||
\"state\": \"pending\",
|
|
||||||
\"description\": \"${STATUS:-In progress}\",
|
|
||||||
\"target_url\": \"https://travis-ci.org/$TRAVIS_REPO_SLUG/jobs/$TRAVIS_JOB_ID\"
|
|
||||||
}"
|
|
||||||
|
|
||||||
after_failure:
|
install:
|
||||||
- |
|
- sudo apt-get install libfuse-dev
|
||||||
curl -u "$GEKY_BOT_STATUSES" -X POST \
|
- git clone --depth 1 https://github.com/geky/littlefs-fuse
|
||||||
https://api.github.com/repos/$TRAVIS_REPO_SLUG/statuses/${TRAVIS_PULL_REQUEST_SHA:-$TRAVIS_COMMIT} \
|
|
||||||
-d "{
|
|
||||||
\"context\": \"$STAGE/$NAME\",
|
|
||||||
\"state\": \"failure\",
|
|
||||||
\"description\": \"${STATUS:-Failed}\",
|
|
||||||
\"target_url\": \"https://travis-ci.org/$TRAVIS_REPO_SLUG/jobs/$TRAVIS_JOB_ID\"
|
|
||||||
}"
|
|
||||||
|
|
||||||
after_success:
|
before_script:
|
||||||
- |
|
- rm -rf littlefs-fuse/littlefs/*
|
||||||
curl -u "$GEKY_BOT_STATUSES" -X POST \
|
- cp -r $(git ls-tree --name-only HEAD) littlefs-fuse/littlefs
|
||||||
https://api.github.com/repos/$TRAVIS_REPO_SLUG/statuses/${TRAVIS_PULL_REQUEST_SHA:-$TRAVIS_COMMIT} \
|
|
||||||
-d "{
|
|
||||||
\"context\": \"$STAGE/$NAME\",
|
|
||||||
\"state\": \"success\",
|
|
||||||
\"description\": \"${STATUS:-Passed}\",
|
|
||||||
\"target_url\": \"https://travis-ci.org/$TRAVIS_REPO_SLUG/jobs/$TRAVIS_JOB_ID\"
|
|
||||||
}"
|
|
||||||
|
|
||||||
# Job control
|
- mkdir mount
|
||||||
stages:
|
- sudo chmod a+rw /dev/loop0
|
||||||
- name: test
|
- dd if=/dev/zero bs=512 count=2048 of=disk
|
||||||
- name: deploy
|
- losetup /dev/loop0 disk
|
||||||
if: branch = master AND type = push
|
|
||||||
|
|||||||
183
LICENSE.md
183
LICENSE.md
@@ -1,24 +1,165 @@
|
|||||||
Copyright (c) 2017, Arm Limited. All rights reserved.
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
- Redistributions of source code must retain the above copyright notice, this
|
1. Definitions.
|
||||||
list of conditions and the following disclaimer.
|
|
||||||
- Redistributions in binary form must reproduce the above copyright notice, this
|
|
||||||
list of conditions and the following disclaimer in the documentation and/or
|
|
||||||
other materials provided with the distribution.
|
|
||||||
- Neither the name of ARM nor the names of its contributors may be used to
|
|
||||||
endorse or promote products derived from this software without specific prior
|
|
||||||
written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
"License" shall mean the terms and conditions for use, reproduction, and
|
||||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
distribution as defined by Sections 1 through 9 of this document.
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
||||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
owner that is granting the License.
|
||||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
||||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
"Legal Entity" shall mean the union of the acting entity and all other entities
|
||||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
that control, are controlled by, or are under common control with that entity.
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
For the purposes of this definition, "control" means (i) the power, direct or
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
indirect, to cause the direction or management of such entity, whether by
|
||||||
|
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
||||||
|
permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications, including
|
||||||
|
but not limited to software source code, documentation source, and configuration
|
||||||
|
files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical transformation or
|
||||||
|
translation of a Source form, including but not limited to compiled object code,
|
||||||
|
generated documentation, and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or Object form, made
|
||||||
|
available under the License, as indicated by a copyright notice that is included
|
||||||
|
in or attached to the work (an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
||||||
|
is based on (or derived from) the Work and for which the editorial revisions,
|
||||||
|
annotations, elaborations, or other modifications represent, as a whole, an
|
||||||
|
original work of authorship. For the purposes of this License, Derivative Works
|
||||||
|
shall not include works that remain separable from, or merely link (or bind by
|
||||||
|
name) to the interfaces of, the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including the original version
|
||||||
|
of the Work and any modifications or additions to that Work or Derivative Works
|
||||||
|
thereof, that is intentionally submitted to Licensor for inclusion in the Work
|
||||||
|
by the copyright owner or by an individual or Legal Entity authorized to submit
|
||||||
|
on behalf of the copyright owner. For the purposes of this definition,
|
||||||
|
"submitted" means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems, and
|
||||||
|
issue tracking systems that are managed by, or on behalf of, the Licensor for
|
||||||
|
the purpose of discussing and improving the Work, but excluding communication
|
||||||
|
that is conspicuously marked or otherwise designated in writing by the copyright
|
||||||
|
owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
||||||
|
of whom a Contribution has been received by Licensor and subsequently
|
||||||
|
incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License.
|
||||||
|
|
||||||
|
Subject to the terms and conditions of this License, each Contributor hereby
|
||||||
|
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||||
|
irrevocable copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the Work and such
|
||||||
|
Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License.
|
||||||
|
|
||||||
|
Subject to the terms and conditions of this License, each Contributor hereby
|
||||||
|
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
||||||
|
irrevocable (except as stated in this section) patent license to make, have
|
||||||
|
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
|
||||||
|
such license applies only to those patent claims licensable by such Contributor
|
||||||
|
that are necessarily infringed by their Contribution(s) alone or by combination
|
||||||
|
of their Contribution(s) with the Work to which such Contribution(s) was
|
||||||
|
submitted. If You institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work or a
|
||||||
|
Contribution incorporated within the Work constitutes direct or contributory
|
||||||
|
patent infringement, then any patent licenses granted to You under this License
|
||||||
|
for that Work shall terminate as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution.
|
||||||
|
|
||||||
|
You may reproduce and distribute copies of the Work or Derivative Works thereof
|
||||||
|
in any medium, with or without modifications, and in Source or Object form,
|
||||||
|
provided that You meet the following conditions:
|
||||||
|
|
||||||
|
You must give any other recipients of the Work or Derivative Works a copy of
|
||||||
|
this License; and
|
||||||
|
You must cause any modified files to carry prominent notices stating that You
|
||||||
|
changed the files; and
|
||||||
|
You must retain, in the Source form of any Derivative Works that You distribute,
|
||||||
|
all copyright, patent, trademark, and attribution notices from the Source form
|
||||||
|
of the Work, excluding those notices that do not pertain to any part of the
|
||||||
|
Derivative Works; and
|
||||||
|
If the Work includes a "NOTICE" text file as part of its distribution, then any
|
||||||
|
Derivative Works that You distribute must include a readable copy of the
|
||||||
|
attribution notices contained within such NOTICE file, excluding those notices
|
||||||
|
that do not pertain to any part of the Derivative Works, in at least one of the
|
||||||
|
following places: within a NOTICE text file distributed as part of the
|
||||||
|
Derivative Works; within the Source form or documentation, if provided along
|
||||||
|
with the Derivative Works; or, within a display generated by the Derivative
|
||||||
|
Works, if and wherever such third-party notices normally appear. The contents of
|
||||||
|
the NOTICE file are for informational purposes only and do not modify the
|
||||||
|
License. You may add Your own attribution notices within Derivative Works that
|
||||||
|
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
||||||
|
provided that such additional attribution notices cannot be construed as
|
||||||
|
modifying the License.
|
||||||
|
You may add Your own copyright statement to Your modifications and may provide
|
||||||
|
additional or different license terms and conditions for use, reproduction, or
|
||||||
|
distribution of Your modifications, or for any such Derivative Works as a whole,
|
||||||
|
provided Your use, reproduction, and distribution of the Work otherwise complies
|
||||||
|
with the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions.
|
||||||
|
|
||||||
|
Unless You explicitly state otherwise, any Contribution intentionally submitted
|
||||||
|
for inclusion in the Work by You to the Licensor shall be under the terms and
|
||||||
|
conditions of this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify the terms of
|
||||||
|
any separate license agreement you may have executed with Licensor regarding
|
||||||
|
such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks.
|
||||||
|
|
||||||
|
This License does not grant permission to use the trade names, trademarks,
|
||||||
|
service marks, or product names of the Licensor, except as required for
|
||||||
|
reasonable and customary use in describing the origin of the Work and
|
||||||
|
reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, Licensor provides the
|
||||||
|
Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
|
||||||
|
including, without limitation, any warranties or conditions of TITLE,
|
||||||
|
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
|
||||||
|
solely responsible for determining the appropriateness of using or
|
||||||
|
redistributing the Work and assume any risks associated with Your exercise of
|
||||||
|
permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability.
|
||||||
|
|
||||||
|
In no event and under no legal theory, whether in tort (including negligence),
|
||||||
|
contract, or otherwise, unless required by applicable law (such as deliberate
|
||||||
|
and grossly negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special, incidental,
|
||||||
|
or consequential damages of any character arising as a result of this License or
|
||||||
|
out of the use or inability to use the Work (including but not limited to
|
||||||
|
damages for loss of goodwill, work stoppage, computer failure or malfunction, or
|
||||||
|
any and all other commercial damages or losses), even if such Contributor has
|
||||||
|
been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability.
|
||||||
|
|
||||||
|
While redistributing the Work or Derivative Works thereof, You may choose to
|
||||||
|
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
|
||||||
|
other liability obligations and/or rights consistent with this License. However,
|
||||||
|
in accepting such obligations, You may act only on Your own behalf and on Your
|
||||||
|
sole responsibility, not on behalf of any other Contributor, and only if You
|
||||||
|
agree to indemnify, defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason of your
|
||||||
|
accepting any such warranty or additional liability.
|
||||||
|
|||||||
53
Makefile
53
Makefile
@@ -1,11 +1,8 @@
|
|||||||
TARGET = lfs.a
|
TARGET = lfs
|
||||||
ifneq ($(wildcard test.c main.c),)
|
|
||||||
override TARGET = lfs
|
|
||||||
endif
|
|
||||||
|
|
||||||
CC ?= gcc
|
CC = gcc
|
||||||
AR ?= ar
|
AR = ar
|
||||||
SIZE ?= size
|
SIZE = size
|
||||||
|
|
||||||
SRC += $(wildcard *.c emubd/*.c)
|
SRC += $(wildcard *.c emubd/*.c)
|
||||||
OBJ := $(SRC:.c=.o)
|
OBJ := $(SRC:.c=.o)
|
||||||
@@ -14,24 +11,16 @@ ASM := $(SRC:.c=.s)
|
|||||||
|
|
||||||
TEST := $(patsubst tests/%.sh,%,$(wildcard tests/test_*))
|
TEST := $(patsubst tests/%.sh,%,$(wildcard tests/test_*))
|
||||||
|
|
||||||
SHELL = /bin/bash -o pipefail
|
|
||||||
|
|
||||||
ifdef DEBUG
|
ifdef DEBUG
|
||||||
override CFLAGS += -O0 -g3
|
CFLAGS += -O0 -g3
|
||||||
else
|
else
|
||||||
override CFLAGS += -Os
|
CFLAGS += -Os
|
||||||
endif
|
endif
|
||||||
ifdef WORD
|
ifdef WORD
|
||||||
override CFLAGS += -m$(WORD)
|
CFLAGS += -m$(WORD)
|
||||||
endif
|
endif
|
||||||
ifdef TRACE
|
CFLAGS += -I.
|
||||||
override CFLAGS += -DLFS_YES_TRACE
|
CFLAGS += -std=c99 -Wall -pedantic
|
||||||
endif
|
|
||||||
override CFLAGS += -I.
|
|
||||||
override CFLAGS += -std=c99 -Wall -pedantic
|
|
||||||
override CFLAGS += -Wextra -Wshadow -Wjump-misses-init
|
|
||||||
# Remove missing-field-initializers because of GCC bug
|
|
||||||
override CFLAGS += -Wno-missing-field-initializers
|
|
||||||
|
|
||||||
|
|
||||||
all: $(TARGET)
|
all: $(TARGET)
|
||||||
@@ -42,32 +31,14 @@ size: $(OBJ)
|
|||||||
$(SIZE) -t $^
|
$(SIZE) -t $^
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
test: \
|
test: test_format test_dirs test_files test_seek test_parallel \
|
||||||
test_format \
|
test_alloc test_paths test_orphan test_move test_corrupt
|
||||||
test_dirs \
|
|
||||||
test_files \
|
|
||||||
test_seek \
|
|
||||||
test_truncate \
|
|
||||||
test_entries \
|
|
||||||
test_interspersed \
|
|
||||||
test_alloc \
|
|
||||||
test_paths \
|
|
||||||
test_attrs \
|
|
||||||
test_move \
|
|
||||||
test_orphan \
|
|
||||||
test_corrupt
|
|
||||||
@rm test.c
|
|
||||||
test_%: tests/test_%.sh
|
test_%: tests/test_%.sh
|
||||||
|
|
||||||
ifdef QUIET
|
|
||||||
@./$< | sed -nu '/^[-=]/p'
|
|
||||||
else
|
|
||||||
./$<
|
./$<
|
||||||
endif
|
|
||||||
|
|
||||||
-include $(DEP)
|
-include $(DEP)
|
||||||
|
|
||||||
lfs: $(OBJ)
|
$(TARGET): $(OBJ)
|
||||||
$(CC) $(CFLAGS) $^ $(LFLAGS) -o $@
|
$(CC) $(CFLAGS) $^ $(LFLAGS) -o $@
|
||||||
|
|
||||||
%.a: $(OBJ)
|
%.a: $(OBJ)
|
||||||
|
|||||||
193
README.md
193
README.md
@@ -1,6 +1,6 @@
|
|||||||
## littlefs
|
## The little filesystem
|
||||||
|
|
||||||
A little fail-safe filesystem designed for microcontrollers.
|
A little fail-safe filesystem designed for embedded systems.
|
||||||
|
|
||||||
```
|
```
|
||||||
| | | .---._____
|
| | | .---._____
|
||||||
@@ -11,19 +11,23 @@ A little fail-safe filesystem designed for microcontrollers.
|
|||||||
| | |
|
| | |
|
||||||
```
|
```
|
||||||
|
|
||||||
**Power-loss resilience** - littlefs is designed to handle random power
|
**Fail-safe** - The littlefs is designed to work consistently with random
|
||||||
failures. All file operations have strong copy-on-write guarantees and if
|
power failures. During filesystem operations the storage on disk is always
|
||||||
power is lost the filesystem will fall back to the last known good state.
|
kept in a valid state. The filesystem also has strong copy-on-write garuntees.
|
||||||
|
When updating a file, the original file will remain unmodified until the
|
||||||
|
file is closed, or sync is called.
|
||||||
|
|
||||||
**Dynamic wear leveling** - littlefs is designed with flash in mind, and
|
**Wear awareness** - While the littlefs does not implement static wear
|
||||||
provides wear leveling over dynamic blocks. Additionally, littlefs can
|
leveling, the littlefs takes into account write errors reported by the
|
||||||
detect bad blocks and work around them.
|
underlying block device and uses a limited form of dynamic wear leveling
|
||||||
|
to manage blocks that go bad during the lifetime of the filesystem.
|
||||||
|
|
||||||
**Bounded RAM/ROM** - littlefs is designed to work with a small amount of
|
**Bounded ram/rom** - The littlefs is designed to work in a
|
||||||
memory. RAM usage is strictly bounded, which means RAM consumption does not
|
limited amount of memory, recursion is avoided, and dynamic memory is kept
|
||||||
change as the filesystem grows. The filesystem contains no unbounded
|
to a minimum. The littlefs allocates two fixed-size buffers for general
|
||||||
recursion and dynamic memory is limited to configurable buffers that can be
|
operations, and one fixed-size buffer per file. If there is only ever one file
|
||||||
provided statically.
|
in use, all memory can be provided statically and the littlefs can be used
|
||||||
|
in a system without dynamic memory.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
@@ -51,8 +55,7 @@ const struct lfs_config cfg = {
|
|||||||
.prog_size = 16,
|
.prog_size = 16,
|
||||||
.block_size = 4096,
|
.block_size = 4096,
|
||||||
.block_count = 128,
|
.block_count = 128,
|
||||||
.cache_size = 16,
|
.lookahead = 128,
|
||||||
.lookahead_size = 16,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// entry point
|
// entry point
|
||||||
@@ -91,158 +94,52 @@ int main(void) {
|
|||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Detailed documentation (or at least as much detail as is currently available)
|
Detailed documentation (or at least as much detail as is currently available)
|
||||||
can be found in the comments in [lfs.h](lfs.h).
|
can be cound in the comments in [lfs.h](lfs.h).
|
||||||
|
|
||||||
littlefs takes in a configuration structure that defines how the filesystem
|
As you may have noticed, the littlefs takes in a configuration structure that
|
||||||
operates. The configuration struct provides the filesystem with the block
|
defines how the filesystem operates. The configuration struct provides the
|
||||||
device operations and dimensions, tweakable parameters that tradeoff memory
|
filesystem with the block device operations and dimensions, tweakable
|
||||||
usage for performance, and optional static buffers if the user wants to avoid
|
parameters that tradeoff memory usage for performance, and optional
|
||||||
dynamic memory.
|
static buffers if the user wants to avoid dynamic memory.
|
||||||
|
|
||||||
The state of the littlefs is stored in the `lfs_t` type which is left up
|
The state of the littlefs is stored in the `lfs_t` type which is left up
|
||||||
to the user to allocate, allowing multiple filesystems to be in use
|
to the user to allocate, allowing multiple filesystems to be in use
|
||||||
simultaneously. With the `lfs_t` and configuration struct, a user can
|
simultaneously. With the `lfs_t` and configuration struct, a user can either
|
||||||
format a block device or mount the filesystem.
|
format a block device or mount the filesystem.
|
||||||
|
|
||||||
Once mounted, the littlefs provides a full set of POSIX-like file and
|
Once mounted, the littlefs provides a full set of posix-like file and
|
||||||
directory functions, with the deviation that the allocation of filesystem
|
directory functions, with the deviation that the allocation of filesystem
|
||||||
structures must be provided by the user.
|
structures must be provided by the user. An important addition is that
|
||||||
|
no file updates will actually be written to disk until a sync or close
|
||||||
All POSIX operations, such as remove and rename, are atomic, even in event
|
is called.
|
||||||
of power-loss. Additionally, no file updates are not actually committed to
|
|
||||||
the filesystem until sync or close is called on the file.
|
|
||||||
|
|
||||||
## Other notes
|
## Other notes
|
||||||
|
|
||||||
All littlefs calls have the potential to return a negative error code. The
|
All littlefs have the potential to return a negative error code. The errors
|
||||||
errors can be either one of those found in the `enum lfs_error` in
|
can be either one of those found in the `enum lfs_error` in [lfs.h](lfs.h),
|
||||||
[lfs.h](lfs.h), or an error returned by the user's block device operations.
|
or an error returned by the user's block device operations.
|
||||||
|
|
||||||
In the configuration struct, the `prog` and `erase` function provided by the
|
It should also be noted that the littlefs does not do anything to insure
|
||||||
user may return a `LFS_ERR_CORRUPT` error if the implementation already can
|
that the data written to disk is machine portable. It should be fine as
|
||||||
detect corrupt blocks. However, the wear leveling does not depend on the return
|
long as the machines involved share endianness and don't have really
|
||||||
code of these functions, instead all data is read back and checked for
|
strange padding requirements. If the question does come up, the littlefs
|
||||||
integrity.
|
metadata should be stored on disk in little-endian format.
|
||||||
|
|
||||||
If your storage caches writes, make sure that the provided `sync` function
|
|
||||||
flushes all the data to memory and ensures that the next read fetches the data
|
|
||||||
from memory, otherwise data integrity can not be guaranteed. If the `write`
|
|
||||||
function does not perform caching, and therefore each `read` or `write` call
|
|
||||||
hits the memory, the `sync` function can simply return 0.
|
|
||||||
|
|
||||||
## Design
|
## Design
|
||||||
|
|
||||||
At a high level, littlefs is a block based filesystem that uses small logs to
|
the littlefs was developed with the goal of learning more about filesystem
|
||||||
store metadata and larger copy-on-write (COW) structures to store file data.
|
design by tackling the relative unsolved problem of managing a robust
|
||||||
|
filesystem resilient to power loss on devices with limited RAM and ROM.
|
||||||
In littlefs, these ingredients form a sort of two-layered cake, with the small
|
More detail on the solutions and tradeoffs incorporated into this filesystem
|
||||||
logs (called metadata pairs) providing fast updates to metadata anywhere on
|
can be found in [DESIGN.md](DESIGN.md). The specification for the layout
|
||||||
storage, while the COW structures store file data compactly and without any
|
of the filesystem on disk can be found in [SPEC.md](SPEC.md).
|
||||||
wear amplification cost.
|
|
||||||
|
|
||||||
Both of these data structures are built out of blocks, which are fed by a
|
|
||||||
common block allocator. By limiting the number of erases allowed on a block
|
|
||||||
per allocation, the allocator provides dynamic wear leveling over the entire
|
|
||||||
filesystem.
|
|
||||||
|
|
||||||
```
|
|
||||||
root
|
|
||||||
.--------.--------.
|
|
||||||
| A'| B'| |
|
|
||||||
| | |-> |
|
|
||||||
| | | |
|
|
||||||
'--------'--------'
|
|
||||||
.----' '--------------.
|
|
||||||
A v B v
|
|
||||||
.--------.--------. .--------.--------.
|
|
||||||
| C'| D'| | | E'|new| |
|
|
||||||
| | |-> | | | E'|-> |
|
|
||||||
| | | | | | | |
|
|
||||||
'--------'--------' '--------'--------'
|
|
||||||
.-' '--. | '------------------.
|
|
||||||
v v .-' v
|
|
||||||
.--------. .--------. v .--------.
|
|
||||||
| C | | D | .--------. write | new E |
|
|
||||||
| | | | | E | ==> | |
|
|
||||||
| | | | | | | |
|
|
||||||
'--------' '--------' | | '--------'
|
|
||||||
'--------' .-' |
|
|
||||||
.-' '-. .-------------|------'
|
|
||||||
v v v v
|
|
||||||
.--------. .--------. .--------.
|
|
||||||
| F | | G | | new F |
|
|
||||||
| | | | | |
|
|
||||||
| | | | | |
|
|
||||||
'--------' '--------' '--------'
|
|
||||||
```
|
|
||||||
|
|
||||||
More details on how littlefs works can be found in [DESIGN.md](DESIGN.md) and
|
|
||||||
[SPEC.md](SPEC.md).
|
|
||||||
|
|
||||||
- [DESIGN.md](DESIGN.md) - A fully detailed dive into how littlefs works.
|
|
||||||
I would suggest reading it as the tradeoffs at work are quite interesting.
|
|
||||||
|
|
||||||
- [SPEC.md](SPEC.md) - The on-disk specification of littlefs with all the
|
|
||||||
nitty-gritty details. May be useful for tooling development.
|
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
The littlefs comes with a test suite designed to run on a PC using the
|
The littlefs comes with a test suite designed to run on a pc using the
|
||||||
[emulated block device](emubd/lfs_emubd.h) found in the emubd directory.
|
[emulated block device](emubd/lfs_emubd.h) found in the emubd directory.
|
||||||
The tests assume a Linux environment and can be started with make:
|
The tests assume a linux environment and can be started with make:
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
make test
|
make test
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
The littlefs is provided under the [BSD-3-Clause] license. See
|
|
||||||
[LICENSE.md](LICENSE.md) for more information. Contributions to this project
|
|
||||||
are accepted under the same license.
|
|
||||||
|
|
||||||
Individual files contain the following tag instead of the full license text.
|
|
||||||
|
|
||||||
SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
|
|
||||||
This enables machine processing of license information based on the SPDX
|
|
||||||
License Identifiers that are here available: http://spdx.org/licenses/
|
|
||||||
|
|
||||||
## Related projects
|
|
||||||
|
|
||||||
- [littlefs-fuse] - A [FUSE] wrapper for littlefs. The project allows you to
|
|
||||||
mount littlefs directly on a Linux machine. Can be useful for debugging
|
|
||||||
littlefs if you have an SD card handy.
|
|
||||||
|
|
||||||
- [littlefs-js] - A javascript wrapper for littlefs. I'm not sure why you would
|
|
||||||
want this, but it is handy for demos. You can see it in action
|
|
||||||
[here][littlefs-js-demo].
|
|
||||||
|
|
||||||
- [mklfs] - A command line tool built by the [Lua RTOS] guys for making
|
|
||||||
littlefs images from a host PC. Supports Windows, Mac OS, and Linux.
|
|
||||||
|
|
||||||
- [Mbed OS] - The easiest way to get started with littlefs is to jump into Mbed
|
|
||||||
which already has block device drivers for most forms of embedded storage.
|
|
||||||
littlefs is available in Mbed OS as the [LittleFileSystem] class.
|
|
||||||
|
|
||||||
- [SPIFFS] - Another excellent embedded filesystem for NOR flash. As a more
|
|
||||||
traditional logging filesystem with full static wear-leveling, SPIFFS will
|
|
||||||
likely outperform littlefs on small memories such as the internal flash on
|
|
||||||
microcontrollers.
|
|
||||||
|
|
||||||
- [Dhara] - An interesting NAND flash translation layer designed for small
|
|
||||||
MCUs. It offers static wear-leveling and power-resilience with only a fixed
|
|
||||||
_O(|address|)_ pointer structure stored on each block and in RAM.
|
|
||||||
|
|
||||||
|
|
||||||
[BSD-3-Clause]: https://spdx.org/licenses/BSD-3-Clause.html
|
|
||||||
[littlefs-fuse]: https://github.com/geky/littlefs-fuse
|
|
||||||
[FUSE]: https://github.com/libfuse/libfuse
|
|
||||||
[littlefs-js]: https://github.com/geky/littlefs-js
|
|
||||||
[littlefs-js-demo]:http://littlefs.geky.net/demo.html
|
|
||||||
[mklfs]: https://github.com/whitecatboard/Lua-RTOS-ESP32/tree/master/components/mklfs/src
|
|
||||||
[Lua RTOS]: https://github.com/whitecatboard/Lua-RTOS-ESP32
|
|
||||||
[Mbed OS]: https://github.com/armmbed/mbed-os
|
|
||||||
[LittleFileSystem]: https://os.mbed.com/docs/mbed-os/v5.12/apis/littlefilesystem.html
|
|
||||||
[SPIFFS]: https://github.com/pellepl/spiffs
|
|
||||||
[Dhara]: https://github.com/dlbeer/dhara
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* Block device emulated on standard files
|
* Block device emulated on standard files
|
||||||
*
|
*
|
||||||
* Copyright (c) 2017, Arm Limited. All rights reserved.
|
* Copyright (c) 2017 Christopher Haster
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* Distributed under the Apache 2.0 license
|
||||||
*/
|
*/
|
||||||
#include "emubd/lfs_emubd.h"
|
#include "emubd/lfs_emubd.h"
|
||||||
|
|
||||||
@@ -11,58 +11,15 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#include <dirent.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
|
|
||||||
// Emulated block device utils
|
|
||||||
static inline void lfs_emubd_tole32(lfs_emubd_t *emu) {
|
|
||||||
emu->cfg.read_size = lfs_tole32(emu->cfg.read_size);
|
|
||||||
emu->cfg.prog_size = lfs_tole32(emu->cfg.prog_size);
|
|
||||||
emu->cfg.block_size = lfs_tole32(emu->cfg.block_size);
|
|
||||||
emu->cfg.block_count = lfs_tole32(emu->cfg.block_count);
|
|
||||||
|
|
||||||
emu->stats.read_count = lfs_tole32(emu->stats.read_count);
|
|
||||||
emu->stats.prog_count = lfs_tole32(emu->stats.prog_count);
|
|
||||||
emu->stats.erase_count = lfs_tole32(emu->stats.erase_count);
|
|
||||||
|
|
||||||
for (unsigned i = 0; i < sizeof(emu->history.blocks) /
|
|
||||||
sizeof(emu->history.blocks[0]); i++) {
|
|
||||||
emu->history.blocks[i] = lfs_tole32(emu->history.blocks[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void lfs_emubd_fromle32(lfs_emubd_t *emu) {
|
|
||||||
emu->cfg.read_size = lfs_fromle32(emu->cfg.read_size);
|
|
||||||
emu->cfg.prog_size = lfs_fromle32(emu->cfg.prog_size);
|
|
||||||
emu->cfg.block_size = lfs_fromle32(emu->cfg.block_size);
|
|
||||||
emu->cfg.block_count = lfs_fromle32(emu->cfg.block_count);
|
|
||||||
|
|
||||||
emu->stats.read_count = lfs_fromle32(emu->stats.read_count);
|
|
||||||
emu->stats.prog_count = lfs_fromle32(emu->stats.prog_count);
|
|
||||||
emu->stats.erase_count = lfs_fromle32(emu->stats.erase_count);
|
|
||||||
|
|
||||||
for (unsigned i = 0; i < sizeof(emu->history.blocks) /
|
|
||||||
sizeof(emu->history.blocks[0]); i++) {
|
|
||||||
emu->history.blocks[i] = lfs_fromle32(emu->history.blocks[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Block device emulated on existing filesystem
|
// Block device emulated on existing filesystem
|
||||||
int lfs_emubd_create(const struct lfs_config *cfg, const char *path) {
|
int lfs_emubd_create(const struct lfs_config *cfg, const char *path) {
|
||||||
LFS_TRACE("lfs_emubd_create(%p {.context=%p, "
|
|
||||||
".read=%p, .prog=%p, .erase=%p, .sync=%p, "
|
|
||||||
".read_size=%"PRIu32", .prog_size=%"PRIu32", "
|
|
||||||
".block_size=%"PRIu32", .block_count=%"PRIu32"}, \"%s\")",
|
|
||||||
(void*)cfg, cfg->context,
|
|
||||||
(void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog,
|
|
||||||
(void*)(uintptr_t)cfg->erase, (void*)(uintptr_t)cfg->sync,
|
|
||||||
cfg->read_size, cfg->prog_size, cfg->block_size, cfg->block_count,
|
|
||||||
path);
|
|
||||||
lfs_emubd_t *emu = cfg->context;
|
lfs_emubd_t *emu = cfg->context;
|
||||||
emu->cfg.read_size = cfg->read_size;
|
emu->cfg.read_size = cfg->read_size;
|
||||||
emu->cfg.prog_size = cfg->prog_size;
|
emu->cfg.prog_size = cfg->prog_size;
|
||||||
@@ -73,9 +30,7 @@ int lfs_emubd_create(const struct lfs_config *cfg, const char *path) {
|
|||||||
size_t pathlen = strlen(path);
|
size_t pathlen = strlen(path);
|
||||||
emu->path = malloc(pathlen + 1 + LFS_NAME_MAX + 1);
|
emu->path = malloc(pathlen + 1 + LFS_NAME_MAX + 1);
|
||||||
if (!emu->path) {
|
if (!emu->path) {
|
||||||
int err = -ENOMEM;
|
return -ENOMEM;
|
||||||
LFS_TRACE("lfs_emubd_create -> %"PRId32, err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
strcpy(emu->path, path);
|
strcpy(emu->path, path);
|
||||||
@@ -86,72 +41,38 @@ int lfs_emubd_create(const struct lfs_config *cfg, const char *path) {
|
|||||||
// Create directory if it doesn't exist
|
// Create directory if it doesn't exist
|
||||||
int err = mkdir(path, 0777);
|
int err = mkdir(path, 0777);
|
||||||
if (err && errno != EEXIST) {
|
if (err && errno != EEXIST) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_create -> %"PRId32, err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load stats to continue incrementing
|
// Load stats to continue incrementing
|
||||||
snprintf(emu->child, LFS_NAME_MAX, ".stats");
|
snprintf(emu->child, LFS_NAME_MAX, "stats");
|
||||||
FILE *f = fopen(emu->path, "r");
|
FILE *f = fopen(emu->path, "r");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
memset(&emu->stats, LFS_EMUBD_ERASE_VALUE, sizeof(emu->stats));
|
return -errno;
|
||||||
} else {
|
|
||||||
size_t res = fread(&emu->stats, sizeof(emu->stats), 1, f);
|
|
||||||
lfs_emubd_fromle32(emu);
|
|
||||||
if (res < 1) {
|
|
||||||
err = -errno;
|
|
||||||
LFS_TRACE("lfs_emubd_create -> %"PRId32, err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
err = fclose(f);
|
|
||||||
if (err) {
|
|
||||||
err = -errno;
|
|
||||||
LFS_TRACE("lfs_emubd_create -> %"PRId32, err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load history
|
size_t res = fread(&emu->stats, sizeof(emu->stats), 1, f);
|
||||||
snprintf(emu->child, LFS_NAME_MAX, ".history");
|
if (res < 1) {
|
||||||
f = fopen(emu->path, "r");
|
return -errno;
|
||||||
if (!f) {
|
}
|
||||||
memset(&emu->history, 0, sizeof(emu->history));
|
|
||||||
} else {
|
err = fclose(f);
|
||||||
size_t res = fread(&emu->history, sizeof(emu->history), 1, f);
|
if (err) {
|
||||||
lfs_emubd_fromle32(emu);
|
return -errno;
|
||||||
if (res < 1) {
|
|
||||||
err = -errno;
|
|
||||||
LFS_TRACE("lfs_emubd_create -> %"PRId32, err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
err = fclose(f);
|
|
||||||
if (err) {
|
|
||||||
err = -errno;
|
|
||||||
LFS_TRACE("lfs_emubd_create -> %"PRId32, err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LFS_TRACE("lfs_emubd_create -> %"PRId32, 0);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void lfs_emubd_destroy(const struct lfs_config *cfg) {
|
void lfs_emubd_destroy(const struct lfs_config *cfg) {
|
||||||
LFS_TRACE("lfs_emubd_destroy(%p)", (void*)cfg);
|
|
||||||
lfs_emubd_sync(cfg);
|
lfs_emubd_sync(cfg);
|
||||||
|
|
||||||
lfs_emubd_t *emu = cfg->context;
|
lfs_emubd_t *emu = cfg->context;
|
||||||
free(emu->path);
|
free(emu->path);
|
||||||
LFS_TRACE("lfs_emubd_destroy -> %s", "void");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int lfs_emubd_read(const struct lfs_config *cfg, lfs_block_t block,
|
int lfs_emubd_read(const struct lfs_config *cfg, lfs_block_t block,
|
||||||
lfs_off_t off, void *buffer, lfs_size_t size) {
|
lfs_off_t off, void *buffer, lfs_size_t size) {
|
||||||
LFS_TRACE("lfs_emubd_read(%p, 0x%"PRIx32", %"PRIu32", %p, %"PRIu32")",
|
|
||||||
(void*)cfg, block, off, buffer, size);
|
|
||||||
lfs_emubd_t *emu = cfg->context;
|
lfs_emubd_t *emu = cfg->context;
|
||||||
uint8_t *data = buffer;
|
uint8_t *data = buffer;
|
||||||
|
|
||||||
@@ -164,47 +85,36 @@ int lfs_emubd_read(const struct lfs_config *cfg, lfs_block_t block,
|
|||||||
memset(data, 0, size);
|
memset(data, 0, size);
|
||||||
|
|
||||||
// Read data
|
// Read data
|
||||||
snprintf(emu->child, LFS_NAME_MAX, "%" PRIx32, block);
|
snprintf(emu->child, LFS_NAME_MAX, "%x", block);
|
||||||
|
|
||||||
FILE *f = fopen(emu->path, "rb");
|
FILE *f = fopen(emu->path, "rb");
|
||||||
if (!f && errno != ENOENT) {
|
if (!f && errno != ENOENT) {
|
||||||
int err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_read -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (f) {
|
if (f) {
|
||||||
int err = fseek(f, off, SEEK_SET);
|
int err = fseek(f, off, SEEK_SET);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_read -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t res = fread(data, 1, size, f);
|
size_t res = fread(data, 1, size, f);
|
||||||
if (res < size && !feof(f)) {
|
if (res < size && !feof(f)) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_read -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
err = fclose(f);
|
err = fclose(f);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_read -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
emu->stats.read_count += size;
|
emu->stats.read_count += 1;
|
||||||
LFS_TRACE("lfs_emubd_read -> %d", 0);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lfs_emubd_prog(const struct lfs_config *cfg, lfs_block_t block,
|
int lfs_emubd_prog(const struct lfs_config *cfg, lfs_block_t block,
|
||||||
lfs_off_t off, const void *buffer, lfs_size_t size) {
|
lfs_off_t off, const void *buffer, lfs_size_t size) {
|
||||||
LFS_TRACE("lfs_emubd_prog(%p, 0x%"PRIx32", %"PRIu32", %p, %"PRIu32")",
|
|
||||||
(void*)cfg, block, off, buffer, size);
|
|
||||||
lfs_emubd_t *emu = cfg->context;
|
lfs_emubd_t *emu = cfg->context;
|
||||||
const uint8_t *data = buffer;
|
const uint8_t *data = buffer;
|
||||||
|
|
||||||
@@ -214,13 +124,11 @@ int lfs_emubd_prog(const struct lfs_config *cfg, lfs_block_t block,
|
|||||||
assert(block < cfg->block_count);
|
assert(block < cfg->block_count);
|
||||||
|
|
||||||
// Program data
|
// Program data
|
||||||
snprintf(emu->child, LFS_NAME_MAX, "%" PRIx32, block);
|
snprintf(emu->child, LFS_NAME_MAX, "%x", block);
|
||||||
|
|
||||||
FILE *f = fopen(emu->path, "r+b");
|
FILE *f = fopen(emu->path, "r+b");
|
||||||
if (!f) {
|
if (!f && errno != ENOENT) {
|
||||||
int err = (errno == EACCES) ? 0 : -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_prog -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check that file was erased
|
// Check that file was erased
|
||||||
@@ -228,176 +136,107 @@ int lfs_emubd_prog(const struct lfs_config *cfg, lfs_block_t block,
|
|||||||
|
|
||||||
int err = fseek(f, off, SEEK_SET);
|
int err = fseek(f, off, SEEK_SET);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_prog -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t res = fwrite(data, 1, size, f);
|
size_t res = fwrite(data, 1, size, f);
|
||||||
if (res < size) {
|
if (res < size) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_prog -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
err = fseek(f, off, SEEK_SET);
|
err = fseek(f, off, SEEK_SET);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_prog -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t dat;
|
uint8_t dat;
|
||||||
res = fread(&dat, 1, 1, f);
|
res = fread(&dat, 1, 1, f);
|
||||||
if (res < 1) {
|
if (res < 1) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_prog -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
err = fclose(f);
|
err = fclose(f);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_prog -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// update history and stats
|
emu->stats.prog_count += 1;
|
||||||
if (block != emu->history.blocks[0]) {
|
|
||||||
memmove(&emu->history.blocks[1], &emu->history.blocks[0],
|
|
||||||
sizeof(emu->history) - sizeof(emu->history.blocks[0]));
|
|
||||||
emu->history.blocks[0] = block;
|
|
||||||
}
|
|
||||||
|
|
||||||
emu->stats.prog_count += size;
|
|
||||||
LFS_TRACE("lfs_emubd_prog -> %d", 0);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lfs_emubd_erase(const struct lfs_config *cfg, lfs_block_t block) {
|
int lfs_emubd_erase(const struct lfs_config *cfg, lfs_block_t block) {
|
||||||
LFS_TRACE("lfs_emubd_erase(%p, 0x%"PRIx32")", (void*)cfg, block);
|
|
||||||
lfs_emubd_t *emu = cfg->context;
|
lfs_emubd_t *emu = cfg->context;
|
||||||
|
|
||||||
// Check if erase is valid
|
// Check if erase is valid
|
||||||
assert(block < cfg->block_count);
|
assert(block < cfg->block_count);
|
||||||
|
|
||||||
// Erase the block
|
// Erase the block
|
||||||
snprintf(emu->child, LFS_NAME_MAX, "%" PRIx32, block);
|
snprintf(emu->child, LFS_NAME_MAX, "%x", block);
|
||||||
struct stat st;
|
struct stat st;
|
||||||
int err = stat(emu->path, &st);
|
int err = stat(emu->path, &st);
|
||||||
if (err && errno != ENOENT) {
|
if (err && errno != ENOENT) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_erase -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!err && S_ISREG(st.st_mode) && (S_IWUSR & st.st_mode)) {
|
if (!err && S_ISREG(st.st_mode)) {
|
||||||
err = unlink(emu->path);
|
int err = unlink(emu->path);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_erase -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (err || (S_ISREG(st.st_mode) && (S_IWUSR & st.st_mode))) {
|
if (err || S_ISREG(st.st_mode)) {
|
||||||
FILE *f = fopen(emu->path, "w");
|
FILE *f = fopen(emu->path, "w");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_erase -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
err = fclose(f);
|
err = fclose(f);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_erase -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
emu->stats.erase_count += cfg->block_size;
|
emu->stats.erase_count += 1;
|
||||||
LFS_TRACE("lfs_emubd_erase -> %d", 0);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lfs_emubd_sync(const struct lfs_config *cfg) {
|
int lfs_emubd_sync(const struct lfs_config *cfg) {
|
||||||
LFS_TRACE("lfs_emubd_sync(%p)", (void*)cfg);
|
|
||||||
lfs_emubd_t *emu = cfg->context;
|
lfs_emubd_t *emu = cfg->context;
|
||||||
|
|
||||||
// Just write out info/stats for later lookup
|
// Just write out info/stats for later lookup
|
||||||
snprintf(emu->child, LFS_NAME_MAX, ".config");
|
snprintf(emu->child, LFS_NAME_MAX, "config");
|
||||||
FILE *f = fopen(emu->path, "w");
|
FILE *f = fopen(emu->path, "w");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
int err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_emubd_tole32(emu);
|
|
||||||
size_t res = fwrite(&emu->cfg, sizeof(emu->cfg), 1, f);
|
size_t res = fwrite(&emu->cfg, sizeof(emu->cfg), 1, f);
|
||||||
lfs_emubd_fromle32(emu);
|
|
||||||
if (res < 1) {
|
if (res < 1) {
|
||||||
int err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int err = fclose(f);
|
int err = fclose(f);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
snprintf(emu->child, LFS_NAME_MAX, ".stats");
|
snprintf(emu->child, LFS_NAME_MAX, "stats");
|
||||||
f = fopen(emu->path, "w");
|
f = fopen(emu->path, "w");
|
||||||
if (!f) {
|
if (!f) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_emubd_tole32(emu);
|
|
||||||
res = fwrite(&emu->stats, sizeof(emu->stats), 1, f);
|
res = fwrite(&emu->stats, sizeof(emu->stats), 1, f);
|
||||||
lfs_emubd_fromle32(emu);
|
|
||||||
if (res < 1) {
|
if (res < 1) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
err = fclose(f);
|
err = fclose(f);
|
||||||
if (err) {
|
if (err) {
|
||||||
err = -errno;
|
return -errno;
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
snprintf(emu->child, LFS_NAME_MAX, ".history");
|
|
||||||
f = fopen(emu->path, "w");
|
|
||||||
if (!f) {
|
|
||||||
err = -errno;
|
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_emubd_tole32(emu);
|
|
||||||
res = fwrite(&emu->history, sizeof(emu->history), 1, f);
|
|
||||||
lfs_emubd_fromle32(emu);
|
|
||||||
if (res < 1) {
|
|
||||||
err = -errno;
|
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
err = fclose(f);
|
|
||||||
if (err) {
|
|
||||||
err = -errno;
|
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
LFS_TRACE("lfs_emubd_sync -> %d", 0);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* Block device emulated on standard files
|
* Block device emulated on standard files
|
||||||
*
|
*
|
||||||
* Copyright (c) 2017, Arm Limited. All rights reserved.
|
* Copyright (c) 2017 Christopher Haster
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* Distributed under the Apache 2.0 license
|
||||||
*/
|
*/
|
||||||
#ifndef LFS_EMUBD_H
|
#ifndef LFS_EMUBD_H
|
||||||
#define LFS_EMUBD_H
|
#define LFS_EMUBD_H
|
||||||
@@ -10,15 +10,22 @@
|
|||||||
#include "lfs.h"
|
#include "lfs.h"
|
||||||
#include "lfs_util.h"
|
#include "lfs_util.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
// Config options
|
// Config options
|
||||||
#ifndef LFS_EMUBD_ERASE_VALUE
|
#ifndef LFS_EMUBD_READ_SIZE
|
||||||
#define LFS_EMUBD_ERASE_VALUE 0x00
|
#define LFS_EMUBD_READ_SIZE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef LFS_EMUBD_PROG_SIZE
|
||||||
|
#define LFS_EMUBD_PROG_SIZE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef LFS_EMUBD_ERASE_SIZE
|
||||||
|
#define LFS_EMUBD_ERASE_SIZE 512
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef LFS_EMUBD_TOTAL_SIZE
|
||||||
|
#define LFS_EMUBD_TOTAL_SIZE 524288
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@@ -33,10 +40,6 @@ typedef struct lfs_emubd {
|
|||||||
uint64_t erase_count;
|
uint64_t erase_count;
|
||||||
} stats;
|
} stats;
|
||||||
|
|
||||||
struct {
|
|
||||||
lfs_block_t blocks[4];
|
|
||||||
} history;
|
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
uint32_t read_size;
|
uint32_t read_size;
|
||||||
uint32_t prog_size;
|
uint32_t prog_size;
|
||||||
@@ -72,8 +75,4 @@ int lfs_emubd_erase(const struct lfs_config *cfg, lfs_block_t block);
|
|||||||
int lfs_emubd_sync(const struct lfs_config *cfg);
|
int lfs_emubd_sync(const struct lfs_config *cfg);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
} /* extern "C" */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
477
lfs.h
477
lfs.h
@@ -1,35 +1,14 @@
|
|||||||
/*
|
/*
|
||||||
* The little filesystem
|
* The little filesystem
|
||||||
*
|
*
|
||||||
* Copyright (c) 2017, Arm Limited. All rights reserved.
|
* Copyright (c) 2017 Christopher Haster
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* Distributed under the Apache 2.0 license
|
||||||
*/
|
*/
|
||||||
#ifndef LFS_H
|
#ifndef LFS_H
|
||||||
#define LFS_H
|
#define LFS_H
|
||||||
|
|
||||||
#include "lfs_util.h"
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/// Version info ///
|
|
||||||
|
|
||||||
// Software library version
|
|
||||||
// Major (top-nibble), incremented on backwards incompatible changes
|
|
||||||
// Minor (bottom-nibble), incremented on feature additions
|
|
||||||
#define LFS_VERSION 0x00020001
|
|
||||||
#define LFS_VERSION_MAJOR (0xffff & (LFS_VERSION >> 16))
|
|
||||||
#define LFS_VERSION_MINOR (0xffff & (LFS_VERSION >> 0))
|
|
||||||
|
|
||||||
// Version of On-disk data structures
|
|
||||||
// Major (top-nibble), incremented on backwards incompatible changes
|
|
||||||
// Minor (bottom-nibble), incremented on feature additions
|
|
||||||
#define LFS_DISK_VERSION 0x00020000
|
|
||||||
#define LFS_DISK_VERSION_MAJOR (0xffff & (LFS_DISK_VERSION >> 16))
|
|
||||||
#define LFS_DISK_VERSION_MINOR (0xffff & (LFS_DISK_VERSION >> 0))
|
|
||||||
|
|
||||||
|
|
||||||
/// Definitions ///
|
/// Definitions ///
|
||||||
@@ -43,80 +22,48 @@ typedef int32_t lfs_soff_t;
|
|||||||
|
|
||||||
typedef uint32_t lfs_block_t;
|
typedef uint32_t lfs_block_t;
|
||||||
|
|
||||||
// Maximum name size in bytes, may be redefined to reduce the size of the
|
// Max name size in bytes
|
||||||
// info struct. Limited to <= 1022. Stored in superblock and must be
|
|
||||||
// respected by other littlefs drivers.
|
|
||||||
#ifndef LFS_NAME_MAX
|
#ifndef LFS_NAME_MAX
|
||||||
#define LFS_NAME_MAX 255
|
#define LFS_NAME_MAX 255
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Maximum size of a file in bytes, may be redefined to limit to support other
|
// Possible error codes, these are negative to allow
|
||||||
// drivers. Limited on disk to <= 4294967296. However, above 2147483647 the
|
// valid positive return values
|
||||||
// functions lfs_file_seek, lfs_file_size, and lfs_file_tell will return
|
enum lfs_error {
|
||||||
// incorrect values due to using signed integers. Stored in superblock and
|
LFS_ERR_OK = 0, // No error
|
||||||
// must be respected by other littlefs drivers.
|
LFS_ERR_IO = -5, // Error during device operation
|
||||||
#ifndef LFS_FILE_MAX
|
LFS_ERR_CORRUPT = -52, // Corrupted
|
||||||
#define LFS_FILE_MAX 2147483647
|
LFS_ERR_NOENT = -2, // No directory entry
|
||||||
#endif
|
LFS_ERR_EXISTS = -17, // Entry already exists
|
||||||
|
LFS_ERR_NOTDIR = -20, // Entry is not a dir
|
||||||
// Maximum size of custom attributes in bytes, may be redefined, but there is
|
LFS_ERR_ISDIR = -21, // Entry is a dir
|
||||||
// no real benefit to using a smaller LFS_ATTR_MAX. Limited to <= 1022.
|
LFS_ERR_INVAL = -22, // Invalid parameter
|
||||||
#ifndef LFS_ATTR_MAX
|
LFS_ERR_NOSPC = -28, // No space left on device
|
||||||
#define LFS_ATTR_MAX 1022
|
LFS_ERR_NOMEM = -12, // No more memory available
|
||||||
#endif
|
};
|
||||||
|
|
||||||
|
|
||||||
// File types
|
// File types
|
||||||
enum lfs_type {
|
enum lfs_type {
|
||||||
// file types
|
LFS_TYPE_REG = 0x11,
|
||||||
LFS_TYPE_REG = 0x001,
|
LFS_TYPE_DIR = 0x22,
|
||||||
LFS_TYPE_DIR = 0x002,
|
LFS_TYPE_SUPERBLOCK = 0x2e,
|
||||||
|
|
||||||
// internally used types
|
|
||||||
LFS_TYPE_SPLICE = 0x400,
|
|
||||||
LFS_TYPE_NAME = 0x000,
|
|
||||||
LFS_TYPE_STRUCT = 0x200,
|
|
||||||
LFS_TYPE_USERATTR = 0x300,
|
|
||||||
LFS_TYPE_FROM = 0x100,
|
|
||||||
LFS_TYPE_TAIL = 0x600,
|
|
||||||
LFS_TYPE_GLOBALS = 0x700,
|
|
||||||
LFS_TYPE_CRC = 0x500,
|
|
||||||
|
|
||||||
// internally used type specializations
|
|
||||||
LFS_TYPE_CREATE = 0x401,
|
|
||||||
LFS_TYPE_DELETE = 0x4ff,
|
|
||||||
LFS_TYPE_SUPERBLOCK = 0x0ff,
|
|
||||||
LFS_TYPE_DIRSTRUCT = 0x200,
|
|
||||||
LFS_TYPE_CTZSTRUCT = 0x202,
|
|
||||||
LFS_TYPE_INLINESTRUCT = 0x201,
|
|
||||||
LFS_TYPE_SOFTTAIL = 0x600,
|
|
||||||
LFS_TYPE_HARDTAIL = 0x601,
|
|
||||||
LFS_TYPE_MOVESTATE = 0x7ff,
|
|
||||||
|
|
||||||
// internal chip sources
|
|
||||||
LFS_FROM_NOOP = 0x000,
|
|
||||||
LFS_FROM_MOVE = 0x101,
|
|
||||||
LFS_FROM_USERATTRS = 0x102,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// File open flags
|
// File open flags
|
||||||
enum lfs_open_flags {
|
enum lfs_open_flags {
|
||||||
// open flags
|
// open flags
|
||||||
LFS_O_RDONLY = 1, // Open a file as read only
|
LFS_O_RDONLY = 1, // Open a file as read only
|
||||||
LFS_O_WRONLY = 2, // Open a file as write only
|
LFS_O_WRONLY = 2, // Open a file as write only
|
||||||
LFS_O_RDWR = 3, // Open a file as read and write
|
LFS_O_RDWR = 3, // Open a file as read and write
|
||||||
LFS_O_CREAT = 0x0100, // Create a file if it does not exist
|
LFS_O_CREAT = 0x0100, // Create a file if it does not exist
|
||||||
LFS_O_EXCL = 0x0200, // Fail if a file already exists
|
LFS_O_EXCL = 0x0200, // Fail if a file already exists
|
||||||
LFS_O_TRUNC = 0x0400, // Truncate the existing file to zero size
|
LFS_O_TRUNC = 0x0400, // Truncate the existing file to zero size
|
||||||
LFS_O_APPEND = 0x0800, // Move to end of file on every write
|
LFS_O_APPEND = 0x0800, // Move to end of file on every write
|
||||||
|
|
||||||
// internally used flags
|
// internally used flags
|
||||||
LFS_F_DIRTY = 0x010000, // File does not match storage
|
LFS_F_DIRTY = 0x10000, // File does not match storage
|
||||||
LFS_F_WRITING = 0x020000, // File has been written since last flush
|
LFS_F_WRITING = 0x20000, // File has been written since last flush
|
||||||
LFS_F_READING = 0x040000, // File has been read since last flush
|
LFS_F_READING = 0x40000, // File has been read since last flush
|
||||||
LFS_F_ERRED = 0x080000, // An error occured during write
|
|
||||||
LFS_F_INLINE = 0x100000, // Currently inlined in directory entry
|
|
||||||
LFS_F_OPENED = 0x200000, // File has been opened
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// File seek flags
|
// File seek flags
|
||||||
@@ -140,236 +87,164 @@ struct lfs_config {
|
|||||||
|
|
||||||
// Program a region in a block. The block must have previously
|
// Program a region in a block. The block must have previously
|
||||||
// been erased. Negative error codes are propogated to the user.
|
// been erased. Negative error codes are propogated to the user.
|
||||||
// May return LFS_ERR_CORRUPT if the block should be considered bad.
|
// The prog function must return LFS_ERR_CORRUPT if the block should
|
||||||
|
// be considered bad.
|
||||||
int (*prog)(const struct lfs_config *c, lfs_block_t block,
|
int (*prog)(const struct lfs_config *c, lfs_block_t block,
|
||||||
lfs_off_t off, const void *buffer, lfs_size_t size);
|
lfs_off_t off, const void *buffer, lfs_size_t size);
|
||||||
|
|
||||||
// Erase a block. A block must be erased before being programmed.
|
// Erase a block. A block must be erased before being programmed.
|
||||||
// The state of an erased block is undefined. Negative error codes
|
// The state of an erased block is undefined. Negative error codes
|
||||||
// are propogated to the user.
|
// are propogated to the user.
|
||||||
// May return LFS_ERR_CORRUPT if the block should be considered bad.
|
|
||||||
int (*erase)(const struct lfs_config *c, lfs_block_t block);
|
int (*erase)(const struct lfs_config *c, lfs_block_t block);
|
||||||
|
|
||||||
// Sync the state of the underlying block device. Negative error codes
|
// Sync the state of the underlying block device. Negative error codes
|
||||||
// are propogated to the user.
|
// are propogated to the user.
|
||||||
int (*sync)(const struct lfs_config *c);
|
int (*sync)(const struct lfs_config *c);
|
||||||
|
|
||||||
// Minimum size of a block read. All read operations will be a
|
// Minimum size of a block read. This determines the size of read buffers.
|
||||||
// multiple of this value.
|
// This may be larger than the physical read size to improve performance
|
||||||
|
// by caching more of the block device.
|
||||||
lfs_size_t read_size;
|
lfs_size_t read_size;
|
||||||
|
|
||||||
// Minimum size of a block program. All program operations will be a
|
// Minimum size of a block program. This determines the size of program
|
||||||
// multiple of this value.
|
// buffers. This may be larger than the physical program size to improve
|
||||||
|
// performance by caching more of the block device.
|
||||||
lfs_size_t prog_size;
|
lfs_size_t prog_size;
|
||||||
|
|
||||||
// Size of an erasable block. This does not impact ram consumption and
|
// Size of an erasable block. This does not impact ram consumption and
|
||||||
// may be larger than the physical erase size. However, non-inlined files
|
// may be larger than the physical erase size. However, this should be
|
||||||
// take up at minimum one block. Must be a multiple of the read
|
// kept small as each file currently takes up an entire block .
|
||||||
// and program sizes.
|
|
||||||
lfs_size_t block_size;
|
lfs_size_t block_size;
|
||||||
|
|
||||||
// Number of erasable blocks on the device.
|
// Number of erasable blocks on the device.
|
||||||
lfs_size_t block_count;
|
lfs_size_t block_count;
|
||||||
|
|
||||||
// Number of erase cycles before littlefs evicts metadata logs and moves
|
// Number of blocks to lookahead during block allocation. A larger
|
||||||
// the metadata to another block. Suggested values are in the
|
// lookahead reduces the number of passes required to allocate a block.
|
||||||
// range 100-1000, with large values having better performance at the cost
|
// The lookahead buffer requires only 1 bit per block so it can be quite
|
||||||
// of less consistent wear distribution.
|
// large with little ram impact. Should be a multiple of 32.
|
||||||
//
|
lfs_size_t lookahead;
|
||||||
// Set to -1 to disable block-level wear-leveling.
|
|
||||||
int32_t block_cycles;
|
|
||||||
|
|
||||||
// Size of block caches. Each cache buffers a portion of a block in RAM.
|
// Optional, statically allocated read buffer. Must be read sized.
|
||||||
// The littlefs needs a read cache, a program cache, and one additional
|
|
||||||
// cache per file. Larger caches can improve performance by storing more
|
|
||||||
// data and reducing the number of disk accesses. Must be a multiple of
|
|
||||||
// the read and program sizes, and a factor of the block size.
|
|
||||||
lfs_size_t cache_size;
|
|
||||||
|
|
||||||
// Size of the lookahead buffer in bytes. A larger lookahead buffer
|
|
||||||
// increases the number of blocks found during an allocation pass. The
|
|
||||||
// lookahead buffer is stored as a compact bitmap, so each byte of RAM
|
|
||||||
// can track 8 blocks. Must be a multiple of 8.
|
|
||||||
lfs_size_t lookahead_size;
|
|
||||||
|
|
||||||
// Optional statically allocated read buffer. Must be cache_size.
|
|
||||||
// By default lfs_malloc is used to allocate this buffer.
|
|
||||||
void *read_buffer;
|
void *read_buffer;
|
||||||
|
|
||||||
// Optional statically allocated program buffer. Must be cache_size.
|
// Optional, statically allocated program buffer. Must be program sized.
|
||||||
// By default lfs_malloc is used to allocate this buffer.
|
|
||||||
void *prog_buffer;
|
void *prog_buffer;
|
||||||
|
|
||||||
// Optional statically allocated lookahead buffer. Must be lookahead_size
|
// Optional, statically allocated lookahead buffer. Must be 1 bit per
|
||||||
// and aligned to a 32-bit boundary. By default lfs_malloc is used to
|
// lookahead block.
|
||||||
// allocate this buffer.
|
|
||||||
void *lookahead_buffer;
|
void *lookahead_buffer;
|
||||||
|
|
||||||
// Optional upper limit on length of file names in bytes. No downside for
|
// Optional, statically allocated buffer for files. Must be program sized.
|
||||||
// larger names except the size of the info struct which is controlled by
|
// If enabled, only one file may be opened at a time.
|
||||||
// the LFS_NAME_MAX define. Defaults to LFS_NAME_MAX when zero. Stored in
|
void *file_buffer;
|
||||||
// superblock and must be respected by other littlefs drivers.
|
|
||||||
lfs_size_t name_max;
|
|
||||||
|
|
||||||
// Optional upper limit on files in bytes. No downside for larger files
|
|
||||||
// but must be <= LFS_FILE_MAX. Defaults to LFS_FILE_MAX when zero. Stored
|
|
||||||
// in superblock and must be respected by other littlefs drivers.
|
|
||||||
lfs_size_t file_max;
|
|
||||||
|
|
||||||
// Optional upper limit on custom attributes in bytes. No downside for
|
|
||||||
// larger attributes size but must be <= LFS_ATTR_MAX. Defaults to
|
|
||||||
// LFS_ATTR_MAX when zero.
|
|
||||||
lfs_size_t attr_max;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// File info structure
|
// File info structure
|
||||||
struct lfs_info {
|
struct lfs_info {
|
||||||
// Type of the file, either LFS_TYPE_REG or LFS_TYPE_DIR
|
// Type of the file, either LFS_TYPE_REG or LFS_TYPE_DIR
|
||||||
uint8_t type;
|
uint8_t type;
|
||||||
|
|
||||||
// Size of the file, only valid for REG files. Limited to 32-bits.
|
// Size of the file, only valid for REG files
|
||||||
lfs_size_t size;
|
lfs_size_t size;
|
||||||
|
|
||||||
// Name of the file stored as a null-terminated string. Limited to
|
// Name of the file stored as a null-terminated string
|
||||||
// LFS_NAME_MAX+1, which can be changed by redefining LFS_NAME_MAX to
|
|
||||||
// reduce RAM. LFS_NAME_MAX is stored in superblock and must be
|
|
||||||
// respected by other littlefs drivers.
|
|
||||||
char name[LFS_NAME_MAX+1];
|
char name[LFS_NAME_MAX+1];
|
||||||
};
|
};
|
||||||
|
|
||||||
// Custom attribute structure, used to describe custom attributes
|
|
||||||
// committed atomically during file writes.
|
|
||||||
struct lfs_attr {
|
|
||||||
// 8-bit type of attribute, provided by user and used to
|
|
||||||
// identify the attribute
|
|
||||||
uint8_t type;
|
|
||||||
|
|
||||||
// Pointer to buffer containing the attribute
|
/// littlefs data structures ///
|
||||||
void *buffer;
|
typedef struct lfs_entry {
|
||||||
|
lfs_off_t off;
|
||||||
|
|
||||||
// Size of attribute in bytes, limited to LFS_ATTR_MAX
|
struct lfs_disk_entry {
|
||||||
lfs_size_t size;
|
uint8_t type;
|
||||||
};
|
uint8_t elen;
|
||||||
|
uint8_t alen;
|
||||||
|
uint8_t nlen;
|
||||||
|
union {
|
||||||
|
struct {
|
||||||
|
lfs_block_t head;
|
||||||
|
lfs_size_t size;
|
||||||
|
} file;
|
||||||
|
lfs_block_t dir[2];
|
||||||
|
} u;
|
||||||
|
} d;
|
||||||
|
} lfs_entry_t;
|
||||||
|
|
||||||
// Optional configuration provided during lfs_file_opencfg
|
|
||||||
struct lfs_file_config {
|
|
||||||
// Optional statically allocated file buffer. Must be cache_size.
|
|
||||||
// By default lfs_malloc is used to allocate this buffer.
|
|
||||||
void *buffer;
|
|
||||||
|
|
||||||
// Optional list of custom attributes related to the file. If the file
|
|
||||||
// is opened with read access, these attributes will be read from disk
|
|
||||||
// during the open call. If the file is opened with write access, the
|
|
||||||
// attributes will be written to disk every file sync or close. This
|
|
||||||
// write occurs atomically with update to the file's contents.
|
|
||||||
//
|
|
||||||
// Custom attributes are uniquely identified by an 8-bit type and limited
|
|
||||||
// to LFS_ATTR_MAX bytes. When read, if the stored attribute is smaller
|
|
||||||
// than the buffer, it will be padded with zeros. If the stored attribute
|
|
||||||
// is larger, then it will be silently truncated. If the attribute is not
|
|
||||||
// found, it will be created implicitly.
|
|
||||||
struct lfs_attr *attrs;
|
|
||||||
|
|
||||||
// Number of custom attributes in the list
|
|
||||||
lfs_size_t attr_count;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/// internal littlefs data structures ///
|
|
||||||
typedef struct lfs_cache {
|
typedef struct lfs_cache {
|
||||||
lfs_block_t block;
|
lfs_block_t block;
|
||||||
lfs_off_t off;
|
lfs_off_t off;
|
||||||
lfs_size_t size;
|
|
||||||
uint8_t *buffer;
|
uint8_t *buffer;
|
||||||
} lfs_cache_t;
|
} lfs_cache_t;
|
||||||
|
|
||||||
typedef struct lfs_mdir {
|
|
||||||
lfs_block_t pair[2];
|
|
||||||
uint32_t rev;
|
|
||||||
lfs_off_t off;
|
|
||||||
uint32_t etag;
|
|
||||||
uint16_t count;
|
|
||||||
bool erased;
|
|
||||||
bool split;
|
|
||||||
lfs_block_t tail[2];
|
|
||||||
} lfs_mdir_t;
|
|
||||||
|
|
||||||
// littlefs directory type
|
|
||||||
typedef struct lfs_dir {
|
|
||||||
struct lfs_dir *next;
|
|
||||||
uint16_t id;
|
|
||||||
uint8_t type;
|
|
||||||
lfs_mdir_t m;
|
|
||||||
|
|
||||||
lfs_off_t pos;
|
|
||||||
lfs_block_t head[2];
|
|
||||||
} lfs_dir_t;
|
|
||||||
|
|
||||||
// littlefs file type
|
|
||||||
typedef struct lfs_file {
|
typedef struct lfs_file {
|
||||||
struct lfs_file *next;
|
struct lfs_file *next;
|
||||||
uint16_t id;
|
lfs_block_t pair[2];
|
||||||
uint8_t type;
|
lfs_off_t poff;
|
||||||
lfs_mdir_t m;
|
|
||||||
|
|
||||||
struct lfs_ctz {
|
lfs_block_t head;
|
||||||
lfs_block_t head;
|
lfs_size_t size;
|
||||||
lfs_size_t size;
|
|
||||||
} ctz;
|
|
||||||
|
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
lfs_off_t pos;
|
lfs_off_t pos;
|
||||||
lfs_block_t block;
|
lfs_block_t block;
|
||||||
lfs_off_t off;
|
lfs_off_t off;
|
||||||
lfs_cache_t cache;
|
lfs_cache_t cache;
|
||||||
|
|
||||||
const struct lfs_file_config *cfg;
|
|
||||||
} lfs_file_t;
|
} lfs_file_t;
|
||||||
|
|
||||||
|
typedef struct lfs_dir {
|
||||||
|
lfs_block_t pair[2];
|
||||||
|
lfs_off_t off;
|
||||||
|
|
||||||
|
lfs_block_t head[2];
|
||||||
|
lfs_off_t pos;
|
||||||
|
|
||||||
|
struct lfs_disk_dir {
|
||||||
|
uint32_t rev;
|
||||||
|
lfs_size_t size;
|
||||||
|
lfs_block_t tail[2];
|
||||||
|
} d;
|
||||||
|
} lfs_dir_t;
|
||||||
|
|
||||||
typedef struct lfs_superblock {
|
typedef struct lfs_superblock {
|
||||||
uint32_t version;
|
lfs_off_t off;
|
||||||
lfs_size_t block_size;
|
|
||||||
lfs_size_t block_count;
|
struct lfs_disk_superblock {
|
||||||
lfs_size_t name_max;
|
uint8_t type;
|
||||||
lfs_size_t file_max;
|
uint8_t elen;
|
||||||
lfs_size_t attr_max;
|
uint8_t alen;
|
||||||
|
uint8_t nlen;
|
||||||
|
lfs_block_t root[2];
|
||||||
|
uint32_t block_size;
|
||||||
|
uint32_t block_count;
|
||||||
|
uint32_t version;
|
||||||
|
char magic[8];
|
||||||
|
} d;
|
||||||
} lfs_superblock_t;
|
} lfs_superblock_t;
|
||||||
|
|
||||||
// The littlefs filesystem type
|
typedef struct lfs_free {
|
||||||
|
lfs_size_t lookahead;
|
||||||
|
lfs_block_t begin;
|
||||||
|
lfs_block_t end;
|
||||||
|
lfs_block_t off;
|
||||||
|
uint32_t *buffer;
|
||||||
|
} lfs_free_t;
|
||||||
|
|
||||||
|
// The littlefs type
|
||||||
typedef struct lfs {
|
typedef struct lfs {
|
||||||
|
const struct lfs_config *cfg;
|
||||||
|
|
||||||
|
lfs_block_t root[2];
|
||||||
|
lfs_file_t *files;
|
||||||
|
|
||||||
lfs_cache_t rcache;
|
lfs_cache_t rcache;
|
||||||
lfs_cache_t pcache;
|
lfs_cache_t pcache;
|
||||||
|
|
||||||
lfs_block_t root[2];
|
lfs_free_t free;
|
||||||
struct lfs_mlist {
|
uint8_t unstable;
|
||||||
struct lfs_mlist *next;
|
uint8_t sum;
|
||||||
uint16_t id;
|
|
||||||
uint8_t type;
|
|
||||||
lfs_mdir_t m;
|
|
||||||
} *mlist;
|
|
||||||
uint32_t seed;
|
|
||||||
|
|
||||||
struct lfs_gstate {
|
|
||||||
uint32_t tag;
|
|
||||||
lfs_block_t pair[2];
|
|
||||||
} gstate, gpending, gdelta;
|
|
||||||
|
|
||||||
struct lfs_free {
|
|
||||||
lfs_block_t off;
|
|
||||||
lfs_block_t size;
|
|
||||||
lfs_block_t i;
|
|
||||||
lfs_block_t ack;
|
|
||||||
uint32_t *buffer;
|
|
||||||
} free;
|
|
||||||
|
|
||||||
const struct lfs_config *cfg;
|
|
||||||
lfs_size_t name_max;
|
|
||||||
lfs_size_t file_max;
|
|
||||||
lfs_size_t attr_max;
|
|
||||||
|
|
||||||
#ifdef LFS_MIGRATE
|
|
||||||
struct lfs1 *lfs1;
|
|
||||||
#endif
|
|
||||||
} lfs_t;
|
} lfs_t;
|
||||||
|
|
||||||
|
|
||||||
@@ -378,8 +253,7 @@ typedef struct lfs {
|
|||||||
// Format a block device with the littlefs
|
// Format a block device with the littlefs
|
||||||
//
|
//
|
||||||
// Requires a littlefs object and config struct. This clobbers the littlefs
|
// Requires a littlefs object and config struct. This clobbers the littlefs
|
||||||
// object, and does not leave the filesystem mounted. The config struct must
|
// object, and does not leave the filesystem mounted.
|
||||||
// be zeroed for defaults and backwards compatibility.
|
|
||||||
//
|
//
|
||||||
// Returns a negative error code on failure.
|
// Returns a negative error code on failure.
|
||||||
int lfs_format(lfs_t *lfs, const struct lfs_config *config);
|
int lfs_format(lfs_t *lfs, const struct lfs_config *config);
|
||||||
@@ -388,8 +262,7 @@ int lfs_format(lfs_t *lfs, const struct lfs_config *config);
|
|||||||
//
|
//
|
||||||
// Requires a littlefs object and config struct. Multiple filesystems
|
// Requires a littlefs object and config struct. Multiple filesystems
|
||||||
// may be mounted simultaneously with multiple littlefs objects. Both
|
// may be mounted simultaneously with multiple littlefs objects. Both
|
||||||
// lfs and config must be allocated while mounted. The config struct must
|
// lfs and config must be allocated while mounted.
|
||||||
// be zeroed for defaults and backwards compatibility.
|
|
||||||
//
|
//
|
||||||
// Returns a negative error code on failure.
|
// Returns a negative error code on failure.
|
||||||
int lfs_mount(lfs_t *lfs, const struct lfs_config *config);
|
int lfs_mount(lfs_t *lfs, const struct lfs_config *config);
|
||||||
@@ -413,6 +286,10 @@ int lfs_remove(lfs_t *lfs, const char *path);
|
|||||||
// If the destination exists, it must match the source in type.
|
// If the destination exists, it must match the source in type.
|
||||||
// If the destination is a directory, the directory must be empty.
|
// If the destination is a directory, the directory must be empty.
|
||||||
//
|
//
|
||||||
|
// Note: If power loss occurs, it is possible that the file or directory
|
||||||
|
// will exist in both the oldpath and newpath simultaneously after the
|
||||||
|
// next mount.
|
||||||
|
//
|
||||||
// Returns a negative error code on failure.
|
// Returns a negative error code on failure.
|
||||||
int lfs_rename(lfs_t *lfs, const char *oldpath, const char *newpath);
|
int lfs_rename(lfs_t *lfs, const char *oldpath, const char *newpath);
|
||||||
|
|
||||||
@@ -422,64 +299,19 @@ int lfs_rename(lfs_t *lfs, const char *oldpath, const char *newpath);
|
|||||||
// Returns a negative error code on failure.
|
// Returns a negative error code on failure.
|
||||||
int lfs_stat(lfs_t *lfs, const char *path, struct lfs_info *info);
|
int lfs_stat(lfs_t *lfs, const char *path, struct lfs_info *info);
|
||||||
|
|
||||||
// Get a custom attribute
|
|
||||||
//
|
|
||||||
// Custom attributes are uniquely identified by an 8-bit type and limited
|
|
||||||
// to LFS_ATTR_MAX bytes. When read, if the stored attribute is smaller than
|
|
||||||
// the buffer, it will be padded with zeros. If the stored attribute is larger,
|
|
||||||
// then it will be silently truncated. If no attribute is found, the error
|
|
||||||
// LFS_ERR_NOATTR is returned and the buffer is filled with zeros.
|
|
||||||
//
|
|
||||||
// Returns the size of the attribute, or a negative error code on failure.
|
|
||||||
// Note, the returned size is the size of the attribute on disk, irrespective
|
|
||||||
// of the size of the buffer. This can be used to dynamically allocate a buffer
|
|
||||||
// or check for existance.
|
|
||||||
lfs_ssize_t lfs_getattr(lfs_t *lfs, const char *path,
|
|
||||||
uint8_t type, void *buffer, lfs_size_t size);
|
|
||||||
|
|
||||||
// Set custom attributes
|
|
||||||
//
|
|
||||||
// Custom attributes are uniquely identified by an 8-bit type and limited
|
|
||||||
// to LFS_ATTR_MAX bytes. If an attribute is not found, it will be
|
|
||||||
// implicitly created.
|
|
||||||
//
|
|
||||||
// Returns a negative error code on failure.
|
|
||||||
int lfs_setattr(lfs_t *lfs, const char *path,
|
|
||||||
uint8_t type, const void *buffer, lfs_size_t size);
|
|
||||||
|
|
||||||
// Removes a custom attribute
|
|
||||||
//
|
|
||||||
// If an attribute is not found, nothing happens.
|
|
||||||
//
|
|
||||||
// Returns a negative error code on failure.
|
|
||||||
int lfs_removeattr(lfs_t *lfs, const char *path, uint8_t type);
|
|
||||||
|
|
||||||
|
|
||||||
/// File operations ///
|
/// File operations ///
|
||||||
|
|
||||||
// Open a file
|
// Open a file
|
||||||
//
|
//
|
||||||
// The mode that the file is opened in is determined by the flags, which
|
// The mode that the file is opened in is determined
|
||||||
// are values from the enum lfs_open_flags that are bitwise-ored together.
|
// by the flags, which are values from the enum lfs_open_flags
|
||||||
|
// that are bitwise-ored together.
|
||||||
//
|
//
|
||||||
// Returns a negative error code on failure.
|
// Returns a negative error code on failure.
|
||||||
int lfs_file_open(lfs_t *lfs, lfs_file_t *file,
|
int lfs_file_open(lfs_t *lfs, lfs_file_t *file,
|
||||||
const char *path, int flags);
|
const char *path, int flags);
|
||||||
|
|
||||||
// Open a file with extra configuration
|
|
||||||
//
|
|
||||||
// The mode that the file is opened in is determined by the flags, which
|
|
||||||
// are values from the enum lfs_open_flags that are bitwise-ored together.
|
|
||||||
//
|
|
||||||
// The config struct provides additional config options per file as described
|
|
||||||
// above. The config struct must be allocated while the file is open, and the
|
|
||||||
// config struct must be zeroed for defaults and backwards compatibility.
|
|
||||||
//
|
|
||||||
// Returns a negative error code on failure.
|
|
||||||
int lfs_file_opencfg(lfs_t *lfs, lfs_file_t *file,
|
|
||||||
const char *path, int flags,
|
|
||||||
const struct lfs_file_config *config);
|
|
||||||
|
|
||||||
// Close a file
|
// Close a file
|
||||||
//
|
//
|
||||||
// Any pending writes are written out to storage as though
|
// Any pending writes are written out to storage as though
|
||||||
@@ -513,15 +345,10 @@ lfs_ssize_t lfs_file_write(lfs_t *lfs, lfs_file_t *file,
|
|||||||
// Change the position of the file
|
// Change the position of the file
|
||||||
//
|
//
|
||||||
// The change in position is determined by the offset and whence flag.
|
// The change in position is determined by the offset and whence flag.
|
||||||
// Returns the new position of the file, or a negative error code on failure.
|
// Returns the old position of the file, or a negative error code on failure.
|
||||||
lfs_soff_t lfs_file_seek(lfs_t *lfs, lfs_file_t *file,
|
lfs_soff_t lfs_file_seek(lfs_t *lfs, lfs_file_t *file,
|
||||||
lfs_soff_t off, int whence);
|
lfs_soff_t off, int whence);
|
||||||
|
|
||||||
// Truncates the size of the file to the specified size
|
|
||||||
//
|
|
||||||
// Returns a negative error code on failure.
|
|
||||||
int lfs_file_truncate(lfs_t *lfs, lfs_file_t *file, lfs_off_t size);
|
|
||||||
|
|
||||||
// Return the position of the file
|
// Return the position of the file
|
||||||
//
|
//
|
||||||
// Equivalent to lfs_file_seek(lfs, file, 0, LFS_SEEK_CUR)
|
// Equivalent to lfs_file_seek(lfs, file, 0, LFS_SEEK_CUR)
|
||||||
@@ -530,7 +357,7 @@ lfs_soff_t lfs_file_tell(lfs_t *lfs, lfs_file_t *file);
|
|||||||
|
|
||||||
// Change the position of the file to the beginning of the file
|
// Change the position of the file to the beginning of the file
|
||||||
//
|
//
|
||||||
// Equivalent to lfs_file_seek(lfs, file, 0, LFS_SEEK_SET)
|
// Equivalent to lfs_file_seek(lfs, file, 0, LFS_SEEK_CUR)
|
||||||
// Returns a negative error code on failure.
|
// Returns a negative error code on failure.
|
||||||
int lfs_file_rewind(lfs_t *lfs, lfs_file_t *file);
|
int lfs_file_rewind(lfs_t *lfs, lfs_file_t *file);
|
||||||
|
|
||||||
@@ -563,8 +390,7 @@ int lfs_dir_close(lfs_t *lfs, lfs_dir_t *dir);
|
|||||||
// Read an entry in the directory
|
// Read an entry in the directory
|
||||||
//
|
//
|
||||||
// Fills out the info structure, based on the specified file or directory.
|
// Fills out the info structure, based on the specified file or directory.
|
||||||
// Returns a positive value on success, 0 at the end of directory,
|
// Returns a negative error code on failure.
|
||||||
// or a negative error code on failure.
|
|
||||||
int lfs_dir_read(lfs_t *lfs, lfs_dir_t *dir, struct lfs_info *info);
|
int lfs_dir_read(lfs_t *lfs, lfs_dir_t *dir, struct lfs_info *info);
|
||||||
|
|
||||||
// Change the position of the directory
|
// Change the position of the directory
|
||||||
@@ -589,15 +415,7 @@ lfs_soff_t lfs_dir_tell(lfs_t *lfs, lfs_dir_t *dir);
|
|||||||
int lfs_dir_rewind(lfs_t *lfs, lfs_dir_t *dir);
|
int lfs_dir_rewind(lfs_t *lfs, lfs_dir_t *dir);
|
||||||
|
|
||||||
|
|
||||||
/// Filesystem-level filesystem operations
|
/// Miscellaneous littlefs specific operations ///
|
||||||
|
|
||||||
// Finds the current size of the filesystem
|
|
||||||
//
|
|
||||||
// Note: Result is best effort. If files share COW structures, the returned
|
|
||||||
// size may be larger than the filesystem actually is.
|
|
||||||
//
|
|
||||||
// Returns the number of allocated blocks, or a negative error code on failure.
|
|
||||||
lfs_ssize_t lfs_fs_size(lfs_t *lfs);
|
|
||||||
|
|
||||||
// Traverse through all blocks in use by the filesystem
|
// Traverse through all blocks in use by the filesystem
|
||||||
//
|
//
|
||||||
@@ -606,26 +424,19 @@ lfs_ssize_t lfs_fs_size(lfs_t *lfs);
|
|||||||
// blocks are in use or how much of the storage is available.
|
// blocks are in use or how much of the storage is available.
|
||||||
//
|
//
|
||||||
// Returns a negative error code on failure.
|
// Returns a negative error code on failure.
|
||||||
int lfs_fs_traverse(lfs_t *lfs, int (*cb)(void*, lfs_block_t), void *data);
|
int lfs_traverse(lfs_t *lfs, int (*cb)(void*, lfs_block_t), void *data);
|
||||||
|
|
||||||
#ifdef LFS_MIGRATE
|
// Prunes any recoverable errors that may have occured in the filesystem
|
||||||
// Attempts to migrate a previous version of littlefs
|
|
||||||
//
|
//
|
||||||
// Behaves similarly to the lfs_format function. Attempts to mount
|
// Not needed to be called by user unless an operation is interrupted
|
||||||
// the previous version of littlefs and update the filesystem so it can be
|
// but the filesystem is still mounted. This is already called on first
|
||||||
// mounted with the current version of littlefs.
|
// allocation.
|
||||||
//
|
|
||||||
// Requires a littlefs object and config struct. This clobbers the littlefs
|
|
||||||
// object, and does not leave the filesystem mounted. The config struct must
|
|
||||||
// be zeroed for defaults and backwards compatibility.
|
|
||||||
//
|
//
|
||||||
// Returns a negative error code on failure.
|
// Returns a negative error code on failure.
|
||||||
int lfs_migrate(lfs_t *lfs, const struct lfs_config *cfg);
|
int lfs_deorphan(lfs_t *lfs);
|
||||||
#endif
|
|
||||||
|
// TODO doc
|
||||||
|
int lfs_deduplicate(lfs_t *lfs);
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
} /* extern "C" */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
18
lfs_util.c
18
lfs_util.c
@@ -1,17 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* lfs util functions
|
* lfs util functions
|
||||||
*
|
*
|
||||||
* Copyright (c) 2017, Arm Limited. All rights reserved.
|
* Copyright (c) 2017 Christopher Haster
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* Distributed under the Apache 2.0 license
|
||||||
*/
|
*/
|
||||||
#include "lfs_util.h"
|
#include "lfs_util.h"
|
||||||
|
|
||||||
// Only compile if user does not provide custom config
|
|
||||||
#ifndef LFS_UTIL
|
|
||||||
|
|
||||||
|
void lfs_crc(uint32_t *restrict crc, const void *buffer, size_t size) {
|
||||||
// Software CRC implementation with small lookup table
|
|
||||||
uint32_t lfs_crc(uint32_t crc, const void *buffer, size_t size) {
|
|
||||||
static const uint32_t rtable[16] = {
|
static const uint32_t rtable[16] = {
|
||||||
0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
|
0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
|
||||||
0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
|
0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
|
||||||
@@ -22,12 +18,8 @@ uint32_t lfs_crc(uint32_t crc, const void *buffer, size_t size) {
|
|||||||
const uint8_t *data = buffer;
|
const uint8_t *data = buffer;
|
||||||
|
|
||||||
for (size_t i = 0; i < size; i++) {
|
for (size_t i = 0; i < size; i++) {
|
||||||
crc = (crc >> 4) ^ rtable[(crc ^ (data[i] >> 0)) & 0xf];
|
*crc = (*crc >> 4) ^ rtable[(*crc ^ (data[i] >> 0)) & 0xf];
|
||||||
crc = (crc >> 4) ^ rtable[(crc ^ (data[i] >> 4)) & 0xf];
|
*crc = (*crc >> 4) ^ rtable[(*crc ^ (data[i] >> 4)) & 0xf];
|
||||||
}
|
}
|
||||||
|
|
||||||
return crc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|||||||
239
lfs_util.h
239
lfs_util.h
@@ -1,118 +1,19 @@
|
|||||||
/*
|
/*
|
||||||
* lfs utility functions
|
* lfs utility functions
|
||||||
*
|
*
|
||||||
* Copyright (c) 2017, Arm Limited. All rights reserved.
|
* Copyright (c) 2017 Christopher Haster
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* Distributed under the Apache 2.0 license
|
||||||
*
|
|
||||||
* Can be overridden by users with their own configuration by defining
|
|
||||||
* LFS_UTIL as a header file (-DLFS_UTIL=my_lfs_util.h)
|
|
||||||
*
|
|
||||||
* If LFS_UTIL is defined, none of the default definitions will be
|
|
||||||
* emitted and must be provided by the user's header file. To start, I would
|
|
||||||
* suggest copying lfs_util.h and modifying as needed.
|
|
||||||
*/
|
*/
|
||||||
#ifndef LFS_UTIL_H
|
#ifndef LFS_UTIL_H
|
||||||
#define LFS_UTIL_H
|
#define LFS_UTIL_H
|
||||||
|
|
||||||
#ifdef LFS_UTIL
|
|
||||||
#define LFS_STRINGIZE(x) LFS_STRINGIZE2(x)
|
|
||||||
#define LFS_STRINGIZE2(x) #x
|
|
||||||
#include LFS_STRINGIZE(LFS_UTIL)
|
|
||||||
#else
|
|
||||||
|
|
||||||
// System includes
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#ifndef LFS_NO_MALLOC
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#endif
|
#include <stdint.h>
|
||||||
#ifndef LFS_NO_ASSERT
|
|
||||||
#include <assert.h>
|
|
||||||
#endif
|
|
||||||
#if !defined(LFS_NO_DEBUG) || \
|
|
||||||
!defined(LFS_NO_WARN) || \
|
|
||||||
!defined(LFS_NO_ERROR) || \
|
|
||||||
defined(LFS_YES_TRACE)
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
// Possible error codes, these are negative to allow valid positive
|
// Builtin functions, these may be replaced by more
|
||||||
// return values. May be redefined to system error codes as long as
|
// efficient implementations in the system
|
||||||
// they are negative.
|
|
||||||
enum lfs_error {
|
|
||||||
LFS_ERR_OK = 0, // No error
|
|
||||||
LFS_ERR_IO = -5, // Error during device operation
|
|
||||||
LFS_ERR_CORRUPT = -84, // Corrupted
|
|
||||||
LFS_ERR_NOENT = -2, // No directory entry
|
|
||||||
LFS_ERR_EXIST = -17, // Entry already exists
|
|
||||||
LFS_ERR_NOTDIR = -20, // Entry is not a dir
|
|
||||||
LFS_ERR_ISDIR = -21, // Entry is a dir
|
|
||||||
LFS_ERR_NOTEMPTY = -39, // Dir is not empty
|
|
||||||
LFS_ERR_BADF = -9, // Bad file number
|
|
||||||
LFS_ERR_FBIG = -27, // File too large
|
|
||||||
LFS_ERR_INVAL = -22, // Invalid parameter
|
|
||||||
LFS_ERR_NOSPC = -28, // No space left on device
|
|
||||||
LFS_ERR_NOMEM = -12, // No more memory available
|
|
||||||
LFS_ERR_NOATTR = -61, // No data/attr available
|
|
||||||
LFS_ERR_NAMETOOLONG = -36, // File name too long
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// Macros, may be replaced by system specific wrappers. Arguments to these
|
|
||||||
// macros must not have side-effects as the macros can be removed for a smaller
|
|
||||||
// code footprint
|
|
||||||
|
|
||||||
// Logging functions
|
|
||||||
#ifdef LFS_YES_TRACE
|
|
||||||
#define LFS_TRACE(fmt, ...) \
|
|
||||||
printf("lfs_trace:%d: " fmt "\n", __LINE__, __VA_ARGS__)
|
|
||||||
#else
|
|
||||||
#define LFS_TRACE(fmt, ...)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_NO_DEBUG
|
|
||||||
#define LFS_DEBUG(fmt, ...) \
|
|
||||||
printf("lfs_debug:%d: " fmt "\n", __LINE__, __VA_ARGS__)
|
|
||||||
#else
|
|
||||||
#define LFS_DEBUG(fmt, ...)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_NO_WARN
|
|
||||||
#define LFS_WARN(fmt, ...) \
|
|
||||||
printf("lfs_warn:%d: " fmt "\n", __LINE__, __VA_ARGS__)
|
|
||||||
#else
|
|
||||||
#define LFS_WARN(fmt, ...)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_NO_ERROR
|
|
||||||
#define LFS_ERROR(fmt, ...) \
|
|
||||||
printf("lfs_error:%d: " fmt "\n", __LINE__, __VA_ARGS__)
|
|
||||||
#else
|
|
||||||
#define LFS_ERROR(fmt, ...)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Runtime assertions
|
|
||||||
#ifndef LFS_NO_ASSERT
|
|
||||||
#define LFS_ASSERT(test) assert(test)
|
|
||||||
#else
|
|
||||||
#define LFS_ASSERT(test)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
// Builtin functions, these may be replaced by more efficient
|
|
||||||
// toolchain-specific implementations. LFS_NO_INTRINSICS falls back to a more
|
|
||||||
// expensive basic C implementation for debugging purposes
|
|
||||||
|
|
||||||
// Min/max functions for unsigned 32-bit numbers
|
|
||||||
static inline uint32_t lfs_max(uint32_t a, uint32_t b) {
|
static inline uint32_t lfs_max(uint32_t a, uint32_t b) {
|
||||||
return (a > b) ? a : b;
|
return (a > b) ? a : b;
|
||||||
}
|
}
|
||||||
@@ -121,133 +22,27 @@ static inline uint32_t lfs_min(uint32_t a, uint32_t b) {
|
|||||||
return (a < b) ? a : b;
|
return (a < b) ? a : b;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Align to nearest multiple of a size
|
|
||||||
static inline uint32_t lfs_aligndown(uint32_t a, uint32_t alignment) {
|
|
||||||
return a - (a % alignment);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline uint32_t lfs_alignup(uint32_t a, uint32_t alignment) {
|
|
||||||
return lfs_aligndown(a + alignment-1, alignment);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find the next smallest power of 2 less than or equal to a
|
|
||||||
static inline uint32_t lfs_npw2(uint32_t a) {
|
|
||||||
#if !defined(LFS_NO_INTRINSICS) && (defined(__GNUC__) || defined(__CC_ARM))
|
|
||||||
return 32 - __builtin_clz(a-1);
|
|
||||||
#else
|
|
||||||
uint32_t r = 0;
|
|
||||||
uint32_t s;
|
|
||||||
a -= 1;
|
|
||||||
s = (a > 0xffff) << 4; a >>= s; r |= s;
|
|
||||||
s = (a > 0xff ) << 3; a >>= s; r |= s;
|
|
||||||
s = (a > 0xf ) << 2; a >>= s; r |= s;
|
|
||||||
s = (a > 0x3 ) << 1; a >>= s; r |= s;
|
|
||||||
return (r | (a >> 1)) + 1;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
// Count the number of trailing binary zeros in a
|
|
||||||
// lfs_ctz(0) may be undefined
|
|
||||||
static inline uint32_t lfs_ctz(uint32_t a) {
|
static inline uint32_t lfs_ctz(uint32_t a) {
|
||||||
#if !defined(LFS_NO_INTRINSICS) && defined(__GNUC__)
|
|
||||||
return __builtin_ctz(a);
|
return __builtin_ctz(a);
|
||||||
#else
|
|
||||||
return lfs_npw2((a & -a) + 1) - 1;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Count the number of binary ones in a
|
static inline uint32_t lfs_npw2(uint32_t a) {
|
||||||
static inline uint32_t lfs_popc(uint32_t a) {
|
return 32 - __builtin_clz(a-1);
|
||||||
#if !defined(LFS_NO_INTRINSICS) && (defined(__GNUC__) || defined(__CC_ARM))
|
|
||||||
return __builtin_popcount(a);
|
|
||||||
#else
|
|
||||||
a = a - ((a >> 1) & 0x55555555);
|
|
||||||
a = (a & 0x33333333) + ((a >> 2) & 0x33333333);
|
|
||||||
return (((a + (a >> 4)) & 0xf0f0f0f) * 0x1010101) >> 24;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find the sequence comparison of a and b, this is the distance
|
static inline int lfs_scmp(uint32_t a, uint32_t b) {
|
||||||
// between a and b ignoring overflow
|
return (int)(unsigned)(a - b);
|
||||||
static inline int32_t lfs_scmp(uint32_t a, uint32_t b) {
|
|
||||||
return (int32_t)(uint32_t)(a - b);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert between 32-bit little-endian and native order
|
// CRC-32 with polynomial = 0x04c11db7
|
||||||
static inline uint32_t lfs_fromle32(uint32_t a) {
|
void lfs_crc(uint32_t *crc, const void *buffer, size_t size);
|
||||||
#if !defined(LFS_NO_INTRINSICS) && ( \
|
|
||||||
(defined( BYTE_ORDER ) && defined( ORDER_LITTLE_ENDIAN ) && BYTE_ORDER == ORDER_LITTLE_ENDIAN ) || \
|
|
||||||
(defined(__BYTE_ORDER ) && defined(__ORDER_LITTLE_ENDIAN ) && __BYTE_ORDER == __ORDER_LITTLE_ENDIAN ) || \
|
|
||||||
(defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__))
|
|
||||||
return a;
|
|
||||||
#elif !defined(LFS_NO_INTRINSICS) && ( \
|
|
||||||
(defined( BYTE_ORDER ) && defined( ORDER_BIG_ENDIAN ) && BYTE_ORDER == ORDER_BIG_ENDIAN ) || \
|
|
||||||
(defined(__BYTE_ORDER ) && defined(__ORDER_BIG_ENDIAN ) && __BYTE_ORDER == __ORDER_BIG_ENDIAN ) || \
|
|
||||||
(defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__))
|
|
||||||
return __builtin_bswap32(a);
|
|
||||||
#else
|
|
||||||
return (((uint8_t*)&a)[0] << 0) |
|
|
||||||
(((uint8_t*)&a)[1] << 8) |
|
|
||||||
(((uint8_t*)&a)[2] << 16) |
|
|
||||||
(((uint8_t*)&a)[3] << 24);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline uint32_t lfs_tole32(uint32_t a) {
|
|
||||||
return lfs_fromle32(a);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convert between 32-bit big-endian and native order
|
|
||||||
static inline uint32_t lfs_frombe32(uint32_t a) {
|
|
||||||
#if !defined(LFS_NO_INTRINSICS) && ( \
|
|
||||||
(defined( BYTE_ORDER ) && defined( ORDER_LITTLE_ENDIAN ) && BYTE_ORDER == ORDER_LITTLE_ENDIAN ) || \
|
|
||||||
(defined(__BYTE_ORDER ) && defined(__ORDER_LITTLE_ENDIAN ) && __BYTE_ORDER == __ORDER_LITTLE_ENDIAN ) || \
|
|
||||||
(defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__))
|
|
||||||
return __builtin_bswap32(a);
|
|
||||||
#elif !defined(LFS_NO_INTRINSICS) && ( \
|
|
||||||
(defined( BYTE_ORDER ) && defined( ORDER_BIG_ENDIAN ) && BYTE_ORDER == ORDER_BIG_ENDIAN ) || \
|
|
||||||
(defined(__BYTE_ORDER ) && defined(__ORDER_BIG_ENDIAN ) && __BYTE_ORDER == __ORDER_BIG_ENDIAN ) || \
|
|
||||||
(defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__))
|
|
||||||
return a;
|
|
||||||
#else
|
|
||||||
return (((uint8_t*)&a)[0] << 24) |
|
|
||||||
(((uint8_t*)&a)[1] << 16) |
|
|
||||||
(((uint8_t*)&a)[2] << 8) |
|
|
||||||
(((uint8_t*)&a)[3] << 0);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline uint32_t lfs_tobe32(uint32_t a) {
|
|
||||||
return lfs_frombe32(a);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Calculate CRC-32 with polynomial = 0x04c11db7
|
|
||||||
uint32_t lfs_crc(uint32_t crc, const void *buffer, size_t size);
|
|
||||||
|
|
||||||
// Allocate memory, only used if buffers are not provided to littlefs
|
|
||||||
// Note, memory must be 64-bit aligned
|
|
||||||
static inline void *lfs_malloc(size_t size) {
|
|
||||||
#ifndef LFS_NO_MALLOC
|
|
||||||
return malloc(size);
|
|
||||||
#else
|
|
||||||
(void)size;
|
|
||||||
return NULL;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deallocate memory, only used if buffers are not provided to littlefs
|
|
||||||
static inline void lfs_free(void *p) {
|
|
||||||
#ifndef LFS_NO_MALLOC
|
|
||||||
free(p);
|
|
||||||
#else
|
|
||||||
(void)p;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
// Logging functions, these may be replaced by system-specific
|
||||||
} /* extern "C" */
|
// logging functions
|
||||||
#endif
|
#define LFS_DEBUG(fmt, ...) printf("lfs debug: " fmt "\n", __VA_ARGS__)
|
||||||
|
#define LFS_WARN(fmt, ...) printf("lfs warn: " fmt "\n", __VA_ARGS__)
|
||||||
|
#define LFS_ERROR(fmt, ...) printf("lfs error: " fmt "\n", __VA_ARGS__)
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
#!/usr/bin/env python2
|
|
||||||
|
|
||||||
import struct
|
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
import argparse
|
|
||||||
|
|
||||||
def corrupt(block):
|
|
||||||
with open(block, 'r+b') as file:
|
|
||||||
# skip rev
|
|
||||||
file.read(4)
|
|
||||||
|
|
||||||
# go to last commit
|
|
||||||
tag = 0xffffffff
|
|
||||||
while True:
|
|
||||||
try:
|
|
||||||
ntag, = struct.unpack('>I', file.read(4))
|
|
||||||
except struct.error:
|
|
||||||
break
|
|
||||||
|
|
||||||
tag ^= ntag
|
|
||||||
size = (tag & 0x3ff) if (tag & 0x3ff) != 0x3ff else 0
|
|
||||||
file.seek(size, os.SEEK_CUR)
|
|
||||||
|
|
||||||
# lob off last 3 bytes
|
|
||||||
file.seek(-(size + 3), os.SEEK_CUR)
|
|
||||||
file.truncate()
|
|
||||||
|
|
||||||
def main(args):
|
|
||||||
if args.n or not args.blocks:
|
|
||||||
with open('blocks/.history', 'rb') as file:
|
|
||||||
for i in range(int(args.n or 1)):
|
|
||||||
last, = struct.unpack('<I', file.read(4))
|
|
||||||
args.blocks.append('blocks/%x' % last)
|
|
||||||
|
|
||||||
for block in args.blocks:
|
|
||||||
print 'corrupting %s' % block
|
|
||||||
corrupt(block)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
parser = argparse.ArgumentParser()
|
|
||||||
parser.add_argument('-n')
|
|
||||||
parser.add_argument('blocks', nargs='*')
|
|
||||||
main(parser.parse_args())
|
|
||||||
112
scripts/debug.py
112
scripts/debug.py
@@ -1,112 +0,0 @@
|
|||||||
#!/usr/bin/env python2
|
|
||||||
|
|
||||||
import struct
|
|
||||||
import binascii
|
|
||||||
|
|
||||||
TYPES = {
|
|
||||||
(0x700, 0x400): 'splice',
|
|
||||||
(0x7ff, 0x401): 'create',
|
|
||||||
(0x7ff, 0x4ff): 'delete',
|
|
||||||
(0x700, 0x000): 'name',
|
|
||||||
(0x7ff, 0x001): 'name reg',
|
|
||||||
(0x7ff, 0x002): 'name dir',
|
|
||||||
(0x7ff, 0x0ff): 'name superblock',
|
|
||||||
(0x700, 0x200): 'struct',
|
|
||||||
(0x7ff, 0x200): 'struct dir',
|
|
||||||
(0x7ff, 0x202): 'struct ctz',
|
|
||||||
(0x7ff, 0x201): 'struct inline',
|
|
||||||
(0x700, 0x300): 'userattr',
|
|
||||||
(0x700, 0x600): 'tail',
|
|
||||||
(0x7ff, 0x600): 'tail soft',
|
|
||||||
(0x7ff, 0x601): 'tail hard',
|
|
||||||
(0x700, 0x700): 'gstate',
|
|
||||||
(0x7ff, 0x7ff): 'gstate move',
|
|
||||||
(0x700, 0x500): 'crc',
|
|
||||||
}
|
|
||||||
|
|
||||||
def typeof(type):
|
|
||||||
for prefix in range(12):
|
|
||||||
mask = 0x7ff & ~((1 << prefix)-1)
|
|
||||||
if (mask, type & mask) in TYPES:
|
|
||||||
return TYPES[mask, type & mask] + (
|
|
||||||
' %0*x' % (prefix/4, type & ((1 << prefix)-1))
|
|
||||||
if prefix else '')
|
|
||||||
else:
|
|
||||||
return '%02x' % type
|
|
||||||
|
|
||||||
def main(*blocks):
|
|
||||||
# find most recent block
|
|
||||||
file = None
|
|
||||||
rev = None
|
|
||||||
crc = None
|
|
||||||
versions = []
|
|
||||||
|
|
||||||
for block in blocks:
|
|
||||||
try:
|
|
||||||
nfile = open(block, 'rb')
|
|
||||||
ndata = nfile.read(4)
|
|
||||||
ncrc = binascii.crc32(ndata)
|
|
||||||
nrev, = struct.unpack('<I', ndata)
|
|
||||||
|
|
||||||
assert rev != nrev
|
|
||||||
if not file or ((rev - nrev) & 0x80000000):
|
|
||||||
file = nfile
|
|
||||||
rev = nrev
|
|
||||||
crc = ncrc
|
|
||||||
|
|
||||||
versions.append((nrev, '%s (rev %d)' % (block, nrev)))
|
|
||||||
except (IOError, struct.error):
|
|
||||||
pass
|
|
||||||
|
|
||||||
if not file:
|
|
||||||
print 'Bad metadata pair {%s}' % ', '.join(blocks)
|
|
||||||
return 1
|
|
||||||
|
|
||||||
print "--- %s ---" % ', '.join(v for _,v in sorted(versions, reverse=True))
|
|
||||||
|
|
||||||
# go through each tag, print useful information
|
|
||||||
print "%-4s %-8s %-14s %3s %4s %s" % (
|
|
||||||
'off', 'tag', 'type', 'id', 'len', 'dump')
|
|
||||||
|
|
||||||
tag = 0xffffffff
|
|
||||||
off = 4
|
|
||||||
while True:
|
|
||||||
try:
|
|
||||||
data = file.read(4)
|
|
||||||
crc = binascii.crc32(data, crc)
|
|
||||||
ntag, = struct.unpack('>I', data)
|
|
||||||
except struct.error:
|
|
||||||
break
|
|
||||||
|
|
||||||
tag ^= ntag
|
|
||||||
off += 4
|
|
||||||
|
|
||||||
type = (tag & 0x7ff00000) >> 20
|
|
||||||
id = (tag & 0x000ffc00) >> 10
|
|
||||||
size = (tag & 0x000003ff) >> 0
|
|
||||||
iscrc = (type & 0x700) == 0x500
|
|
||||||
|
|
||||||
data = file.read(size if size != 0x3ff else 0)
|
|
||||||
if iscrc:
|
|
||||||
crc = binascii.crc32(data[:4], crc)
|
|
||||||
else:
|
|
||||||
crc = binascii.crc32(data, crc)
|
|
||||||
|
|
||||||
print '%04x: %08x %-15s %3s %4s %-23s %-8s' % (
|
|
||||||
off, tag,
|
|
||||||
typeof(type) + (' bad!' if iscrc and ~crc else ''),
|
|
||||||
hex(id)[2:] if id != 0x3ff else '.',
|
|
||||||
size if size != 0x3ff else 'x',
|
|
||||||
' '.join('%02x' % ord(c) for c in data[:8]),
|
|
||||||
''.join(c if c >= ' ' and c <= '~' else '.' for c in data[:8]))
|
|
||||||
|
|
||||||
off += size if size != 0x3ff else 0
|
|
||||||
if iscrc:
|
|
||||||
crc = 0
|
|
||||||
tag ^= (type & 1) << 31
|
|
||||||
|
|
||||||
return 0
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
import sys
|
|
||||||
sys.exit(main(*sys.argv[1:]))
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
#!/usr/bin/env python2
|
|
||||||
|
|
||||||
# This script replaces prefixes of files, and symbols in that file.
|
|
||||||
# Useful for creating different versions of the codebase that don't
|
|
||||||
# conflict at compile time.
|
|
||||||
#
|
|
||||||
# example:
|
|
||||||
# $ ./scripts/prefix.py lfs2
|
|
||||||
|
|
||||||
import os
|
|
||||||
import os.path
|
|
||||||
import re
|
|
||||||
import glob
|
|
||||||
import itertools
|
|
||||||
import tempfile
|
|
||||||
import shutil
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
DEFAULT_PREFIX = "lfs"
|
|
||||||
|
|
||||||
def subn(from_prefix, to_prefix, name):
|
|
||||||
name, count1 = re.subn('\\b'+from_prefix, to_prefix, name)
|
|
||||||
name, count2 = re.subn('\\b'+from_prefix.upper(), to_prefix.upper(), name)
|
|
||||||
name, count3 = re.subn('\\B-D'+from_prefix.upper(),
|
|
||||||
'-D'+to_prefix.upper(), name)
|
|
||||||
return name, count1+count2+count3
|
|
||||||
|
|
||||||
def main(from_prefix, to_prefix=None, files=None):
|
|
||||||
if not to_prefix:
|
|
||||||
from_prefix, to_prefix = DEFAULT_PREFIX, from_prefix
|
|
||||||
|
|
||||||
if not files:
|
|
||||||
files = subprocess.check_output([
|
|
||||||
'git', 'ls-tree', '-r', '--name-only', 'HEAD']).split()
|
|
||||||
|
|
||||||
for oldname in files:
|
|
||||||
# Rename any matching file names
|
|
||||||
newname, namecount = subn(from_prefix, to_prefix, oldname)
|
|
||||||
if namecount:
|
|
||||||
subprocess.check_call(['git', 'mv', oldname, newname])
|
|
||||||
|
|
||||||
# Rename any prefixes in file
|
|
||||||
count = 0
|
|
||||||
with open(newname+'~', 'w') as tempf:
|
|
||||||
with open(newname) as newf:
|
|
||||||
for line in newf:
|
|
||||||
line, n = subn(from_prefix, to_prefix, line)
|
|
||||||
count += n
|
|
||||||
tempf.write(line)
|
|
||||||
shutil.copystat(newname, newname+'~')
|
|
||||||
os.rename(newname+'~', newname)
|
|
||||||
subprocess.check_call(['git', 'add', newname])
|
|
||||||
|
|
||||||
# Summary
|
|
||||||
print '%s: %d replacements' % (
|
|
||||||
'%s -> %s' % (oldname, newname) if namecount else oldname,
|
|
||||||
count)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
import sys
|
|
||||||
sys.exit(main(*sys.argv[1:]))
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
#!/usr/bin/env python2
|
|
||||||
|
|
||||||
import struct
|
|
||||||
import sys
|
|
||||||
import time
|
|
||||||
import os
|
|
||||||
import re
|
|
||||||
|
|
||||||
def main():
|
|
||||||
with open('blocks/.config') as file:
|
|
||||||
read_size, prog_size, block_size, block_count = (
|
|
||||||
struct.unpack('<LLLL', file.read()))
|
|
||||||
|
|
||||||
real_size = sum(
|
|
||||||
os.path.getsize(os.path.join('blocks', f))
|
|
||||||
for f in os.listdir('blocks') if re.match('\d+', f))
|
|
||||||
|
|
||||||
with open('blocks/.stats') as file:
|
|
||||||
read_count, prog_count, erase_count = (
|
|
||||||
struct.unpack('<QQQ', file.read()))
|
|
||||||
|
|
||||||
runtime = time.time() - os.stat('blocks').st_ctime
|
|
||||||
|
|
||||||
print 'results: %dB %dB %dB %.3fs' % (
|
|
||||||
read_count, prog_count, erase_count, runtime)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main(*sys.argv[1:])
|
|
||||||
@@ -1,96 +0,0 @@
|
|||||||
/// AUTOGENERATED TEST ///
|
|
||||||
#include "lfs.h"
|
|
||||||
#include "emubd/lfs_emubd.h"
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
|
|
||||||
// test stuff
|
|
||||||
static void test_assert(const char *file, unsigned line,
|
|
||||||
const char *s, uintmax_t v, uintmax_t e) {{
|
|
||||||
if (v != e) {{
|
|
||||||
fprintf(stderr, "\033[97m%s:%u: \033[91m"
|
|
||||||
"assert failed with %jd, expected %jd\033[0m\n"
|
|
||||||
" %s\n\n", file, line, v, e, s);
|
|
||||||
exit(-2);
|
|
||||||
}}
|
|
||||||
}}
|
|
||||||
|
|
||||||
#define test_assert(v, e) \
|
|
||||||
test_assert(__FILE__, __LINE__, #v " => " #e, v, e)
|
|
||||||
|
|
||||||
// implicit variable for asserts
|
|
||||||
uintmax_t test;
|
|
||||||
|
|
||||||
// utility functions for traversals
|
|
||||||
static int __attribute__((used)) test_count(void *p, lfs_block_t b) {{
|
|
||||||
(void)b;
|
|
||||||
unsigned *u = (unsigned*)p;
|
|
||||||
*u += 1;
|
|
||||||
return 0;
|
|
||||||
}}
|
|
||||||
|
|
||||||
// lfs declarations
|
|
||||||
lfs_t lfs;
|
|
||||||
lfs_emubd_t bd;
|
|
||||||
// other declarations for convenience
|
|
||||||
lfs_file_t file;
|
|
||||||
lfs_dir_t dir;
|
|
||||||
struct lfs_info info;
|
|
||||||
uint8_t buffer[1024];
|
|
||||||
char path[1024];
|
|
||||||
|
|
||||||
// test configuration options
|
|
||||||
#ifndef LFS_READ_SIZE
|
|
||||||
#define LFS_READ_SIZE 16
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_PROG_SIZE
|
|
||||||
#define LFS_PROG_SIZE LFS_READ_SIZE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_BLOCK_SIZE
|
|
||||||
#define LFS_BLOCK_SIZE 512
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_BLOCK_COUNT
|
|
||||||
#define LFS_BLOCK_COUNT 1024
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_BLOCK_CYCLES
|
|
||||||
#define LFS_BLOCK_CYCLES 1024
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_CACHE_SIZE
|
|
||||||
#define LFS_CACHE_SIZE (64 % LFS_PROG_SIZE == 0 ? 64 : LFS_PROG_SIZE)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LFS_LOOKAHEAD_SIZE
|
|
||||||
#define LFS_LOOKAHEAD_SIZE 16
|
|
||||||
#endif
|
|
||||||
|
|
||||||
const struct lfs_config cfg = {{
|
|
||||||
.context = &bd,
|
|
||||||
.read = &lfs_emubd_read,
|
|
||||||
.prog = &lfs_emubd_prog,
|
|
||||||
.erase = &lfs_emubd_erase,
|
|
||||||
.sync = &lfs_emubd_sync,
|
|
||||||
|
|
||||||
.read_size = LFS_READ_SIZE,
|
|
||||||
.prog_size = LFS_PROG_SIZE,
|
|
||||||
.block_size = LFS_BLOCK_SIZE,
|
|
||||||
.block_count = LFS_BLOCK_COUNT,
|
|
||||||
.block_cycles = LFS_BLOCK_CYCLES,
|
|
||||||
.cache_size = LFS_CACHE_SIZE,
|
|
||||||
.lookahead_size = LFS_LOOKAHEAD_SIZE,
|
|
||||||
}};
|
|
||||||
|
|
||||||
|
|
||||||
// Entry point
|
|
||||||
int main(void) {{
|
|
||||||
lfs_emubd_create(&cfg, "blocks");
|
|
||||||
|
|
||||||
{tests}
|
|
||||||
lfs_emubd_destroy(&cfg);
|
|
||||||
}}
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
#!/usr/bin/env python2
|
|
||||||
|
|
||||||
import re
|
|
||||||
import sys
|
|
||||||
import subprocess
|
|
||||||
import os
|
|
||||||
|
|
||||||
|
|
||||||
def generate(test):
|
|
||||||
with open("scripts/template.fmt") as file:
|
|
||||||
template = file.read()
|
|
||||||
|
|
||||||
haslines = 'TEST_LINE' in os.environ and 'TEST_FILE' in os.environ
|
|
||||||
|
|
||||||
lines = []
|
|
||||||
for offset, line in enumerate(
|
|
||||||
re.split('(?<=(?:.;| [{}]))\n', test.read())):
|
|
||||||
match = re.match('((?: *\n)*)( *)(.*)=>(.*);',
|
|
||||||
line, re.DOTALL | re.MULTILINE)
|
|
||||||
if match:
|
|
||||||
preface, tab, test, expect = match.groups()
|
|
||||||
lines.extend(['']*preface.count('\n'))
|
|
||||||
lines.append(tab+'test_assert({test}, {expect});'.format(
|
|
||||||
test=test.strip(), expect=expect.strip()))
|
|
||||||
else:
|
|
||||||
lines.append(line)
|
|
||||||
|
|
||||||
# Create test file
|
|
||||||
with open('test.c', 'w') as file:
|
|
||||||
if 'TEST_LINE' in os.environ and 'TEST_FILE' in os.environ:
|
|
||||||
lines.insert(0, '#line %d "%s"' % (
|
|
||||||
int(os.environ['TEST_LINE']) + 1,
|
|
||||||
os.environ['TEST_FILE']))
|
|
||||||
lines.append('#line %d "test.c"' % (
|
|
||||||
template[:template.find('{tests}')].count('\n')
|
|
||||||
+ len(lines) + 2))
|
|
||||||
|
|
||||||
file.write(template.format(tests='\n'.join(lines)))
|
|
||||||
|
|
||||||
# Remove build artifacts to force rebuild
|
|
||||||
try:
|
|
||||||
os.remove('test.o')
|
|
||||||
os.remove('lfs')
|
|
||||||
except OSError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
def compile():
|
|
||||||
subprocess.check_call([
|
|
||||||
os.environ.get('MAKE', 'make'),
|
|
||||||
'--no-print-directory', '-s'])
|
|
||||||
|
|
||||||
def execute():
|
|
||||||
if 'EXEC' in os.environ:
|
|
||||||
subprocess.check_call([os.environ['EXEC'], "./lfs"])
|
|
||||||
else:
|
|
||||||
subprocess.check_call(["./lfs"])
|
|
||||||
|
|
||||||
def main(test=None):
|
|
||||||
try:
|
|
||||||
if test and not test.startswith('-'):
|
|
||||||
with open(test) as file:
|
|
||||||
generate(file)
|
|
||||||
else:
|
|
||||||
generate(sys.stdin)
|
|
||||||
|
|
||||||
compile()
|
|
||||||
|
|
||||||
if test == '-s':
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
execute()
|
|
||||||
|
|
||||||
except subprocess.CalledProcessError:
|
|
||||||
# Python stack trace is counterproductive, just exit
|
|
||||||
sys.exit(2)
|
|
||||||
except KeyboardInterrupt:
|
|
||||||
# Python stack trace is counterproductive, just exit
|
|
||||||
sys.exit(3)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main(*sys.argv[1:])
|
|
||||||
30
tests/stats.py
Executable file
30
tests/stats.py
Executable file
@@ -0,0 +1,30 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import struct
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
|
||||||
|
def main():
|
||||||
|
with open('blocks/config') as file:
|
||||||
|
s = struct.unpack('<LLLL', file.read())
|
||||||
|
print 'read_size: %d' % s[0]
|
||||||
|
print 'prog_size: %d' % s[1]
|
||||||
|
print 'block_size: %d' % s[2]
|
||||||
|
print 'block_size: %d' % s[3]
|
||||||
|
|
||||||
|
print 'real_size: %d' % sum(
|
||||||
|
os.path.getsize(os.path.join('blocks', f))
|
||||||
|
for f in os.listdir('blocks') if re.match('\d+', f))
|
||||||
|
|
||||||
|
with open('blocks/stats') as file:
|
||||||
|
s = struct.unpack('<QQQ', file.read())
|
||||||
|
print 'read_count: %d' % s[0]
|
||||||
|
print 'prog_count: %d' % s[1]
|
||||||
|
print 'erase_count: %d' % s[2]
|
||||||
|
|
||||||
|
print 'runtime: %.3f' % (time.time() - os.stat('blocks').st_ctime)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main(*sys.argv[1:])
|
||||||
105
tests/template.fmt
Normal file
105
tests/template.fmt
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
/// AUTOGENERATED TEST ///
|
||||||
|
#include "lfs.h"
|
||||||
|
#include "emubd/lfs_emubd.h"
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
|
||||||
|
// test stuff
|
||||||
|
void test_log(const char *s, uintmax_t v) {{
|
||||||
|
printf("%s: %jd\n", s, v);
|
||||||
|
}}
|
||||||
|
|
||||||
|
void test_assert(const char *file, unsigned line,
|
||||||
|
const char *s, uintmax_t v, uintmax_t e) {{
|
||||||
|
static const char *last[6] = {{0, 0}};
|
||||||
|
if (v != e || !(last[0] == s || last[1] == s ||
|
||||||
|
last[2] == s || last[3] == s ||
|
||||||
|
last[4] == s || last[5] == s)) {{
|
||||||
|
test_log(s, v);
|
||||||
|
last[0] = last[1];
|
||||||
|
last[1] = last[2];
|
||||||
|
last[2] = last[3];
|
||||||
|
last[3] = last[4];
|
||||||
|
last[4] = last[5];
|
||||||
|
last[5] = s;
|
||||||
|
}}
|
||||||
|
|
||||||
|
if (v != e) {{
|
||||||
|
fprintf(stderr, "\033[31m%s:%u: assert %s failed with %jd, "
|
||||||
|
"expected %jd\033[0m\n", file, line, s, v, e);
|
||||||
|
exit(-2);
|
||||||
|
}}
|
||||||
|
}}
|
||||||
|
|
||||||
|
#define test_assert(s, v, e) test_assert(__FILE__, __LINE__, s, v, e)
|
||||||
|
|
||||||
|
|
||||||
|
// utility functions for traversals
|
||||||
|
int test_count(void *p, lfs_block_t b) {{
|
||||||
|
unsigned *u = (unsigned*)p;
|
||||||
|
*u += 1;
|
||||||
|
return 0;
|
||||||
|
}}
|
||||||
|
|
||||||
|
|
||||||
|
// lfs declarations
|
||||||
|
lfs_t lfs;
|
||||||
|
lfs_emubd_t bd;
|
||||||
|
lfs_file_t file[4];
|
||||||
|
lfs_dir_t dir[4];
|
||||||
|
struct lfs_info info;
|
||||||
|
|
||||||
|
uint8_t buffer[1024];
|
||||||
|
uint8_t wbuffer[1024];
|
||||||
|
uint8_t rbuffer[1024];
|
||||||
|
lfs_size_t size;
|
||||||
|
lfs_size_t wsize;
|
||||||
|
lfs_size_t rsize;
|
||||||
|
|
||||||
|
uintmax_t res;
|
||||||
|
|
||||||
|
#ifndef LFS_READ_SIZE
|
||||||
|
#define LFS_READ_SIZE 16
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef LFS_PROG_SIZE
|
||||||
|
#define LFS_PROG_SIZE 16
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef LFS_BLOCK_SIZE
|
||||||
|
#define LFS_BLOCK_SIZE 512
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef LFS_BLOCK_COUNT
|
||||||
|
#define LFS_BLOCK_COUNT 1024
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef LFS_LOOKAHEAD
|
||||||
|
#define LFS_LOOKAHEAD 128
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const struct lfs_config cfg = {{
|
||||||
|
.context = &bd,
|
||||||
|
.read = &lfs_emubd_read,
|
||||||
|
.prog = &lfs_emubd_prog,
|
||||||
|
.erase = &lfs_emubd_erase,
|
||||||
|
.sync = &lfs_emubd_sync,
|
||||||
|
|
||||||
|
.read_size = LFS_READ_SIZE,
|
||||||
|
.prog_size = LFS_PROG_SIZE,
|
||||||
|
.block_size = LFS_BLOCK_SIZE,
|
||||||
|
.block_count = LFS_BLOCK_COUNT,
|
||||||
|
.lookahead = LFS_LOOKAHEAD,
|
||||||
|
}};
|
||||||
|
|
||||||
|
|
||||||
|
// Entry point
|
||||||
|
int main() {{
|
||||||
|
lfs_emubd_create(&cfg, "blocks");
|
||||||
|
|
||||||
|
{tests}
|
||||||
|
|
||||||
|
lfs_emubd_destroy(&cfg);
|
||||||
|
}}
|
||||||
49
tests/test.py
Executable file
49
tests/test.py
Executable file
@@ -0,0 +1,49 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
import subprocess
|
||||||
|
import os
|
||||||
|
|
||||||
|
def generate(test):
|
||||||
|
with open("tests/template.fmt") as file:
|
||||||
|
template = file.read()
|
||||||
|
|
||||||
|
lines = []
|
||||||
|
for line in re.split('(?<=[;{}])\n', test.read()):
|
||||||
|
match = re.match('(?: *\n)*( *)(.*)=>(.*);', line, re.DOTALL | re.MULTILINE)
|
||||||
|
if match:
|
||||||
|
tab, test, expect = match.groups()
|
||||||
|
lines.append(tab+'res = {test};'.format(test=test.strip()))
|
||||||
|
lines.append(tab+'test_assert("{name}", res, {expect});'.format(
|
||||||
|
name = re.match('\w*', test.strip()).group(),
|
||||||
|
expect = expect.strip()))
|
||||||
|
else:
|
||||||
|
lines.append(line)
|
||||||
|
|
||||||
|
with open('test.c', 'w') as file:
|
||||||
|
file.write(template.format(tests='\n'.join(lines)))
|
||||||
|
|
||||||
|
def compile():
|
||||||
|
os.environ['CFLAGS'] = os.environ.get('CFLAGS', '') + ' -Werror'
|
||||||
|
subprocess.check_call(['make', '--no-print-directory', '-s'], env=os.environ)
|
||||||
|
|
||||||
|
def execute():
|
||||||
|
subprocess.check_call(["./lfs"])
|
||||||
|
|
||||||
|
def main(test=None):
|
||||||
|
if test and not test.startswith('-'):
|
||||||
|
with open(test) as file:
|
||||||
|
generate(file)
|
||||||
|
else:
|
||||||
|
generate(sys.stdin)
|
||||||
|
|
||||||
|
compile()
|
||||||
|
|
||||||
|
if test == '-s':
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
execute()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main(*sys.argv[1:])
|
||||||
@@ -1,18 +1,16 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -euE
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Allocator tests ==="
|
echo "=== Allocator tests ==="
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
SIZE=15000
|
SIZE=15000
|
||||||
|
|
||||||
lfs_mkdir() {
|
lfs_mkdir() {
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "$1") => 0;
|
lfs_mkdir(&lfs, "$1") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
@@ -20,7 +18,7 @@ TEST
|
|||||||
}
|
}
|
||||||
|
|
||||||
lfs_remove() {
|
lfs_remove() {
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_remove(&lfs, "$1/eggs") => 0;
|
lfs_remove(&lfs, "$1/eggs") => 0;
|
||||||
lfs_remove(&lfs, "$1/bacon") => 0;
|
lfs_remove(&lfs, "$1/bacon") => 0;
|
||||||
@@ -31,23 +29,22 @@ TEST
|
|||||||
}
|
}
|
||||||
|
|
||||||
lfs_alloc_singleproc() {
|
lfs_alloc_singleproc() {
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
const char *names[] = {"bacon", "eggs", "pancakes"};
|
const char *names[] = {"bacon", "eggs", "pancakes"};
|
||||||
lfs_file_t files[sizeof(names)/sizeof(names[0])];
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
for (unsigned n = 0; n < sizeof(names)/sizeof(names[0]); n++) {
|
for (int n = 0; n < sizeof(names)/sizeof(names[0]); n++) {
|
||||||
sprintf(path, "$1/%s", names[n]);
|
sprintf((char*)buffer, "$1/%s", names[n]);
|
||||||
lfs_file_open(&lfs, &files[n], path,
|
lfs_file_open(&lfs, &file[n], (char*)buffer,
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
|
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
|
||||||
}
|
}
|
||||||
for (unsigned n = 0; n < sizeof(names)/sizeof(names[0]); n++) {
|
for (int n = 0; n < sizeof(names)/sizeof(names[0]); n++) {
|
||||||
lfs_size_t size = strlen(names[n]);
|
size = strlen(names[n]);
|
||||||
for (int i = 0; i < $SIZE; i++) {
|
for (int i = 0; i < $SIZE; i++) {
|
||||||
lfs_file_write(&lfs, &files[n], names[n], size) => size;
|
lfs_file_write(&lfs, &file[n], names[n], size) => size;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (unsigned n = 0; n < sizeof(names)/sizeof(names[0]); n++) {
|
for (int n = 0; n < sizeof(names)/sizeof(names[0]); n++) {
|
||||||
lfs_file_close(&lfs, &files[n]) => 0;
|
lfs_file_close(&lfs, &file[n]) => 0;
|
||||||
}
|
}
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
@@ -56,16 +53,16 @@ TEST
|
|||||||
lfs_alloc_multiproc() {
|
lfs_alloc_multiproc() {
|
||||||
for name in bacon eggs pancakes
|
for name in bacon eggs pancakes
|
||||||
do
|
do
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "$1/$name",
|
lfs_file_open(&lfs, &file[0], "$1/$name",
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
|
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
|
||||||
lfs_size_t size = strlen("$name");
|
size = strlen("$name");
|
||||||
memcpy(buffer, "$name", size);
|
memcpy(buffer, "$name", size);
|
||||||
for (int i = 0; i < $SIZE; i++) {
|
for (int i = 0; i < $SIZE; i++) {
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
}
|
}
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
done
|
done
|
||||||
@@ -74,15 +71,15 @@ done
|
|||||||
lfs_verify() {
|
lfs_verify() {
|
||||||
for name in bacon eggs pancakes
|
for name in bacon eggs pancakes
|
||||||
do
|
do
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "$1/$name", LFS_O_RDONLY) => 0;
|
lfs_file_open(&lfs, &file[0], "$1/$name", LFS_O_RDONLY) => 0;
|
||||||
lfs_size_t size = strlen("$name");
|
size = strlen("$name");
|
||||||
for (int i = 0; i < $SIZE; i++) {
|
for (int i = 0; i < $SIZE; i++) {
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "$name", size) => 0;
|
memcmp(buffer, "$name", size) => 0;
|
||||||
}
|
}
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
done
|
done
|
||||||
@@ -118,19 +115,18 @@ lfs_remove multiprocreuse
|
|||||||
lfs_remove singleprocreuse
|
lfs_remove singleprocreuse
|
||||||
|
|
||||||
echo "--- Exhaustion test ---"
|
echo "--- Exhaustion test ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
lfs_file_open(&lfs, &file[0], "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
||||||
lfs_size_t size = strlen("exhaustion");
|
size = strlen("exhaustion");
|
||||||
memcpy(buffer, "exhaustion", size);
|
memcpy(buffer, "exhaustion", size);
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
size = strlen("blahblahblahblah");
|
size = strlen("blahblahblahblah");
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
memcpy(buffer, "blahblahblahblah", size);
|
||||||
lfs_ssize_t res;
|
lfs_ssize_t res;
|
||||||
while (true) {
|
while (true) {
|
||||||
res = lfs_file_write(&lfs, &file, buffer, size);
|
res = lfs_file_write(&lfs, &file[0], buffer, size);
|
||||||
if (res < 0) {
|
if (res < 0) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -139,45 +135,43 @@ scripts/test.py << TEST
|
|||||||
}
|
}
|
||||||
res => LFS_ERR_NOSPC;
|
res => LFS_ERR_NOSPC;
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_RDONLY);
|
lfs_file_open(&lfs, &file[0], "exhaustion", LFS_O_RDONLY);
|
||||||
lfs_size_t size = strlen("exhaustion");
|
size = strlen("exhaustion");
|
||||||
lfs_file_size(&lfs, &file) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "exhaustion", size) => 0;
|
memcmp(buffer, "exhaustion", size) => 0;
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Exhaustion wraparound test ---"
|
echo "--- Exhaustion wraparound test ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_remove(&lfs, "exhaustion") => 0;
|
lfs_remove(&lfs, "exhaustion") => 0;
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "padding", LFS_O_WRONLY | LFS_O_CREAT);
|
lfs_file_open(&lfs, &file[0], "padding", LFS_O_WRONLY | LFS_O_CREAT);
|
||||||
lfs_size_t size = strlen("buffering");
|
size = strlen("buffering");
|
||||||
memcpy(buffer, "buffering", size);
|
memcpy(buffer, "buffering", size);
|
||||||
for (int i = 0; i < $SIZE; i++) {
|
for (int i = 0; i < $SIZE; i++) {
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
}
|
}
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_remove(&lfs, "padding") => 0;
|
lfs_remove(&lfs, "padding") => 0;
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
lfs_file_open(&lfs, &file[0], "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
||||||
size = strlen("exhaustion");
|
size = strlen("exhaustion");
|
||||||
memcpy(buffer, "exhaustion", size);
|
memcpy(buffer, "exhaustion", size);
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
size = strlen("blahblahblahblah");
|
size = strlen("blahblahblahblah");
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
memcpy(buffer, "blahblahblahblah", size);
|
||||||
lfs_ssize_t res;
|
lfs_ssize_t res;
|
||||||
while (true) {
|
while (true) {
|
||||||
res = lfs_file_write(&lfs, &file, buffer, size);
|
res = lfs_file_write(&lfs, &file[0], buffer, size);
|
||||||
if (res < 0) {
|
if (res < 0) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -186,299 +180,82 @@ scripts/test.py << TEST
|
|||||||
}
|
}
|
||||||
res => LFS_ERR_NOSPC;
|
res => LFS_ERR_NOSPC;
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_RDONLY);
|
lfs_file_open(&lfs, &file[0], "exhaustion", LFS_O_RDONLY);
|
||||||
lfs_size_t size = strlen("exhaustion");
|
size = strlen("exhaustion");
|
||||||
lfs_file_size(&lfs, &file) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "exhaustion", size) => 0;
|
memcmp(buffer, "exhaustion", size) => 0;
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_remove(&lfs, "exhaustion") => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Dir exhaustion test ---"
|
echo "--- Dir exhaustion test ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
|
lfs_stat(&lfs, "exhaustion", &info) => 0;
|
||||||
|
lfs_size_t fullsize = info.size;
|
||||||
|
lfs_remove(&lfs, "exhaustion") => 0;
|
||||||
|
|
||||||
// find out max file size
|
lfs_file_open(&lfs, &file[0], "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
||||||
lfs_mkdir(&lfs, "exhaustiondir") => 0;
|
size = strlen("blahblahblahblah");
|
||||||
lfs_size_t size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
memcpy(buffer, "blahblahblahblah", size);
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
for (lfs_size_t i = 0; i < fullsize - 2*512; i += size) {
|
||||||
int count = 0;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
int err;
|
|
||||||
while (true) {
|
|
||||||
err = lfs_file_write(&lfs, &file, buffer, size);
|
|
||||||
if (err < 0) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
count += 1;
|
|
||||||
}
|
}
|
||||||
err => LFS_ERR_NOSPC;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "exhaustion") => 0;
|
|
||||||
lfs_remove(&lfs, "exhaustiondir") => 0;
|
|
||||||
|
|
||||||
// see if dir fits with max file size
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
|
||||||
for (int i = 0; i < count; i++) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_mkdir(&lfs, "exhaustiondir") => 0;
|
lfs_mkdir(&lfs, "exhaustiondir") => 0;
|
||||||
lfs_remove(&lfs, "exhaustiondir") => 0;
|
lfs_remove(&lfs, "exhaustiondir") => 0;
|
||||||
lfs_remove(&lfs, "exhaustion") => 0;
|
|
||||||
|
|
||||||
// see if dir fits with > max file size
|
lfs_file_open(&lfs, &file[0], "exhaustion", LFS_O_WRONLY | LFS_O_APPEND);
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
size = strlen("blahblahblahblah");
|
||||||
for (int i = 0; i < count+1; i++) {
|
memcpy(buffer, "blahblahblahblah", size);
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
}
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_mkdir(&lfs, "exhaustiondir") => LFS_ERR_NOSPC;
|
lfs_mkdir(&lfs, "exhaustiondir") => LFS_ERR_NOSPC;
|
||||||
|
|
||||||
lfs_remove(&lfs, "exhaustion") => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Chained dir exhaustion test ---"
|
echo "--- Chained dir exhaustion test ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
|
lfs_stat(&lfs, "exhaustion", &info) => 0;
|
||||||
// find out max file size
|
lfs_size_t fullsize = info.size;
|
||||||
lfs_mkdir(&lfs, "exhaustiondir") => 0;
|
|
||||||
for (int i = 0; i < 10; i++) {
|
|
||||||
sprintf(path, "dirwithanexhaustivelylongnameforpadding%d", i);
|
|
||||||
lfs_mkdir(&lfs, path) => 0;
|
|
||||||
}
|
|
||||||
lfs_size_t size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
|
||||||
int count = 0;
|
|
||||||
int err;
|
|
||||||
while (true) {
|
|
||||||
err = lfs_file_write(&lfs, &file, buffer, size);
|
|
||||||
if (err < 0) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
count += 1;
|
|
||||||
}
|
|
||||||
err => LFS_ERR_NOSPC;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "exhaustion") => 0;
|
lfs_remove(&lfs, "exhaustion") => 0;
|
||||||
lfs_remove(&lfs, "exhaustiondir") => 0;
|
lfs_file_open(&lfs, &file[0], "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
||||||
for (int i = 0; i < 10; i++) {
|
size = strlen("blahblahblahblah");
|
||||||
sprintf(path, "dirwithanexhaustivelylongnameforpadding%d", i);
|
memcpy(buffer, "blahblahblahblah", size);
|
||||||
lfs_remove(&lfs, path) => 0;
|
for (lfs_size_t i = 0; i < fullsize - 19*512; i += size) {
|
||||||
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
}
|
}
|
||||||
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
|
|
||||||
// see that chained dir fails
|
for (int i = 0; i < 9; i++) {
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
sprintf((char*)buffer, "dirwithanexhaustivelylongnameforpadding%d", i);
|
||||||
for (int i = 0; i < count+1; i++) {
|
lfs_mkdir(&lfs, (char*)buffer) => 0;
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 10; i++) {
|
|
||||||
sprintf(path, "dirwithanexhaustivelylongnameforpadding%d", i);
|
|
||||||
lfs_mkdir(&lfs, path) => 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_mkdir(&lfs, "exhaustiondir") => LFS_ERR_NOSPC;
|
lfs_mkdir(&lfs, "exhaustiondir") => LFS_ERR_NOSPC;
|
||||||
|
|
||||||
// shorten file to try a second chained dir
|
lfs_remove(&lfs, "exhaustion") => 0;
|
||||||
while (true) {
|
lfs_file_open(&lfs, &file[0], "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
||||||
err = lfs_mkdir(&lfs, "exhaustiondir");
|
size = strlen("blahblahblahblah");
|
||||||
if (err != LFS_ERR_NOSPC) {
|
memcpy(buffer, "blahblahblahblah", size);
|
||||||
break;
|
for (lfs_size_t i = 0; i < fullsize - 20*512; i += size) {
|
||||||
}
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
|
|
||||||
lfs_ssize_t filesize = lfs_file_size(&lfs, &file);
|
|
||||||
filesize > 0 => true;
|
|
||||||
|
|
||||||
lfs_file_truncate(&lfs, &file, filesize - size) => 0;
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
}
|
}
|
||||||
err => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
|
|
||||||
|
lfs_mkdir(&lfs, "exhaustiondir") => 0;
|
||||||
lfs_mkdir(&lfs, "exhaustiondir2") => LFS_ERR_NOSPC;
|
lfs_mkdir(&lfs, "exhaustiondir2") => LFS_ERR_NOSPC;
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Split dir test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
// create one block hole for half a directory
|
echo "--- Results ---"
|
||||||
lfs_file_open(&lfs, &file, "bump", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
tests/stats.py
|
||||||
for (lfs_size_t i = 0; i < cfg.block_size; i += 2) {
|
|
||||||
memcpy(&buffer[i], "hi", 2);
|
|
||||||
}
|
|
||||||
lfs_file_write(&lfs, &file, buffer, cfg.block_size) => cfg.block_size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion", LFS_O_WRONLY | LFS_O_CREAT);
|
|
||||||
lfs_size_t size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
for (lfs_size_t i = 0;
|
|
||||||
i < (cfg.block_count-4)*(cfg.block_size-8);
|
|
||||||
i += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
// remount to force reset of lookahead
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
// open hole
|
|
||||||
lfs_remove(&lfs, "bump") => 0;
|
|
||||||
|
|
||||||
lfs_mkdir(&lfs, "splitdir") => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "splitdir/bump",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
for (lfs_size_t i = 0; i < cfg.block_size; i += 2) {
|
|
||||||
memcpy(&buffer[i], "hi", 2);
|
|
||||||
}
|
|
||||||
lfs_file_write(&lfs, &file, buffer, 2*cfg.block_size) => LFS_ERR_NOSPC;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Outdated lookahead test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
// fill completely with two files
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion1",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_size_t size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
for (lfs_size_t i = 0;
|
|
||||||
i < ((cfg.block_count-2)/2)*(cfg.block_size-8);
|
|
||||||
i += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion2",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
for (lfs_size_t i = 0;
|
|
||||||
i < ((cfg.block_count-2+1)/2)*(cfg.block_size-8);
|
|
||||||
i += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
// remount to force reset of lookahead
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
// rewrite one file
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion1",
|
|
||||||
LFS_O_WRONLY | LFS_O_TRUNC) => 0;
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
for (lfs_size_t i = 0;
|
|
||||||
i < ((cfg.block_count-2)/2)*(cfg.block_size-8);
|
|
||||||
i += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
// rewrite second file, this requires lookahead does not
|
|
||||||
// use old population
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion2",
|
|
||||||
LFS_O_WRONLY | LFS_O_TRUNC) => 0;
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
for (lfs_size_t i = 0;
|
|
||||||
i < ((cfg.block_count-2+1)/2)*(cfg.block_size-8);
|
|
||||||
i += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Outdated lookahead and split dir test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
// fill completely with two files
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion1",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_size_t size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
for (lfs_size_t i = 0;
|
|
||||||
i < ((cfg.block_count-2)/2)*(cfg.block_size-8);
|
|
||||||
i += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion2",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
for (lfs_size_t i = 0;
|
|
||||||
i < ((cfg.block_count-2+1)/2)*(cfg.block_size-8);
|
|
||||||
i += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
// remount to force reset of lookahead
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
// rewrite one file with a hole of one block
|
|
||||||
lfs_file_open(&lfs, &file, "exhaustion1",
|
|
||||||
LFS_O_WRONLY | LFS_O_TRUNC) => 0;
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
size = strlen("blahblahblahblah");
|
|
||||||
memcpy(buffer, "blahblahblahblah", size);
|
|
||||||
for (lfs_size_t i = 0;
|
|
||||||
i < ((cfg.block_count-2)/2 - 1)*(cfg.block_size-8);
|
|
||||||
i += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
// try to allocate a directory, should fail!
|
|
||||||
lfs_mkdir(&lfs, "split") => LFS_ERR_NOSPC;
|
|
||||||
|
|
||||||
// file should not fail
|
|
||||||
lfs_file_open(&lfs, &file, "notasplit",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_file_write(&lfs, &file, "hi", 2) => 2;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
|
|||||||
@@ -1,294 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
set -eu
|
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Attr tests ==="
|
|
||||||
rm -rf blocks
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_mkdir(&lfs, "hello") => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "hello/hello",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_file_write(&lfs, &file, "hello", strlen("hello"))
|
|
||||||
=> strlen("hello");
|
|
||||||
lfs_file_close(&lfs, &file);
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Set/get attribute ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(buffer, 0, sizeof(buffer));
|
|
||||||
lfs_setattr(&lfs, "hello", 'A', "aaaa", 4) => 0;
|
|
||||||
lfs_setattr(&lfs, "hello", 'B', "bbbbbb", 6) => 0;
|
|
||||||
lfs_setattr(&lfs, "hello", 'C', "ccccc", 5) => 0;
|
|
||||||
lfs_getattr(&lfs, "hello", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "hello", 'B', buffer+4, 6) => 6;
|
|
||||||
lfs_getattr(&lfs, "hello", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "bbbbbb", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_setattr(&lfs, "hello", 'B', "", 0) => 0;
|
|
||||||
lfs_getattr(&lfs, "hello", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "hello", 'B', buffer+4, 6) => 0;
|
|
||||||
lfs_getattr(&lfs, "hello", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "\0\0\0\0\0\0", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_removeattr(&lfs, "hello", 'B') => 0;
|
|
||||||
lfs_getattr(&lfs, "hello", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "hello", 'B', buffer+4, 6) => LFS_ERR_NOATTR;
|
|
||||||
lfs_getattr(&lfs, "hello", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "\0\0\0\0\0\0", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_setattr(&lfs, "hello", 'B', "dddddd", 6) => 0;
|
|
||||||
lfs_getattr(&lfs, "hello", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "hello", 'B', buffer+4, 6) => 6;
|
|
||||||
lfs_getattr(&lfs, "hello", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "dddddd", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_setattr(&lfs, "hello", 'B', "eee", 3) => 0;
|
|
||||||
lfs_getattr(&lfs, "hello", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "hello", 'B', buffer+4, 6) => 3;
|
|
||||||
lfs_getattr(&lfs, "hello", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "eee\0\0\0", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_setattr(&lfs, "hello", 'A', buffer, LFS_ATTR_MAX+1) => LFS_ERR_NOSPC;
|
|
||||||
lfs_setattr(&lfs, "hello", 'B', "fffffffff", 9) => 0;
|
|
||||||
lfs_getattr(&lfs, "hello", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "hello", 'B', buffer+4, 6) => 9;
|
|
||||||
lfs_getattr(&lfs, "hello", 'C', buffer+10, 5) => 5;
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(buffer, 0, sizeof(buffer));
|
|
||||||
lfs_getattr(&lfs, "hello", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "hello", 'B', buffer+4, 9) => 9;
|
|
||||||
lfs_getattr(&lfs, "hello", 'C', buffer+13, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "fffffffff", 9) => 0;
|
|
||||||
memcmp(buffer+13, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "hello/hello", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, buffer, sizeof(buffer)) => strlen("hello");
|
|
||||||
memcmp(buffer, "hello", strlen("hello")) => 0;
|
|
||||||
lfs_file_close(&lfs, &file);
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Set/get root attribute ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(buffer, 0, sizeof(buffer));
|
|
||||||
lfs_setattr(&lfs, "/", 'A', "aaaa", 4) => 0;
|
|
||||||
lfs_setattr(&lfs, "/", 'B', "bbbbbb", 6) => 0;
|
|
||||||
lfs_setattr(&lfs, "/", 'C', "ccccc", 5) => 0;
|
|
||||||
lfs_getattr(&lfs, "/", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "/", 'B', buffer+4, 6) => 6;
|
|
||||||
lfs_getattr(&lfs, "/", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "bbbbbb", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_setattr(&lfs, "/", 'B', "", 0) => 0;
|
|
||||||
lfs_getattr(&lfs, "/", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "/", 'B', buffer+4, 6) => 0;
|
|
||||||
lfs_getattr(&lfs, "/", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "\0\0\0\0\0\0", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_removeattr(&lfs, "/", 'B') => 0;
|
|
||||||
lfs_getattr(&lfs, "/", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "/", 'B', buffer+4, 6) => LFS_ERR_NOATTR;
|
|
||||||
lfs_getattr(&lfs, "/", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "\0\0\0\0\0\0", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_setattr(&lfs, "/", 'B', "dddddd", 6) => 0;
|
|
||||||
lfs_getattr(&lfs, "/", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "/", 'B', buffer+4, 6) => 6;
|
|
||||||
lfs_getattr(&lfs, "/", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "dddddd", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_setattr(&lfs, "/", 'B', "eee", 3) => 0;
|
|
||||||
lfs_getattr(&lfs, "/", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "/", 'B', buffer+4, 6) => 3;
|
|
||||||
lfs_getattr(&lfs, "/", 'C', buffer+10, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "eee\0\0\0", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_setattr(&lfs, "/", 'A', buffer, LFS_ATTR_MAX+1) => LFS_ERR_NOSPC;
|
|
||||||
lfs_setattr(&lfs, "/", 'B', "fffffffff", 9) => 0;
|
|
||||||
lfs_getattr(&lfs, "/", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "/", 'B', buffer+4, 6) => 9;
|
|
||||||
lfs_getattr(&lfs, "/", 'C', buffer+10, 5) => 5;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(buffer, 0, sizeof(buffer));
|
|
||||||
lfs_getattr(&lfs, "/", 'A', buffer, 4) => 4;
|
|
||||||
lfs_getattr(&lfs, "/", 'B', buffer+4, 9) => 9;
|
|
||||||
lfs_getattr(&lfs, "/", 'C', buffer+13, 5) => 5;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "fffffffff", 9) => 0;
|
|
||||||
memcmp(buffer+13, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "hello/hello", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, buffer, sizeof(buffer)) => strlen("hello");
|
|
||||||
memcmp(buffer, "hello", strlen("hello")) => 0;
|
|
||||||
lfs_file_close(&lfs, &file);
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Set/get file attribute ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(buffer, 0, sizeof(buffer));
|
|
||||||
struct lfs_attr attrs1[] = {
|
|
||||||
{'A', buffer, 4},
|
|
||||||
{'B', buffer+4, 6},
|
|
||||||
{'C', buffer+10, 5},
|
|
||||||
};
|
|
||||||
struct lfs_file_config cfg1 = {.attrs=attrs1, .attr_count=3};
|
|
||||||
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_WRONLY, &cfg1) => 0;
|
|
||||||
memcpy(buffer, "aaaa", 4);
|
|
||||||
memcpy(buffer+4, "bbbbbb", 6);
|
|
||||||
memcpy(buffer+10, "ccccc", 5);
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memset(buffer, 0, 15);
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_RDONLY, &cfg1) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "bbbbbb", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
attrs1[1].size = 0;
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_WRONLY, &cfg1) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memset(buffer, 0, 15);
|
|
||||||
attrs1[1].size = 6;
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_RDONLY, &cfg1) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "\0\0\0\0\0\0", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
attrs1[1].size = 6;
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_WRONLY, &cfg1) => 0;
|
|
||||||
memcpy(buffer+4, "dddddd", 6);
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memset(buffer, 0, 15);
|
|
||||||
attrs1[1].size = 6;
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_RDONLY, &cfg1) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "dddddd", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
attrs1[1].size = 3;
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_WRONLY, &cfg1) => 0;
|
|
||||||
memcpy(buffer+4, "eee", 3);
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memset(buffer, 0, 15);
|
|
||||||
attrs1[1].size = 6;
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_RDONLY, &cfg1) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "eee\0\0\0", 6) => 0;
|
|
||||||
memcmp(buffer+10, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
attrs1[0].size = LFS_ATTR_MAX+1;
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_WRONLY, &cfg1)
|
|
||||||
=> LFS_ERR_NOSPC;
|
|
||||||
|
|
||||||
struct lfs_attr attrs2[] = {
|
|
||||||
{'A', buffer, 4},
|
|
||||||
{'B', buffer+4, 9},
|
|
||||||
{'C', buffer+13, 5},
|
|
||||||
};
|
|
||||||
struct lfs_file_config cfg2 = {.attrs=attrs2, .attr_count=3};
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_RDWR, &cfg2) => 0;
|
|
||||||
memcpy(buffer+4, "fffffffff", 9);
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
attrs1[0].size = 4;
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_RDONLY, &cfg1) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(buffer, 0, sizeof(buffer));
|
|
||||||
struct lfs_attr attrs2[] = {
|
|
||||||
{'A', buffer, 4},
|
|
||||||
{'B', buffer+4, 9},
|
|
||||||
{'C', buffer+13, 5},
|
|
||||||
};
|
|
||||||
struct lfs_file_config cfg2 = {.attrs=attrs2, .attr_count=3};
|
|
||||||
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_RDONLY, &cfg2) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
memcmp(buffer, "aaaa", 4) => 0;
|
|
||||||
memcmp(buffer+4, "fffffffff", 9) => 0;
|
|
||||||
memcmp(buffer+13, "ccccc", 5) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "hello/hello", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, buffer, sizeof(buffer)) => strlen("hello");
|
|
||||||
memcmp(buffer, "hello", strlen("hello")) => 0;
|
|
||||||
lfs_file_close(&lfs, &file);
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Deferred file attributes ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(buffer, 0, sizeof(buffer));
|
|
||||||
struct lfs_attr attrs1[] = {
|
|
||||||
{'B', "gggg", 4},
|
|
||||||
{'C', "", 0},
|
|
||||||
{'D', "hhhh", 4},
|
|
||||||
};
|
|
||||||
struct lfs_file_config cfg1 = {.attrs=attrs1, .attr_count=3};
|
|
||||||
|
|
||||||
lfs_file_opencfg(&lfs, &file, "hello/hello", LFS_O_WRONLY, &cfg1) => 0;
|
|
||||||
|
|
||||||
lfs_getattr(&lfs, "hello/hello", 'B', buffer, 9) => 9;
|
|
||||||
lfs_getattr(&lfs, "hello/hello", 'C', buffer+9, 9) => 5;
|
|
||||||
lfs_getattr(&lfs, "hello/hello", 'D', buffer+18, 9) => LFS_ERR_NOATTR;
|
|
||||||
memcmp(buffer, "fffffffff", 9) => 0;
|
|
||||||
memcmp(buffer+9, "ccccc\0\0\0\0", 9) => 0;
|
|
||||||
memcmp(buffer+18, "\0\0\0\0\0\0\0\0\0", 9) => 0;
|
|
||||||
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
lfs_getattr(&lfs, "hello/hello", 'B', buffer, 9) => 4;
|
|
||||||
lfs_getattr(&lfs, "hello/hello", 'C', buffer+9, 9) => 0;
|
|
||||||
lfs_getattr(&lfs, "hello/hello", 'D', buffer+18, 9) => 4;
|
|
||||||
memcmp(buffer, "gggg\0\0\0\0\0", 9) => 0;
|
|
||||||
memcmp(buffer+9, "\0\0\0\0\0\0\0\0\0", 9) => 0;
|
|
||||||
memcmp(buffer+18, "hhhh\0\0\0\0\0", 9) => 0;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Corrupt tests ==="
|
echo "=== Corrupt tests ==="
|
||||||
|
|
||||||
@@ -9,7 +7,7 @@ NAMEMULT=64
|
|||||||
FILEMULT=1
|
FILEMULT=1
|
||||||
|
|
||||||
lfs_mktree() {
|
lfs_mktree() {
|
||||||
scripts/test.py ${1:-} << TEST
|
tests/test.py ${1:-} << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
@@ -25,22 +23,22 @@ scripts/test.py ${1:-} << TEST
|
|||||||
buffer[j+$NAMEMULT+1] = '0'+i;
|
buffer[j+$NAMEMULT+1] = '0'+i;
|
||||||
}
|
}
|
||||||
buffer[2*$NAMEMULT+1] = '\0';
|
buffer[2*$NAMEMULT+1] = '\0';
|
||||||
lfs_file_open(&lfs, &file, (char*)buffer,
|
lfs_file_open(&lfs, &file[0], (char*)buffer,
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
|
|
||||||
lfs_size_t size = $NAMEMULT;
|
size = $NAMEMULT;
|
||||||
for (int j = 0; j < i*$FILEMULT; j++) {
|
for (int j = 0; j < i*$FILEMULT; j++) {
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
}
|
}
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_chktree() {
|
lfs_chktree() {
|
||||||
scripts/test.py ${1:-} << TEST
|
tests/test.py ${1:-} << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
for (int i = 1; i < 10; i++) {
|
for (int i = 1; i < 10; i++) {
|
||||||
for (int j = 0; j < $NAMEMULT; j++) {
|
for (int j = 0; j < $NAMEMULT; j++) {
|
||||||
@@ -55,16 +53,15 @@ scripts/test.py ${1:-} << TEST
|
|||||||
buffer[j+$NAMEMULT+1] = '0'+i;
|
buffer[j+$NAMEMULT+1] = '0'+i;
|
||||||
}
|
}
|
||||||
buffer[2*$NAMEMULT+1] = '\0';
|
buffer[2*$NAMEMULT+1] = '\0';
|
||||||
lfs_file_open(&lfs, &file, (char*)buffer, LFS_O_RDONLY) => 0;
|
lfs_file_open(&lfs, &file[0], (char*)buffer, LFS_O_RDONLY) => 0;
|
||||||
|
|
||||||
lfs_size_t size = $NAMEMULT;
|
size = $NAMEMULT;
|
||||||
for (int j = 0; j < i*$FILEMULT; j++) {
|
for (int j = 0; j < i*$FILEMULT; j++) {
|
||||||
uint8_t rbuffer[1024];
|
lfs_file_read(&lfs, &file[0], rbuffer, size) => size;
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
|
||||||
memcmp(buffer, rbuffer, size) => 0;
|
memcmp(buffer, rbuffer, size) => 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
}
|
}
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
@@ -74,25 +71,13 @@ echo "--- Sanity check ---"
|
|||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
lfs_mktree
|
lfs_mktree
|
||||||
lfs_chktree
|
lfs_chktree
|
||||||
BLOCKS="$(ls blocks | grep -vw '[01]')"
|
|
||||||
|
|
||||||
echo "--- Block corruption ---"
|
echo "--- Block corruption ---"
|
||||||
for b in $BLOCKS
|
for i in {0..33}
|
||||||
do
|
do
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
mkdir blocks
|
mkdir blocks
|
||||||
ln -s /dev/zero blocks/$b
|
ln -s /dev/zero blocks/$(printf '%x' $i)
|
||||||
lfs_mktree
|
|
||||||
lfs_chktree
|
|
||||||
done
|
|
||||||
|
|
||||||
echo "--- Block persistance ---"
|
|
||||||
for b in $BLOCKS
|
|
||||||
do
|
|
||||||
rm -rf blocks
|
|
||||||
mkdir blocks
|
|
||||||
lfs_mktree
|
|
||||||
chmod a-w blocks/$b || true
|
|
||||||
lfs_mktree
|
lfs_mktree
|
||||||
lfs_chktree
|
lfs_chktree
|
||||||
done
|
done
|
||||||
@@ -100,7 +85,7 @@ done
|
|||||||
echo "--- Big region corruption ---"
|
echo "--- Big region corruption ---"
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
mkdir blocks
|
mkdir blocks
|
||||||
for i in {2..512}
|
for i in {2..255}
|
||||||
do
|
do
|
||||||
ln -s /dev/zero blocks/$(printf '%x' $i)
|
ln -s /dev/zero blocks/$(printf '%x' $i)
|
||||||
done
|
done
|
||||||
@@ -110,11 +95,12 @@ lfs_chktree
|
|||||||
echo "--- Alternating corruption ---"
|
echo "--- Alternating corruption ---"
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
mkdir blocks
|
mkdir blocks
|
||||||
for i in {2..1024..2}
|
for i in {2..511..2}
|
||||||
do
|
do
|
||||||
ln -s /dev/zero blocks/$(printf '%x' $i)
|
ln -s /dev/zero blocks/$(printf '%x' $i)
|
||||||
done
|
done
|
||||||
lfs_mktree
|
lfs_mktree
|
||||||
lfs_chktree
|
lfs_chktree
|
||||||
|
|
||||||
scripts/results.py
|
echo "--- Results ---"
|
||||||
|
tests/stats.py
|
||||||
|
|||||||
@@ -1,191 +1,187 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Directory tests ==="
|
|
||||||
|
|
||||||
LARGESIZE=128
|
LARGESIZE=128
|
||||||
|
|
||||||
|
echo "=== Directory tests ==="
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Root directory ---"
|
echo "--- Root directory ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Directory creation ---"
|
echo "--- Directory creation ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "potato") => 0;
|
lfs_mkdir(&lfs, "potato") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- File creation ---"
|
echo "--- File creation ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "burito", LFS_O_CREAT | LFS_O_WRONLY) => 0;
|
lfs_file_open(&lfs, &file[0], "burito", LFS_O_CREAT | LFS_O_WRONLY) => 0;
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Directory iteration ---"
|
echo "--- Directory iteration ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "burito") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "potato") => 0;
|
strcmp(info.name, "potato") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
strcmp(info.name, "burito") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Directory failures ---"
|
echo "--- Directory failures ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "potato") => LFS_ERR_EXIST;
|
lfs_mkdir(&lfs, "potato") => LFS_ERR_EXISTS;
|
||||||
lfs_dir_open(&lfs, &dir, "tomato") => LFS_ERR_NOENT;
|
lfs_dir_open(&lfs, &dir[0], "tomato") => LFS_ERR_NOENT;
|
||||||
lfs_dir_open(&lfs, &dir, "burito") => LFS_ERR_NOTDIR;
|
lfs_dir_open(&lfs, &dir[0], "burito") => LFS_ERR_NOTDIR;
|
||||||
lfs_file_open(&lfs, &file, "tomato", LFS_O_RDONLY) => LFS_ERR_NOENT;
|
lfs_file_open(&lfs, &file[0], "tomato", LFS_O_RDONLY) => LFS_ERR_NOENT;
|
||||||
lfs_file_open(&lfs, &file, "potato", LFS_O_RDONLY) => LFS_ERR_ISDIR;
|
lfs_file_open(&lfs, &file[0], "potato", LFS_O_RDONLY) => LFS_ERR_ISDIR;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Nested directories ---"
|
echo "--- Nested directories ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "potato/baked") => 0;
|
lfs_mkdir(&lfs, "potato/baked") => 0;
|
||||||
lfs_mkdir(&lfs, "potato/sweet") => 0;
|
lfs_mkdir(&lfs, "potato/sweet") => 0;
|
||||||
lfs_mkdir(&lfs, "potato/fried") => 0;
|
lfs_mkdir(&lfs, "potato/fried") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "potato") => 0;
|
lfs_dir_open(&lfs, &dir[0], "potato") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "baked") => 0;
|
strcmp(info.name, "baked") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "fried") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "sweet") => 0;
|
strcmp(info.name, "sweet") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
strcmp(info.name, "fried") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Multi-block directory ---"
|
echo "--- Multi-block directory ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "cactus") => 0;
|
lfs_mkdir(&lfs, "cactus") => 0;
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
for (int i = 0; i < $LARGESIZE; i++) {
|
||||||
sprintf(path, "cactus/test%03d", i);
|
sprintf((char*)buffer, "cactus/test%d", i);
|
||||||
lfs_mkdir(&lfs, path) => 0;
|
lfs_mkdir(&lfs, (char*)buffer) => 0;
|
||||||
}
|
}
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "cactus") => 0;
|
lfs_dir_open(&lfs, &dir[0], "cactus") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
for (int i = 0; i < $LARGESIZE; i++) {
|
||||||
sprintf(path, "test%03d", i);
|
sprintf((char*)buffer, "test%d", i);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
}
|
}
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Directory remove ---"
|
echo "--- Directory remove ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_remove(&lfs, "potato") => LFS_ERR_NOTEMPTY;
|
lfs_remove(&lfs, "potato") => LFS_ERR_INVAL;
|
||||||
lfs_remove(&lfs, "potato/sweet") => 0;
|
lfs_remove(&lfs, "potato/sweet") => 0;
|
||||||
lfs_remove(&lfs, "potato/baked") => 0;
|
lfs_remove(&lfs, "potato/baked") => 0;
|
||||||
lfs_remove(&lfs, "potato/fried") => 0;
|
lfs_remove(&lfs, "potato/fried") => 0;
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "potato") => 0;
|
lfs_dir_open(&lfs, &dir[0], "potato") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
|
|
||||||
lfs_remove(&lfs, "potato") => 0;
|
lfs_remove(&lfs, "potato") => 0;
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "burito") => 0;
|
strcmp(info.name, "burito") => 0;
|
||||||
info.type => LFS_TYPE_REG;
|
info.type => LFS_TYPE_REG;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "cactus") => 0;
|
strcmp(info.name, "cactus") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "burito") => 0;
|
strcmp(info.name, "burito") => 0;
|
||||||
info.type => LFS_TYPE_REG;
|
info.type => LFS_TYPE_REG;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "cactus") => 0;
|
strcmp(info.name, "cactus") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Directory rename ---"
|
echo "--- Directory rename ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "coldpotato") => 0;
|
lfs_mkdir(&lfs, "coldpotato") => 0;
|
||||||
lfs_mkdir(&lfs, "coldpotato/baked") => 0;
|
lfs_mkdir(&lfs, "coldpotato/baked") => 0;
|
||||||
@@ -193,297 +189,131 @@ scripts/test.py << TEST
|
|||||||
lfs_mkdir(&lfs, "coldpotato/fried") => 0;
|
lfs_mkdir(&lfs, "coldpotato/fried") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_rename(&lfs, "coldpotato", "hotpotato") => 0;
|
lfs_rename(&lfs, "coldpotato", "hotpotato") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "hotpotato") => 0;
|
lfs_dir_open(&lfs, &dir[0], "hotpotato") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "baked") => 0;
|
strcmp(info.name, "baked") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "fried") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "sweet") => 0;
|
strcmp(info.name, "sweet") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
strcmp(info.name, "fried") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "warmpotato") => 0;
|
lfs_mkdir(&lfs, "warmpotato") => 0;
|
||||||
lfs_mkdir(&lfs, "warmpotato/mushy") => 0;
|
lfs_mkdir(&lfs, "warmpotato/mushy") => 0;
|
||||||
lfs_rename(&lfs, "hotpotato", "warmpotato") => LFS_ERR_NOTEMPTY;
|
lfs_rename(&lfs, "hotpotato", "warmpotato") => LFS_ERR_INVAL;
|
||||||
|
|
||||||
lfs_remove(&lfs, "warmpotato/mushy") => 0;
|
lfs_remove(&lfs, "warmpotato/mushy") => 0;
|
||||||
lfs_rename(&lfs, "hotpotato", "warmpotato") => 0;
|
lfs_rename(&lfs, "hotpotato", "warmpotato") => 0;
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "warmpotato") => 0;
|
lfs_dir_open(&lfs, &dir[0], "warmpotato") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "baked") => 0;
|
strcmp(info.name, "baked") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "fried") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "sweet") => 0;
|
strcmp(info.name, "sweet") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
strcmp(info.name, "fried") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "coldpotato") => 0;
|
lfs_mkdir(&lfs, "coldpotato") => 0;
|
||||||
lfs_rename(&lfs, "warmpotato/baked", "coldpotato/baked") => 0;
|
lfs_rename(&lfs, "warmpotato/baked", "coldpotato/baked") => 0;
|
||||||
lfs_rename(&lfs, "warmpotato/sweet", "coldpotato/sweet") => 0;
|
lfs_rename(&lfs, "warmpotato/sweet", "coldpotato/sweet") => 0;
|
||||||
lfs_rename(&lfs, "warmpotato/fried", "coldpotato/fried") => 0;
|
lfs_rename(&lfs, "warmpotato/fried", "coldpotato/fried") => 0;
|
||||||
lfs_remove(&lfs, "coldpotato") => LFS_ERR_NOTEMPTY;
|
lfs_remove(&lfs, "coldpotato") => LFS_ERR_INVAL;
|
||||||
lfs_remove(&lfs, "warmpotato") => 0;
|
lfs_remove(&lfs, "warmpotato") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "coldpotato") => 0;
|
lfs_dir_open(&lfs, &dir[0], "coldpotato") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "baked") => 0;
|
strcmp(info.name, "baked") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "fried") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "sweet") => 0;
|
strcmp(info.name, "sweet") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
strcmp(info.name, "fried") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Recursive remove ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_remove(&lfs, "coldpotato") => LFS_ERR_NOTEMPTY;
|
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "coldpotato") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
|
|
||||||
while (true) {
|
|
||||||
int err = lfs_dir_read(&lfs, &dir, &info);
|
|
||||||
err >= 0 => 1;
|
|
||||||
if (err == 0) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
strcpy(path, "coldpotato/");
|
|
||||||
strcat(path, info.name);
|
|
||||||
lfs_remove(&lfs, path) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "coldpotato") => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
strcmp(info.name, "..") => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "burito") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "cactus") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Multi-block rename ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
|
||||||
char oldpath[1024];
|
|
||||||
char newpath[1024];
|
|
||||||
sprintf(oldpath, "cactus/test%03d", i);
|
|
||||||
sprintf(newpath, "cactus/tedd%03d", i);
|
|
||||||
lfs_rename(&lfs, oldpath, newpath) => 0;
|
|
||||||
}
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "cactus") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
|
||||||
sprintf(path, "tedd%03d", i);
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, path) => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
}
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Multi-block remove ---"
|
echo "--- Multi-block remove ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_remove(&lfs, "cactus") => LFS_ERR_NOTEMPTY;
|
lfs_remove(&lfs, "cactus") => LFS_ERR_INVAL;
|
||||||
|
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
for (int i = 0; i < $LARGESIZE; i++) {
|
||||||
sprintf(path, "cactus/tedd%03d", i);
|
sprintf((char*)buffer, "cactus/test%d", i);
|
||||||
lfs_remove(&lfs, path) => 0;
|
lfs_remove(&lfs, (char*)buffer) => 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_remove(&lfs, "cactus") => 0;
|
lfs_remove(&lfs, "cactus") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "burito") => 0;
|
strcmp(info.name, "burito") => 0;
|
||||||
info.type => LFS_TYPE_REG;
|
info.type => LFS_TYPE_REG;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
strcmp(info.name, "coldpotato") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Multi-block directory with files ---"
|
echo "--- Results ---"
|
||||||
scripts/test.py << TEST
|
tests/stats.py
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_mkdir(&lfs, "prickly-pear") => 0;
|
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
|
||||||
sprintf(path, "prickly-pear/test%03d", i);
|
|
||||||
lfs_file_open(&lfs, &file, path, LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_size_t size = 6;
|
|
||||||
memcpy(buffer, "Hello", size);
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
}
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "prickly-pear") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
|
||||||
sprintf(path, "test%03d", i);
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, path) => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 6;
|
|
||||||
}
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Multi-block rename with files ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
|
||||||
char oldpath[1024];
|
|
||||||
char newpath[1024];
|
|
||||||
sprintf(oldpath, "prickly-pear/test%03d", i);
|
|
||||||
sprintf(newpath, "prickly-pear/tedd%03d", i);
|
|
||||||
lfs_rename(&lfs, oldpath, newpath) => 0;
|
|
||||||
}
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "prickly-pear") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
|
||||||
sprintf(path, "tedd%03d", i);
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, path) => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 6;
|
|
||||||
}
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Multi-block remove with files ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_remove(&lfs, "prickly-pear") => LFS_ERR_NOTEMPTY;
|
|
||||||
|
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
|
||||||
sprintf(path, "prickly-pear/tedd%03d", i);
|
|
||||||
lfs_remove(&lfs, path) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "prickly-pear") => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "burito") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
|
|||||||
@@ -1,251 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
set -eu
|
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Entry tests ==="
|
|
||||||
|
|
||||||
# Note: These tests are intended for 512 byte inline size at different
|
|
||||||
# inline sizes they should still pass, but won't be testing anything
|
|
||||||
|
|
||||||
rm -rf blocks
|
|
||||||
function read_file {
|
|
||||||
cat << TEST
|
|
||||||
|
|
||||||
size = $2;
|
|
||||||
lfs_file_open(&lfs, &file, "$1", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
|
||||||
memcmp(rbuffer, wbuffer, size) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
TEST
|
|
||||||
}
|
|
||||||
|
|
||||||
function write_file {
|
|
||||||
cat << TEST
|
|
||||||
|
|
||||||
size = $2;
|
|
||||||
lfs_file_open(&lfs, &file, "$1",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_TRUNC) => 0;
|
|
||||||
memset(wbuffer, 'c', size);
|
|
||||||
lfs_file_write(&lfs, &file, wbuffer, size) => size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
TEST
|
|
||||||
}
|
|
||||||
|
|
||||||
echo "--- Entry grow test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
lfs_size_t size;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
$(write_file "hi0" 20)
|
|
||||||
$(write_file "hi1" 20)
|
|
||||||
$(write_file "hi2" 20)
|
|
||||||
$(write_file "hi3" 20)
|
|
||||||
|
|
||||||
$(read_file "hi1" 20)
|
|
||||||
$(write_file "hi1" 200)
|
|
||||||
|
|
||||||
$(read_file "hi0" 20)
|
|
||||||
$(read_file "hi1" 200)
|
|
||||||
$(read_file "hi2" 20)
|
|
||||||
$(read_file "hi3" 20)
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Entry shrink test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
lfs_size_t size;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
$(write_file "hi0" 20)
|
|
||||||
$(write_file "hi1" 200)
|
|
||||||
$(write_file "hi2" 20)
|
|
||||||
$(write_file "hi3" 20)
|
|
||||||
|
|
||||||
$(read_file "hi1" 200)
|
|
||||||
$(write_file "hi1" 20)
|
|
||||||
|
|
||||||
$(read_file "hi0" 20)
|
|
||||||
$(read_file "hi1" 20)
|
|
||||||
$(read_file "hi2" 20)
|
|
||||||
$(read_file "hi3" 20)
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Entry spill test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
lfs_size_t size;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
$(write_file "hi0" 200)
|
|
||||||
$(write_file "hi1" 200)
|
|
||||||
$(write_file "hi2" 200)
|
|
||||||
$(write_file "hi3" 200)
|
|
||||||
|
|
||||||
$(read_file "hi0" 200)
|
|
||||||
$(read_file "hi1" 200)
|
|
||||||
$(read_file "hi2" 200)
|
|
||||||
$(read_file "hi3" 200)
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Entry push spill test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
lfs_size_t size;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
$(write_file "hi0" 200)
|
|
||||||
$(write_file "hi1" 20)
|
|
||||||
$(write_file "hi2" 200)
|
|
||||||
$(write_file "hi3" 200)
|
|
||||||
|
|
||||||
$(read_file "hi1" 20)
|
|
||||||
$(write_file "hi1" 200)
|
|
||||||
|
|
||||||
$(read_file "hi0" 200)
|
|
||||||
$(read_file "hi1" 200)
|
|
||||||
$(read_file "hi2" 200)
|
|
||||||
$(read_file "hi3" 200)
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Entry push spill two test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
lfs_size_t size;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
$(write_file "hi0" 200)
|
|
||||||
$(write_file "hi1" 20)
|
|
||||||
$(write_file "hi2" 200)
|
|
||||||
$(write_file "hi3" 200)
|
|
||||||
$(write_file "hi4" 200)
|
|
||||||
|
|
||||||
$(read_file "hi1" 20)
|
|
||||||
$(write_file "hi1" 200)
|
|
||||||
|
|
||||||
$(read_file "hi0" 200)
|
|
||||||
$(read_file "hi1" 200)
|
|
||||||
$(read_file "hi2" 200)
|
|
||||||
$(read_file "hi3" 200)
|
|
||||||
$(read_file "hi4" 200)
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Entry drop test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
lfs_size_t size;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
$(write_file "hi0" 200)
|
|
||||||
$(write_file "hi1" 200)
|
|
||||||
$(write_file "hi2" 200)
|
|
||||||
$(write_file "hi3" 200)
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "hi1") => 0;
|
|
||||||
lfs_stat(&lfs, "hi1", &info) => LFS_ERR_NOENT;
|
|
||||||
$(read_file "hi0" 200)
|
|
||||||
$(read_file "hi2" 200)
|
|
||||||
$(read_file "hi3" 200)
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "hi2") => 0;
|
|
||||||
lfs_stat(&lfs, "hi2", &info) => LFS_ERR_NOENT;
|
|
||||||
$(read_file "hi0" 200)
|
|
||||||
$(read_file "hi3" 200)
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "hi3") => 0;
|
|
||||||
lfs_stat(&lfs, "hi3", &info) => LFS_ERR_NOENT;
|
|
||||||
$(read_file "hi0" 200)
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "hi0") => 0;
|
|
||||||
lfs_stat(&lfs, "hi0", &info) => LFS_ERR_NOENT;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Create too big ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(path, 'm', 200);
|
|
||||||
path[200] = '\0';
|
|
||||||
|
|
||||||
lfs_size_t size = 400;
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_TRUNC) => 0;
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
memset(wbuffer, 'c', size);
|
|
||||||
lfs_file_write(&lfs, &file, wbuffer, size) => size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
size = 400;
|
|
||||||
lfs_file_open(&lfs, &file, path, LFS_O_RDONLY) => 0;
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
|
||||||
memcmp(rbuffer, wbuffer, size) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Resize too big ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(path, 'm', 200);
|
|
||||||
path[200] = '\0';
|
|
||||||
|
|
||||||
lfs_size_t size = 40;
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_TRUNC) => 0;
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
memset(wbuffer, 'c', size);
|
|
||||||
lfs_file_write(&lfs, &file, wbuffer, size) => size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
size = 40;
|
|
||||||
lfs_file_open(&lfs, &file, path, LFS_O_RDONLY) => 0;
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
|
||||||
memcmp(rbuffer, wbuffer, size) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
size = 400;
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_TRUNC) => 0;
|
|
||||||
memset(wbuffer, 'c', size);
|
|
||||||
lfs_file_write(&lfs, &file, wbuffer, size) => size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
size = 400;
|
|
||||||
lfs_file_open(&lfs, &file, path, LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
|
||||||
memcmp(rbuffer, wbuffer, size) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
@@ -1,76 +1,67 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== File tests ==="
|
|
||||||
|
|
||||||
SMALLSIZE=32
|
SMALLSIZE=32
|
||||||
MEDIUMSIZE=8192
|
MEDIUMSIZE=8192
|
||||||
LARGESIZE=262144
|
LARGESIZE=262144
|
||||||
|
|
||||||
|
echo "=== File tests ==="
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Simple file test ---"
|
echo "--- Simple file test ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "hello", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
lfs_file_open(&lfs, &file[0], "hello", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
lfs_size_t size = strlen("Hello World!\n");
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
memcpy(wbuffer, "Hello World!\n", size);
|
|
||||||
lfs_file_write(&lfs, &file, wbuffer, size) => size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "hello", LFS_O_RDONLY) => 0;
|
|
||||||
size = strlen("Hello World!\n");
|
size = strlen("Hello World!\n");
|
||||||
uint8_t rbuffer[1024];
|
memcpy(wbuffer, "Hello World!\n", size);
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
lfs_file_write(&lfs, &file[0], wbuffer, size) => size;
|
||||||
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
|
|
||||||
|
lfs_file_open(&lfs, &file[0], "hello", LFS_O_RDONLY) => 0;
|
||||||
|
size = strlen("Hello World!\n");
|
||||||
|
lfs_file_read(&lfs, &file[0], rbuffer, size) => size;
|
||||||
memcmp(rbuffer, wbuffer, size) => 0;
|
memcmp(rbuffer, wbuffer, size) => 0;
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
w_test() {
|
w_test() {
|
||||||
scripts/test.py ${4:-} << TEST
|
tests/test.py << TEST
|
||||||
lfs_size_t size = $1;
|
lfs_size_t size = $1;
|
||||||
lfs_size_t chunk = 31;
|
lfs_size_t chunk = 31;
|
||||||
srand(0);
|
srand(0);
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "$2",
|
lfs_file_open(&lfs, &file[0], "$2", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
${3:-LFS_O_WRONLY | LFS_O_CREAT | LFS_O_TRUNC}) => 0;
|
|
||||||
for (lfs_size_t i = 0; i < size; i += chunk) {
|
for (lfs_size_t i = 0; i < size; i += chunk) {
|
||||||
chunk = (chunk < size - i) ? chunk : size - i;
|
chunk = (chunk < size - i) ? chunk : size - i;
|
||||||
for (lfs_size_t b = 0; b < chunk; b++) {
|
for (lfs_size_t b = 0; b < chunk; b++) {
|
||||||
buffer[b] = rand() & 0xff;
|
buffer[b] = rand() & 0xff;
|
||||||
}
|
}
|
||||||
lfs_file_write(&lfs, &file, buffer, chunk) => chunk;
|
lfs_file_write(&lfs, &file[0], buffer, chunk) => chunk;
|
||||||
}
|
}
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
}
|
}
|
||||||
|
|
||||||
r_test() {
|
r_test() {
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_size_t size = $1;
|
lfs_size_t size = $1;
|
||||||
lfs_size_t chunk = 29;
|
lfs_size_t chunk = 29;
|
||||||
srand(0);
|
srand(0);
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_stat(&lfs, "$2", &info) => 0;
|
lfs_file_open(&lfs, &file[0], "$2", LFS_O_RDONLY) => 0;
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => size;
|
|
||||||
lfs_file_open(&lfs, &file, "$2", ${3:-LFS_O_RDONLY}) => 0;
|
|
||||||
for (lfs_size_t i = 0; i < size; i += chunk) {
|
for (lfs_size_t i = 0; i < size; i += chunk) {
|
||||||
chunk = (chunk < size - i) ? chunk : size - i;
|
chunk = (chunk < size - i) ? chunk : size - i;
|
||||||
lfs_file_read(&lfs, &file, buffer, chunk) => chunk;
|
lfs_file_read(&lfs, &file[0], buffer, chunk) => chunk;
|
||||||
for (lfs_size_t b = 0; b < chunk && i+b < size; b++) {
|
for (lfs_size_t b = 0; b < chunk && i+b < size; b++) {
|
||||||
buffer[b] => rand() & 0xff;
|
buffer[b] => rand() & 0xff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
}
|
}
|
||||||
@@ -87,135 +78,37 @@ echo "--- Large file test ---"
|
|||||||
w_test $LARGESIZE largeavacado
|
w_test $LARGESIZE largeavacado
|
||||||
r_test $LARGESIZE largeavacado
|
r_test $LARGESIZE largeavacado
|
||||||
|
|
||||||
echo "--- Zero file test ---"
|
|
||||||
w_test 0 noavacado
|
|
||||||
r_test 0 noavacado
|
|
||||||
|
|
||||||
echo "--- Truncate small test ---"
|
|
||||||
w_test $SMALLSIZE mediumavacado
|
|
||||||
r_test $SMALLSIZE mediumavacado
|
|
||||||
w_test $MEDIUMSIZE mediumavacado
|
|
||||||
r_test $MEDIUMSIZE mediumavacado
|
|
||||||
|
|
||||||
echo "--- Truncate zero test ---"
|
|
||||||
w_test $SMALLSIZE noavacado
|
|
||||||
r_test $SMALLSIZE noavacado
|
|
||||||
w_test 0 noavacado
|
|
||||||
r_test 0 noavacado
|
|
||||||
|
|
||||||
echo "--- Non-overlap check ---"
|
echo "--- Non-overlap check ---"
|
||||||
r_test $SMALLSIZE smallavacado
|
r_test $SMALLSIZE smallavacado
|
||||||
r_test $MEDIUMSIZE mediumavacado
|
r_test $MEDIUMSIZE mediumavacado
|
||||||
r_test $LARGESIZE largeavacado
|
r_test $LARGESIZE largeavacado
|
||||||
r_test 0 noavacado
|
|
||||||
|
|
||||||
echo "--- Dir check ---"
|
echo "--- Dir check ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hello") => 0;
|
strcmp(info.name, "hello") => 0;
|
||||||
info.type => LFS_TYPE_REG;
|
info.type => LFS_TYPE_REG;
|
||||||
info.size => strlen("Hello World!\n");
|
info.size => strlen("Hello World!\n");
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "largeavacado") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => $LARGESIZE;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "mediumavacado") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => $MEDIUMSIZE;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "noavacado") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "smallavacado") => 0;
|
strcmp(info.name, "smallavacado") => 0;
|
||||||
info.type => LFS_TYPE_REG;
|
info.type => LFS_TYPE_REG;
|
||||||
info.size => $SMALLSIZE;
|
info.size => $SMALLSIZE;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
strcmp(info.name, "mediumavacado") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => $MEDIUMSIZE;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "largeavacado") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => $LARGESIZE;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Many files test ---"
|
echo "--- Results ---"
|
||||||
scripts/test.py << TEST
|
tests/stats.py
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
// Create 300 files of 7 bytes
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
for (unsigned i = 0; i < 300; i++) {
|
|
||||||
sprintf(path, "file_%03d", i);
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_RDWR | LFS_O_CREAT | LFS_O_EXCL) => 0;
|
|
||||||
lfs_size_t size = 7;
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
snprintf((char*)wbuffer, size, "Hi %03d", i);
|
|
||||||
lfs_file_write(&lfs, &file, wbuffer, size) => size;
|
|
||||||
lfs_file_rewind(&lfs, &file) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
|
||||||
memcmp(wbuffer, rbuffer, size) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
}
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Many files with flush test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
// Create 300 files of 7 bytes
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
for (unsigned i = 0; i < 300; i++) {
|
|
||||||
sprintf(path, "file_%03d", i);
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_EXCL) => 0;
|
|
||||||
lfs_size_t size = 7;
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
snprintf((char*)wbuffer, size, "Hi %03d", i);
|
|
||||||
lfs_file_write(&lfs, &file, wbuffer, size) => size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, path, LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
|
||||||
memcmp(wbuffer, rbuffer, size) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
}
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Many files with power cycle test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
// Create 300 files of 7 bytes
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
for (unsigned i = 0; i < 300; i++) {
|
|
||||||
sprintf(path, "file_%03d", i);
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_EXCL) => 0;
|
|
||||||
lfs_size_t size = 7;
|
|
||||||
uint8_t wbuffer[1024];
|
|
||||||
uint8_t rbuffer[1024];
|
|
||||||
snprintf((char*)wbuffer, size, "Hi %03d", i);
|
|
||||||
lfs_file_write(&lfs, &file, wbuffer, size) => size;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, path, LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, rbuffer, size) => size;
|
|
||||||
memcmp(wbuffer, rbuffer, size) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
}
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
|
|||||||
@@ -1,51 +1,49 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Formatting tests ==="
|
echo "=== Formatting tests ==="
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
|
|
||||||
echo "--- Basic formatting ---"
|
echo "--- Basic formatting ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Basic mounting ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Invalid superblocks ---"
|
echo "--- Invalid superblocks ---"
|
||||||
ln -f -s /dev/zero blocks/0
|
ln -f -s /dev/zero blocks/0
|
||||||
ln -f -s /dev/zero blocks/1
|
ln -f -s /dev/zero blocks/1
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => LFS_ERR_NOSPC;
|
lfs_format(&lfs, &cfg) => LFS_ERR_CORRUPT;
|
||||||
TEST
|
TEST
|
||||||
rm blocks/0 blocks/1
|
rm blocks/0 blocks/1
|
||||||
|
|
||||||
|
echo "--- Basic mounting ---"
|
||||||
|
tests/test.py << TEST
|
||||||
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
|
TEST
|
||||||
|
tests/test.py << TEST
|
||||||
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
|
lfs_unmount(&lfs) => 0;
|
||||||
|
TEST
|
||||||
|
|
||||||
echo "--- Invalid mount ---"
|
echo "--- Invalid mount ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
|
TEST
|
||||||
|
rm blocks/0 blocks/1
|
||||||
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => LFS_ERR_CORRUPT;
|
lfs_mount(&lfs, &cfg) => LFS_ERR_CORRUPT;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Expanding superblock ---"
|
echo "--- Valid corrupt mount ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
for (int i = 0; i < 100; i++) {
|
|
||||||
lfs_mkdir(&lfs, "dummy") => 0;
|
|
||||||
lfs_remove(&lfs, "dummy") => 0;
|
|
||||||
}
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
rm blocks/0
|
||||||
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "dummy") => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
scripts/results.py
|
echo "--- Results ---"
|
||||||
|
tests/stats.py
|
||||||
|
|||||||
@@ -1,190 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
set -eu
|
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Interspersed tests ==="
|
|
||||||
rm -rf blocks
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Interspersed file test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_t files[4];
|
|
||||||
lfs_file_open(&lfs, &files[0], "a", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[1], "b", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[2], "c", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[3], "d", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 10; i++) {
|
|
||||||
lfs_file_write(&lfs, &files[0], (const void*)"a", 1) => 1;
|
|
||||||
lfs_file_write(&lfs, &files[1], (const void*)"b", 1) => 1;
|
|
||||||
lfs_file_write(&lfs, &files[2], (const void*)"c", 1) => 1;
|
|
||||||
lfs_file_write(&lfs, &files[3], (const void*)"d", 1) => 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &files[0]);
|
|
||||||
lfs_file_close(&lfs, &files[1]);
|
|
||||||
lfs_file_close(&lfs, &files[2]);
|
|
||||||
lfs_file_close(&lfs, &files[3]);
|
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "a") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 10;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "b") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 10;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "c") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 10;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "d") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 10;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &files[0], "a", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[1], "b", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[2], "c", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[3], "d", LFS_O_RDONLY) => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 10; i++) {
|
|
||||||
lfs_file_read(&lfs, &files[0], buffer, 1) => 1;
|
|
||||||
buffer[0] => 'a';
|
|
||||||
lfs_file_read(&lfs, &files[1], buffer, 1) => 1;
|
|
||||||
buffer[0] => 'b';
|
|
||||||
lfs_file_read(&lfs, &files[2], buffer, 1) => 1;
|
|
||||||
buffer[0] => 'c';
|
|
||||||
lfs_file_read(&lfs, &files[3], buffer, 1) => 1;
|
|
||||||
buffer[0] => 'd';
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &files[0]);
|
|
||||||
lfs_file_close(&lfs, &files[1]);
|
|
||||||
lfs_file_close(&lfs, &files[2]);
|
|
||||||
lfs_file_close(&lfs, &files[3]);
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Interspersed remove file test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_t files[4];
|
|
||||||
lfs_file_open(&lfs, &files[0], "e", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 5; i++) {
|
|
||||||
lfs_file_write(&lfs, &files[0], (const void*)"e", 1) => 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "a") => 0;
|
|
||||||
lfs_remove(&lfs, "b") => 0;
|
|
||||||
lfs_remove(&lfs, "c") => 0;
|
|
||||||
lfs_remove(&lfs, "d") => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 5; i++) {
|
|
||||||
lfs_file_write(&lfs, &files[0], (const void*)"e", 1) => 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &files[0]);
|
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "e") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 10;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &files[0], "e", LFS_O_RDONLY) => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 10; i++) {
|
|
||||||
lfs_file_read(&lfs, &files[0], buffer, 1) => 1;
|
|
||||||
buffer[0] => 'e';
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &files[0]);
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Remove inconveniently test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_t files[4];
|
|
||||||
lfs_file_open(&lfs, &files[0], "e", LFS_O_WRONLY | LFS_O_TRUNC) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[1], "f", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[2], "g", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 5; i++) {
|
|
||||||
lfs_file_write(&lfs, &files[0], (const void*)"e", 1) => 1;
|
|
||||||
lfs_file_write(&lfs, &files[1], (const void*)"f", 1) => 1;
|
|
||||||
lfs_file_write(&lfs, &files[2], (const void*)"g", 1) => 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "f") => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 5; i++) {
|
|
||||||
lfs_file_write(&lfs, &files[0], (const void*)"e", 1) => 1;
|
|
||||||
lfs_file_write(&lfs, &files[1], (const void*)"f", 1) => 1;
|
|
||||||
lfs_file_write(&lfs, &files[2], (const void*)"g", 1) => 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &files[0]);
|
|
||||||
lfs_file_close(&lfs, &files[1]);
|
|
||||||
lfs_file_close(&lfs, &files[2]);
|
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "/") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
info.type => LFS_TYPE_DIR;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "e") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 10;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "g") => 0;
|
|
||||||
info.type => LFS_TYPE_REG;
|
|
||||||
info.size => 10;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &files[0], "e", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_open(&lfs, &files[1], "g", LFS_O_RDONLY) => 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < 10; i++) {
|
|
||||||
lfs_file_read(&lfs, &files[0], buffer, 1) => 1;
|
|
||||||
buffer[0] => 'e';
|
|
||||||
lfs_file_read(&lfs, &files[1], buffer, 1) => 1;
|
|
||||||
buffer[0] => 'g';
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &files[0]);
|
|
||||||
lfs_file_close(&lfs, &files[1]);
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
@@ -1,11 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Move tests ==="
|
echo "=== Move tests ==="
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
@@ -19,315 +17,220 @@ scripts/test.py << TEST
|
|||||||
lfs_mkdir(&lfs, "a/hi/bonjour") => 0;
|
lfs_mkdir(&lfs, "a/hi/bonjour") => 0;
|
||||||
lfs_mkdir(&lfs, "a/hi/ohayo") => 0;
|
lfs_mkdir(&lfs, "a/hi/ohayo") => 0;
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "a/hello", LFS_O_CREAT | LFS_O_WRONLY) => 0;
|
lfs_file_open(&lfs, &file[0], "a/hello", LFS_O_CREAT | LFS_O_WRONLY) => 0;
|
||||||
lfs_file_write(&lfs, &file, "hola\n", 5) => 5;
|
lfs_file_write(&lfs, &file[0], "hola\n", 5) => 5;
|
||||||
lfs_file_write(&lfs, &file, "bonjour\n", 8) => 8;
|
lfs_file_write(&lfs, &file[0], "bonjour\n", 8) => 8;
|
||||||
lfs_file_write(&lfs, &file, "ohayo\n", 6) => 6;
|
lfs_file_write(&lfs, &file[0], "ohayo\n", 6) => 6;
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Move file ---"
|
echo "--- Move file ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_rename(&lfs, "a/hello", "b/hello") => 0;
|
lfs_rename(&lfs, "a/hello", "b/hello") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "a") => 0;
|
lfs_dir_open(&lfs, &dir[0], "a") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hi") => 0;
|
strcmp(info.name, "hi") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "b") => 0;
|
lfs_dir_open(&lfs, &dir[0], "b") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hello") => 0;
|
strcmp(info.name, "hello") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Move file corrupt source ---"
|
echo "--- Move file corrupt source ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_rename(&lfs, "b/hello", "c/hello") => 0;
|
lfs_rename(&lfs, "b/hello", "c/hello") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/corrupt.py -n 1
|
rm -v blocks/7
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "b") => 0;
|
lfs_dir_open(&lfs, &dir[0], "b") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "c") => 0;
|
lfs_dir_open(&lfs, &dir[0], "c") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hello") => 0;
|
strcmp(info.name, "hello") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Move file corrupt source and dest ---"
|
echo "--- Move file corrupt source and dest ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_rename(&lfs, "c/hello", "d/hello") => 0;
|
lfs_rename(&lfs, "c/hello", "d/hello") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/corrupt.py -n 2
|
rm -v blocks/8
|
||||||
scripts/test.py << TEST
|
rm -v blocks/a
|
||||||
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "c") => 0;
|
lfs_dir_open(&lfs, &dir[0], "c") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hello") => 0;
|
strcmp(info.name, "hello") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "d") => 0;
|
lfs_dir_open(&lfs, &dir[0], "d") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Move file after corrupt ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_rename(&lfs, "c/hello", "d/hello") => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "c") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "d") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "hello") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Move dir ---"
|
echo "--- Move dir ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_rename(&lfs, "a/hi", "b/hi") => 0;
|
lfs_rename(&lfs, "a/hi", "b/hi") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "a") => 0;
|
lfs_dir_open(&lfs, &dir[0], "a") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "b") => 0;
|
lfs_dir_open(&lfs, &dir[0], "b") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hi") => 0;
|
strcmp(info.name, "hi") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Move dir corrupt source ---"
|
echo "--- Move dir corrupt source ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_rename(&lfs, "b/hi", "c/hi") => 0;
|
lfs_rename(&lfs, "b/hi", "c/hi") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/corrupt.py -n 1
|
rm -v blocks/7
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "b") => 0;
|
lfs_dir_open(&lfs, &dir[0], "b") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "c") => 0;
|
lfs_dir_open(&lfs, &dir[0], "c") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "hello") => 0;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hi") => 0;
|
strcmp(info.name, "hi") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Move dir corrupt source and dest ---"
|
echo "--- Move dir corrupt source and dest ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_rename(&lfs, "c/hi", "d/hi") => 0;
|
lfs_rename(&lfs, "c/hi", "d/hi") => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
scripts/corrupt.py -n 2
|
rm -v blocks/9
|
||||||
scripts/test.py << TEST
|
rm -v blocks/a
|
||||||
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "c") => 0;
|
lfs_dir_open(&lfs, &dir[0], "c") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hi") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "d") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "hello") => 0;
|
strcmp(info.name, "hello") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Move dir after corrupt ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_rename(&lfs, "c/hi", "d/hi") => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "c") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
lfs_dir_open(&lfs, &dir, "d") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "hello") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "hi") => 0;
|
strcmp(info.name, "hi") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
|
lfs_dir_open(&lfs, &dir[0], "d") => 0;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, ".") => 0;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "..") => 0;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Move check ---"
|
echo "--- Move check ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "a/hi") => LFS_ERR_NOENT;
|
lfs_dir_open(&lfs, &dir[0], "a/hi") => LFS_ERR_NOENT;
|
||||||
lfs_dir_open(&lfs, &dir, "b/hi") => LFS_ERR_NOENT;
|
lfs_dir_open(&lfs, &dir[0], "b/hi") => LFS_ERR_NOENT;
|
||||||
lfs_dir_open(&lfs, &dir, "c/hi") => LFS_ERR_NOENT;
|
lfs_dir_open(&lfs, &dir[0], "d/hi") => LFS_ERR_NOENT;
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "d/hi") => 0;
|
lfs_dir_open(&lfs, &dir[0], "c/hi") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "bonjour") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "hola") => 0;
|
strcmp(info.name, "hola") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "ohayo") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "a/hello") => LFS_ERR_NOENT;
|
|
||||||
lfs_dir_open(&lfs, &dir, "b/hello") => LFS_ERR_NOENT;
|
|
||||||
lfs_dir_open(&lfs, &dir, "c/hello") => LFS_ERR_NOENT;
|
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "d/hello", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, buffer, 5) => 5;
|
|
||||||
memcmp(buffer, "hola\n", 5) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, buffer, 8) => 8;
|
|
||||||
memcmp(buffer, "bonjour\n", 8) => 0;
|
|
||||||
lfs_file_read(&lfs, &file, buffer, 6) => 6;
|
|
||||||
memcmp(buffer, "ohayo\n", 6) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Move state stealing ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_remove(&lfs, "b") => 0;
|
|
||||||
lfs_remove(&lfs, "c") => 0;
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "a/hi") => LFS_ERR_NOENT;
|
|
||||||
lfs_dir_open(&lfs, &dir, "b") => LFS_ERR_NOENT;
|
|
||||||
lfs_dir_open(&lfs, &dir, "c") => LFS_ERR_NOENT;
|
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "d/hi") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, ".") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "..") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "bonjour") => 0;
|
strcmp(info.name, "bonjour") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "hola") => 0;
|
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
|
||||||
strcmp(info.name, "ohayo") => 0;
|
strcmp(info.name, "ohayo") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 0;
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
|
|
||||||
lfs_dir_open(&lfs, &dir, "a/hello") => LFS_ERR_NOENT;
|
lfs_dir_open(&lfs, &dir[0], "a/hello") => LFS_ERR_NOENT;
|
||||||
lfs_dir_open(&lfs, &dir, "b") => LFS_ERR_NOENT;
|
lfs_dir_open(&lfs, &dir[0], "b/hello") => LFS_ERR_NOENT;
|
||||||
lfs_dir_open(&lfs, &dir, "c") => LFS_ERR_NOENT;
|
lfs_dir_open(&lfs, &dir[0], "d/hello") => LFS_ERR_NOENT;
|
||||||
|
|
||||||
lfs_file_open(&lfs, &file, "d/hello", LFS_O_RDONLY) => 0;
|
lfs_file_open(&lfs, &file[0], "c/hello", LFS_O_RDONLY) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, 5) => 5;
|
lfs_file_read(&lfs, &file[0], buffer, 5) => 5;
|
||||||
memcmp(buffer, "hola\n", 5) => 0;
|
memcmp(buffer, "hola\n", 5) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, 8) => 8;
|
lfs_file_read(&lfs, &file[0], buffer, 8) => 8;
|
||||||
memcmp(buffer, "bonjour\n", 8) => 0;
|
memcmp(buffer, "bonjour\n", 8) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, 6) => 6;
|
lfs_file_read(&lfs, &file[0], buffer, 6) => 6;
|
||||||
memcmp(buffer, "ohayo\n", 6) => 0;
|
memcmp(buffer, "ohayo\n", 6) => 0;
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
|
|
||||||
scripts/results.py
|
echo "--- Results ---"
|
||||||
|
tests/stats.py
|
||||||
|
|||||||
@@ -1,46 +1,41 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Orphan tests ==="
|
echo "=== Orphan tests ==="
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Orphan test ---"
|
echo "--- Orphan test ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "parent") => 0;
|
lfs_mkdir(&lfs, "parent") => 0;
|
||||||
lfs_mkdir(&lfs, "parent/orphan") => 0;
|
lfs_mkdir(&lfs, "parent/orphan") => 0;
|
||||||
lfs_mkdir(&lfs, "parent/child") => 0;
|
lfs_mkdir(&lfs, "parent/child") => 0;
|
||||||
lfs_remove(&lfs, "parent/orphan") => 0;
|
lfs_remove(&lfs, "parent/orphan") => 0;
|
||||||
TEST
|
TEST
|
||||||
# corrupt most recent commit, this should be the update to the previous
|
# remove most recent file, this should be the update to the previous
|
||||||
# linked-list entry and should orphan the child
|
# linked-list entry and should orphan the child
|
||||||
scripts/corrupt.py
|
rm -v blocks/8
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
|
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
||||||
|
unsigned before = 0;
|
||||||
|
lfs_traverse(&lfs, test_count, &before) => 0;
|
||||||
|
test_log("before", before);
|
||||||
|
|
||||||
|
lfs_deorphan(&lfs) => 0;
|
||||||
|
|
||||||
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
||||||
lfs_ssize_t before = lfs_fs_size(&lfs);
|
unsigned after = 0;
|
||||||
before => 8;
|
lfs_traverse(&lfs, test_count, &after) => 0;
|
||||||
|
test_log("after", after);
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
|
||||||
lfs_ssize_t orphaned = lfs_fs_size(&lfs);
|
|
||||||
orphaned => 8;
|
|
||||||
|
|
||||||
lfs_mkdir(&lfs, "parent/otherchild") => 0;
|
|
||||||
|
|
||||||
lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT;
|
|
||||||
lfs_ssize_t deorphaned = lfs_fs_size(&lfs);
|
|
||||||
deorphaned => 8;
|
|
||||||
|
|
||||||
|
int diff = before - after;
|
||||||
|
diff => 2;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
scripts/results.py
|
echo "--- Results ---"
|
||||||
|
tests/stats.py
|
||||||
|
|||||||
186
tests/test_parallel.sh
Executable file
186
tests/test_parallel.sh
Executable file
@@ -0,0 +1,186 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
echo "=== Parallel tests ==="
|
||||||
|
rm -rf blocks
|
||||||
|
tests/test.py << TEST
|
||||||
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
|
TEST
|
||||||
|
|
||||||
|
echo "--- Parallel file test ---"
|
||||||
|
tests/test.py << TEST
|
||||||
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[0], "a", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[1], "b", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[2], "c", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[3], "d", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < 10; i++) {
|
||||||
|
lfs_file_write(&lfs, &file[0], (const void*)"a", 1) => 1;
|
||||||
|
lfs_file_write(&lfs, &file[1], (const void*)"b", 1) => 1;
|
||||||
|
lfs_file_write(&lfs, &file[2], (const void*)"c", 1) => 1;
|
||||||
|
lfs_file_write(&lfs, &file[3], (const void*)"d", 1) => 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
lfs_file_close(&lfs, &file[0]);
|
||||||
|
lfs_file_close(&lfs, &file[1]);
|
||||||
|
lfs_file_close(&lfs, &file[2]);
|
||||||
|
lfs_file_close(&lfs, &file[3]);
|
||||||
|
|
||||||
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, ".") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "..") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "a") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => 10;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "b") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => 10;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "c") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => 10;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "d") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => 10;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
|
|
||||||
|
lfs_file_open(&lfs, &file[0], "a", LFS_O_RDONLY) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[1], "b", LFS_O_RDONLY) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[2], "c", LFS_O_RDONLY) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[3], "d", LFS_O_RDONLY) => 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < 10; i++) {
|
||||||
|
lfs_file_read(&lfs, &file[0], buffer, 1) => 1;
|
||||||
|
buffer[0] => 'a';
|
||||||
|
lfs_file_read(&lfs, &file[1], buffer, 1) => 1;
|
||||||
|
buffer[0] => 'b';
|
||||||
|
lfs_file_read(&lfs, &file[2], buffer, 1) => 1;
|
||||||
|
buffer[0] => 'c';
|
||||||
|
lfs_file_read(&lfs, &file[3], buffer, 1) => 1;
|
||||||
|
buffer[0] => 'd';
|
||||||
|
}
|
||||||
|
|
||||||
|
lfs_file_close(&lfs, &file[0]);
|
||||||
|
lfs_file_close(&lfs, &file[1]);
|
||||||
|
lfs_file_close(&lfs, &file[2]);
|
||||||
|
lfs_file_close(&lfs, &file[3]);
|
||||||
|
|
||||||
|
lfs_unmount(&lfs) => 0;
|
||||||
|
TEST
|
||||||
|
|
||||||
|
echo "--- Parallel remove file test ---"
|
||||||
|
tests/test.py << TEST
|
||||||
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[0], "e", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
lfs_file_write(&lfs, &file[0], (const void*)"e", 1) => 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
lfs_remove(&lfs, "a") => 0;
|
||||||
|
lfs_remove(&lfs, "b") => 0;
|
||||||
|
lfs_remove(&lfs, "c") => 0;
|
||||||
|
lfs_remove(&lfs, "d") => 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
lfs_file_write(&lfs, &file[0], (const void*)"e", 1) => 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
lfs_file_close(&lfs, &file[0]);
|
||||||
|
|
||||||
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, ".") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "..") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "e") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => 10;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
|
|
||||||
|
lfs_file_open(&lfs, &file[0], "e", LFS_O_RDONLY) => 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < 10; i++) {
|
||||||
|
lfs_file_read(&lfs, &file[0], buffer, 1) => 1;
|
||||||
|
buffer[0] => 'e';
|
||||||
|
}
|
||||||
|
|
||||||
|
lfs_file_close(&lfs, &file[0]);
|
||||||
|
|
||||||
|
lfs_unmount(&lfs) => 0;
|
||||||
|
TEST
|
||||||
|
|
||||||
|
echo "--- Remove inconveniently test ---"
|
||||||
|
tests/test.py << TEST
|
||||||
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[0], "e", LFS_O_WRONLY | LFS_O_TRUNC) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[1], "f", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[2], "g", LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
lfs_file_write(&lfs, &file[0], (const void*)"e", 1) => 1;
|
||||||
|
lfs_file_write(&lfs, &file[1], (const void*)"f", 1) => 1;
|
||||||
|
lfs_file_write(&lfs, &file[2], (const void*)"g", 1) => 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
lfs_remove(&lfs, "f") => 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
lfs_file_write(&lfs, &file[0], (const void*)"e", 1) => 1;
|
||||||
|
lfs_file_write(&lfs, &file[1], (const void*)"f", 1) => 1;
|
||||||
|
lfs_file_write(&lfs, &file[2], (const void*)"g", 1) => 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
lfs_file_close(&lfs, &file[0]);
|
||||||
|
lfs_file_close(&lfs, &file[1]);
|
||||||
|
lfs_file_close(&lfs, &file[2]);
|
||||||
|
|
||||||
|
lfs_dir_open(&lfs, &dir[0], "/") => 0;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, ".") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "..") => 0;
|
||||||
|
info.type => LFS_TYPE_DIR;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "e") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => 10;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
|
strcmp(info.name, "g") => 0;
|
||||||
|
info.type => LFS_TYPE_REG;
|
||||||
|
info.size => 10;
|
||||||
|
lfs_dir_read(&lfs, &dir[0], &info) => 0;
|
||||||
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
|
|
||||||
|
lfs_file_open(&lfs, &file[0], "e", LFS_O_RDONLY) => 0;
|
||||||
|
lfs_file_open(&lfs, &file[1], "g", LFS_O_RDONLY) => 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < 10; i++) {
|
||||||
|
lfs_file_read(&lfs, &file[0], buffer, 1) => 1;
|
||||||
|
buffer[0] => 'e';
|
||||||
|
lfs_file_read(&lfs, &file[1], buffer, 1) => 1;
|
||||||
|
buffer[0] => 'g';
|
||||||
|
}
|
||||||
|
|
||||||
|
lfs_file_close(&lfs, &file[0]);
|
||||||
|
lfs_file_close(&lfs, &file[1]);
|
||||||
|
|
||||||
|
lfs_unmount(&lfs) => 0;
|
||||||
|
TEST
|
||||||
|
|
||||||
|
echo "--- Results ---"
|
||||||
|
tests/stats.py
|
||||||
@@ -1,15 +1,13 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Path tests ==="
|
echo "=== Path tests ==="
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "tea") => 0;
|
lfs_mkdir(&lfs, "tea") => 0;
|
||||||
lfs_mkdir(&lfs, "coffee") => 0;
|
lfs_mkdir(&lfs, "coffee") => 0;
|
||||||
@@ -27,7 +25,7 @@ scripts/test.py << TEST
|
|||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Root path tests ---"
|
echo "--- Root path tests ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_stat(&lfs, "tea/hottea", &info) => 0;
|
lfs_stat(&lfs, "tea/hottea", &info) => 0;
|
||||||
strcmp(info.name, "hottea") => 0;
|
strcmp(info.name, "hottea") => 0;
|
||||||
@@ -41,7 +39,7 @@ scripts/test.py << TEST
|
|||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Redundant slash path tests ---"
|
echo "--- Redundant slash path tests ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_stat(&lfs, "/tea/hottea", &info) => 0;
|
lfs_stat(&lfs, "/tea/hottea", &info) => 0;
|
||||||
strcmp(info.name, "hottea") => 0;
|
strcmp(info.name, "hottea") => 0;
|
||||||
@@ -57,7 +55,7 @@ scripts/test.py << TEST
|
|||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Dot path tests ---"
|
echo "--- Dot path tests ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_stat(&lfs, "./tea/hottea", &info) => 0;
|
lfs_stat(&lfs, "./tea/hottea", &info) => 0;
|
||||||
strcmp(info.name, "hottea") => 0;
|
strcmp(info.name, "hottea") => 0;
|
||||||
@@ -75,7 +73,7 @@ scripts/test.py << TEST
|
|||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Dot dot path tests ---"
|
echo "--- Dot dot path tests ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_stat(&lfs, "coffee/../tea/hottea", &info) => 0;
|
lfs_stat(&lfs, "coffee/../tea/hottea", &info) => 0;
|
||||||
strcmp(info.name, "hottea") => 0;
|
strcmp(info.name, "hottea") => 0;
|
||||||
@@ -92,24 +90,8 @@ scripts/test.py << TEST
|
|||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Trailing dot path tests ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_stat(&lfs, "tea/hottea/", &info) => 0;
|
|
||||||
strcmp(info.name, "hottea") => 0;
|
|
||||||
lfs_stat(&lfs, "tea/hottea/.", &info) => 0;
|
|
||||||
strcmp(info.name, "hottea") => 0;
|
|
||||||
lfs_stat(&lfs, "tea/hottea/./.", &info) => 0;
|
|
||||||
strcmp(info.name, "hottea") => 0;
|
|
||||||
lfs_stat(&lfs, "tea/hottea/..", &info) => 0;
|
|
||||||
strcmp(info.name, "tea") => 0;
|
|
||||||
lfs_stat(&lfs, "tea/hottea/../.", &info) => 0;
|
|
||||||
strcmp(info.name, "tea") => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Root dot dot path tests ---"
|
echo "--- Root dot dot path tests ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_stat(&lfs, "coffee/../../../../../../tea/hottea", &info) => 0;
|
lfs_stat(&lfs, "coffee/../../../../../../tea/hottea", &info) => 0;
|
||||||
strcmp(info.name, "hottea") => 0;
|
strcmp(info.name, "hottea") => 0;
|
||||||
@@ -121,82 +103,21 @@ scripts/test.py << TEST
|
|||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Root tests ---"
|
echo "--- Root tests ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_stat(&lfs, "/", &info) => 0;
|
lfs_stat(&lfs, "/", &info) => 0;
|
||||||
info.type => LFS_TYPE_DIR;
|
info.type => LFS_TYPE_DIR;
|
||||||
strcmp(info.name, "/") => 0;
|
strcmp(info.name, "/") => 0;
|
||||||
|
|
||||||
lfs_mkdir(&lfs, "/") => LFS_ERR_EXIST;
|
|
||||||
lfs_file_open(&lfs, &file, "/", LFS_O_WRONLY | LFS_O_CREAT)
|
|
||||||
=> LFS_ERR_ISDIR;
|
|
||||||
|
|
||||||
// more corner cases
|
|
||||||
lfs_remove(&lfs, "") => LFS_ERR_INVAL;
|
|
||||||
lfs_remove(&lfs, ".") => LFS_ERR_INVAL;
|
|
||||||
lfs_remove(&lfs, "..") => LFS_ERR_INVAL;
|
|
||||||
lfs_remove(&lfs, "/") => LFS_ERR_INVAL;
|
|
||||||
lfs_remove(&lfs, "//") => LFS_ERR_INVAL;
|
|
||||||
lfs_remove(&lfs, "./") => LFS_ERR_INVAL;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Sketchy path tests ---"
|
echo "--- Sketchy path tests ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "dirt/ground") => LFS_ERR_NOENT;
|
lfs_mkdir(&lfs, "dirt/ground") => LFS_ERR_NOENT;
|
||||||
lfs_mkdir(&lfs, "dirt/ground/earth") => LFS_ERR_NOENT;
|
lfs_mkdir(&lfs, "dirt/ground/earth") => LFS_ERR_NOENT;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Superblock conflict test ---"
|
echo "--- Results ---"
|
||||||
scripts/test.py << TEST
|
tests/stats.py
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_mkdir(&lfs, "littlefs") => 0;
|
|
||||||
lfs_remove(&lfs, "littlefs") => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Max path test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(path, 'w', LFS_NAME_MAX+1);
|
|
||||||
path[LFS_NAME_MAX+2] = '\0';
|
|
||||||
lfs_mkdir(&lfs, path) => LFS_ERR_NAMETOOLONG;
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => LFS_ERR_NAMETOOLONG;
|
|
||||||
|
|
||||||
memcpy(path, "coffee/", strlen("coffee/"));
|
|
||||||
memset(path+strlen("coffee/"), 'w', LFS_NAME_MAX+1);
|
|
||||||
path[strlen("coffee/")+LFS_NAME_MAX+2] = '\0';
|
|
||||||
lfs_mkdir(&lfs, path) => LFS_ERR_NAMETOOLONG;
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => LFS_ERR_NAMETOOLONG;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Really big path test ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
memset(path, 'w', LFS_NAME_MAX);
|
|
||||||
path[LFS_NAME_MAX+1] = '\0';
|
|
||||||
lfs_mkdir(&lfs, path) => 0;
|
|
||||||
lfs_remove(&lfs, path) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_remove(&lfs, path) => 0;
|
|
||||||
|
|
||||||
memcpy(path, "coffee/", strlen("coffee/"));
|
|
||||||
memset(path+strlen("coffee/"), 'w', LFS_NAME_MAX);
|
|
||||||
path[strlen("coffee/")+LFS_NAME_MAX+1] = '\0';
|
|
||||||
lfs_mkdir(&lfs, path) => 0;
|
|
||||||
lfs_remove(&lfs, path) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_remove(&lfs, path) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
|
|||||||
@@ -1,431 +1,345 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
set -eu
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Seek tests ==="
|
|
||||||
|
|
||||||
SMALLSIZE=4
|
SMALLSIZE=4
|
||||||
MEDIUMSIZE=128
|
MEDIUMSIZE=128
|
||||||
LARGESIZE=132
|
LARGESIZE=132
|
||||||
|
|
||||||
|
echo "=== Seek tests ==="
|
||||||
rm -rf blocks
|
rm -rf blocks
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
lfs_format(&lfs, &cfg) => 0;
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_mkdir(&lfs, "hello") => 0;
|
lfs_mkdir(&lfs, "hello") => 0;
|
||||||
for (int i = 0; i < $LARGESIZE; i++) {
|
for (int i = 0; i < $LARGESIZE; i++) {
|
||||||
sprintf(path, "hello/kitty%03d", i);
|
sprintf((char*)buffer, "hello/kitty%d", i);
|
||||||
lfs_file_open(&lfs, &file, path,
|
lfs_file_open(&lfs, &file[0], (char*)buffer,
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
|
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
|
||||||
|
|
||||||
lfs_size_t size = strlen("kittycatcat");
|
size = strlen("kittycatcat");
|
||||||
memcpy(buffer, "kittycatcat", size);
|
memcpy(buffer, "kittycatcat", size);
|
||||||
for (int j = 0; j < $LARGESIZE; j++) {
|
for (int j = 0; j < $LARGESIZE; j++) {
|
||||||
lfs_file_write(&lfs, &file, buffer, size);
|
lfs_file_write(&lfs, &file[0], buffer, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
}
|
}
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Simple dir seek ---"
|
echo "--- Simple dir seek ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "hello") => 0;
|
lfs_dir_open(&lfs, &dir[0], "hello") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
|
|
||||||
lfs_soff_t pos;
|
lfs_soff_t pos;
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < $SMALLSIZE; i++) {
|
for (i = 0; i < $SMALLSIZE; i++) {
|
||||||
sprintf(path, "kitty%03d", i);
|
sprintf((char*)buffer, "kitty%d", i);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
pos = lfs_dir_tell(&lfs, &dir);
|
pos = lfs_dir_tell(&lfs, &dir[0]);
|
||||||
}
|
}
|
||||||
pos >= 0 => 1;
|
pos >= 0 => 1;
|
||||||
|
|
||||||
lfs_dir_seek(&lfs, &dir, pos) => 0;
|
lfs_dir_seek(&lfs, &dir[0], pos) => 0;
|
||||||
sprintf(path, "kitty%03d", i);
|
sprintf((char*)buffer, "kitty%d", i);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
|
|
||||||
lfs_dir_rewind(&lfs, &dir) => 0;
|
lfs_dir_rewind(&lfs, &dir[0]) => 0;
|
||||||
sprintf(path, "kitty%03d", 0);
|
sprintf((char*)buffer, "kitty%d", 0);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
|
|
||||||
lfs_dir_seek(&lfs, &dir, pos) => 0;
|
lfs_dir_seek(&lfs, &dir[0], pos) => 0;
|
||||||
sprintf(path, "kitty%03d", i);
|
sprintf((char*)buffer, "kitty%d", i);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Large dir seek ---"
|
echo "--- Large dir seek ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_dir_open(&lfs, &dir, "hello") => 0;
|
lfs_dir_open(&lfs, &dir[0], "hello") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
|
|
||||||
lfs_soff_t pos;
|
lfs_soff_t pos;
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < $MEDIUMSIZE; i++) {
|
for (i = 0; i < $MEDIUMSIZE; i++) {
|
||||||
sprintf(path, "kitty%03d", i);
|
sprintf((char*)buffer, "kitty%d", i);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
pos = lfs_dir_tell(&lfs, &dir);
|
pos = lfs_dir_tell(&lfs, &dir[0]);
|
||||||
}
|
}
|
||||||
pos >= 0 => 1;
|
pos >= 0 => 1;
|
||||||
|
|
||||||
lfs_dir_seek(&lfs, &dir, pos) => 0;
|
lfs_dir_seek(&lfs, &dir[0], pos) => 0;
|
||||||
sprintf(path, "kitty%03d", i);
|
sprintf((char*)buffer, "kitty%d", i);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
|
|
||||||
lfs_dir_rewind(&lfs, &dir) => 0;
|
lfs_dir_rewind(&lfs, &dir[0]) => 0;
|
||||||
sprintf(path, "kitty%03d", 0);
|
sprintf((char*)buffer, "kitty%d", 0);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, ".") => 0;
|
strcmp(info.name, ".") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, "..") => 0;
|
strcmp(info.name, "..") => 0;
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
|
|
||||||
lfs_dir_seek(&lfs, &dir, pos) => 0;
|
lfs_dir_seek(&lfs, &dir[0], pos) => 0;
|
||||||
sprintf(path, "kitty%03d", i);
|
sprintf((char*)buffer, "kitty%d", i);
|
||||||
lfs_dir_read(&lfs, &dir, &info) => 1;
|
lfs_dir_read(&lfs, &dir[0], &info) => 1;
|
||||||
strcmp(info.name, path) => 0;
|
strcmp(info.name, (char*)buffer) => 0;
|
||||||
|
|
||||||
lfs_dir_close(&lfs, &dir) => 0;
|
lfs_dir_close(&lfs, &dir[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Simple file seek ---"
|
echo "--- Simple file seek ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "hello/kitty042", LFS_O_RDONLY) => 0;
|
lfs_file_open(&lfs, &file[0], "hello/kitty42", LFS_O_RDONLY) => 0;
|
||||||
|
|
||||||
lfs_soff_t pos;
|
lfs_soff_t pos;
|
||||||
lfs_size_t size = strlen("kittycatcat");
|
size = strlen("kittycatcat");
|
||||||
for (int i = 0; i < $SMALLSIZE; i++) {
|
for (int i = 0; i < $SMALLSIZE; i++) {
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
pos = lfs_file_tell(&lfs, &file);
|
pos = lfs_file_tell(&lfs, &file[0]);
|
||||||
}
|
}
|
||||||
pos >= 0 => 1;
|
pos >= 0 => 1;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_rewind(&lfs, &file) => 0;
|
lfs_file_rewind(&lfs, &file[0]) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_CUR) => size;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, size, LFS_SEEK_CUR) => 3*size;
|
lfs_file_seek(&lfs, &file[0], -size, LFS_SEEK_CUR) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], -size, LFS_SEEK_END) >= 0 => 1;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, -size, LFS_SEEK_CUR) => pos;
|
lfs_size_t size = lfs_file_size(&lfs, &file[0]);
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_seek(&lfs, &file[0], 0, LFS_SEEK_CUR) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, -size, LFS_SEEK_END) >= 0 => 1;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
|
||||||
|
|
||||||
size = lfs_file_size(&lfs, &file);
|
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_CUR) => size;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Large file seek ---"
|
echo "--- Large file seek ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "hello/kitty042", LFS_O_RDONLY) => 0;
|
lfs_file_open(&lfs, &file[0], "hello/kitty42", LFS_O_RDONLY) => 0;
|
||||||
|
|
||||||
lfs_soff_t pos;
|
lfs_soff_t pos;
|
||||||
lfs_size_t size = strlen("kittycatcat");
|
size = strlen("kittycatcat");
|
||||||
for (int i = 0; i < $MEDIUMSIZE; i++) {
|
for (int i = 0; i < $MEDIUMSIZE; i++) {
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
pos = lfs_file_tell(&lfs, &file);
|
pos = lfs_file_tell(&lfs, &file[0]);
|
||||||
}
|
}
|
||||||
pos >= 0 => 1;
|
pos >= 0 => 1;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_rewind(&lfs, &file) => 0;
|
lfs_file_rewind(&lfs, &file[0]) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_CUR) => size;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, size, LFS_SEEK_CUR) => 3*size;
|
lfs_file_seek(&lfs, &file[0], -size, LFS_SEEK_CUR) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], -size, LFS_SEEK_END) >= 0 => 1;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, -size, LFS_SEEK_CUR) => pos;
|
lfs_size_t size = lfs_file_size(&lfs, &file[0]);
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_seek(&lfs, &file[0], 0, LFS_SEEK_CUR) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, -size, LFS_SEEK_END) >= 0 => 1;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
|
||||||
|
|
||||||
size = lfs_file_size(&lfs, &file);
|
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_CUR) => size;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Simple file seek and write ---"
|
echo "--- Simple file seek and write ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "hello/kitty042", LFS_O_RDWR) => 0;
|
lfs_file_open(&lfs, &file[0], "hello/kitty42", LFS_O_RDWR) => 0;
|
||||||
|
|
||||||
lfs_soff_t pos;
|
lfs_soff_t pos;
|
||||||
lfs_size_t size = strlen("kittycatcat");
|
size = strlen("kittycatcat");
|
||||||
for (int i = 0; i < $SMALLSIZE; i++) {
|
for (int i = 0; i < $SMALLSIZE; i++) {
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
pos = lfs_file_tell(&lfs, &file);
|
pos = lfs_file_tell(&lfs, &file[0]);
|
||||||
}
|
}
|
||||||
pos >= 0 => 1;
|
pos >= 0 => 1;
|
||||||
|
|
||||||
memcpy(buffer, "doggodogdog", size);
|
memcpy(buffer, "doggodogdog", size);
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "doggodogdog", size) => 0;
|
memcmp(buffer, "doggodogdog", size) => 0;
|
||||||
|
|
||||||
lfs_file_rewind(&lfs, &file) => 0;
|
lfs_file_rewind(&lfs, &file[0]) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "doggodogdog", size) => 0;
|
memcmp(buffer, "doggodogdog", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, -size, LFS_SEEK_END) >= 0 => 1;
|
lfs_file_seek(&lfs, &file[0], -size, LFS_SEEK_END) >= 0 => 1;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
size = lfs_file_size(&lfs, &file);
|
lfs_size_t size = lfs_file_size(&lfs, &file[0]);
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_CUR) => size;
|
lfs_file_seek(&lfs, &file[0], 0, LFS_SEEK_CUR) => size;
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Large file seek and write ---"
|
echo "--- Large file seek and write ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "hello/kitty042", LFS_O_RDWR) => 0;
|
lfs_file_open(&lfs, &file[0], "hello/kitty42", LFS_O_RDWR) => 0;
|
||||||
|
|
||||||
lfs_soff_t pos;
|
lfs_soff_t pos;
|
||||||
lfs_size_t size = strlen("kittycatcat");
|
size = strlen("kittycatcat");
|
||||||
for (int i = 0; i < $MEDIUMSIZE; i++) {
|
for (int i = 0; i < $MEDIUMSIZE; i++) {
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
if (i != $SMALLSIZE) {
|
if (i != $SMALLSIZE) {
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
}
|
}
|
||||||
pos = lfs_file_tell(&lfs, &file);
|
pos = lfs_file_tell(&lfs, &file[0]);
|
||||||
}
|
}
|
||||||
pos >= 0 => 1;
|
pos >= 0 => 1;
|
||||||
|
|
||||||
memcpy(buffer, "doggodogdog", size);
|
memcpy(buffer, "doggodogdog", size);
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "doggodogdog", size) => 0;
|
memcmp(buffer, "doggodogdog", size) => 0;
|
||||||
|
|
||||||
lfs_file_rewind(&lfs, &file) => 0;
|
lfs_file_rewind(&lfs, &file[0]) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, pos, LFS_SEEK_SET) => pos;
|
lfs_file_seek(&lfs, &file[0], pos, LFS_SEEK_SET) => pos;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "doggodogdog", size) => 0;
|
memcmp(buffer, "doggodogdog", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, -size, LFS_SEEK_END) >= 0 => 1;
|
lfs_file_seek(&lfs, &file[0], -size, LFS_SEEK_END) >= 0 => 1;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
size = lfs_file_size(&lfs, &file);
|
lfs_size_t size = lfs_file_size(&lfs, &file[0]);
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_CUR) => size;
|
lfs_file_seek(&lfs, &file[0], 0, LFS_SEEK_CUR) => size;
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Boundary seek and write ---"
|
echo "--- Boundary seek and write ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "hello/kitty042", LFS_O_RDWR) => 0;
|
lfs_file_open(&lfs, &file[0], "hello/kitty42", LFS_O_RDWR) => 0;
|
||||||
|
|
||||||
lfs_size_t size = strlen("hedgehoghog");
|
size = strlen("hedgehoghog");
|
||||||
const lfs_soff_t offsets[] = {512, 1020, 513, 1021, 511, 1019};
|
const lfs_soff_t offsets[] = {512, 1020, 513, 1021, 511, 1019};
|
||||||
|
|
||||||
for (unsigned i = 0; i < sizeof(offsets) / sizeof(offsets[0]); i++) {
|
for (int i = 0; i < sizeof(offsets) / sizeof(offsets[0]); i++) {
|
||||||
lfs_soff_t off = offsets[i];
|
lfs_soff_t off = offsets[i];
|
||||||
memcpy(buffer, "hedgehoghog", size);
|
memcpy(buffer, "hedgehoghog", size);
|
||||||
lfs_file_seek(&lfs, &file, off, LFS_SEEK_SET) => off;
|
lfs_file_seek(&lfs, &file[0], off, LFS_SEEK_SET) => off;
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
lfs_file_seek(&lfs, &file, off, LFS_SEEK_SET) => off;
|
lfs_file_seek(&lfs, &file[0], off, LFS_SEEK_SET) => off;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "hedgehoghog", size) => 0;
|
memcmp(buffer, "hedgehoghog", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_SET) => 0;
|
lfs_file_seek(&lfs, &file[0], 0, LFS_SEEK_SET) => 0;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "kittycatcat", size) => 0;
|
memcmp(buffer, "kittycatcat", size) => 0;
|
||||||
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
lfs_file_sync(&lfs, &file[0]) => 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Out-of-bounds seek ---"
|
echo "--- Out-of-bounds seek ---"
|
||||||
scripts/test.py << TEST
|
tests/test.py << TEST
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
lfs_mount(&lfs, &cfg) => 0;
|
||||||
lfs_file_open(&lfs, &file, "hello/kitty042", LFS_O_RDWR) => 0;
|
lfs_file_open(&lfs, &file[0], "hello/kitty42", LFS_O_RDWR) => 0;
|
||||||
|
|
||||||
lfs_size_t size = strlen("kittycatcat");
|
size = strlen("kittycatcat");
|
||||||
lfs_file_size(&lfs, &file) => $LARGESIZE*size;
|
lfs_file_size(&lfs, &file[0]) => $LARGESIZE*size;
|
||||||
lfs_file_seek(&lfs, &file, ($LARGESIZE+$SMALLSIZE)*size,
|
lfs_file_seek(&lfs, &file[0], ($LARGESIZE+$SMALLSIZE)*size,
|
||||||
LFS_SEEK_SET) => ($LARGESIZE+$SMALLSIZE)*size;
|
LFS_SEEK_SET) => ($LARGESIZE+$SMALLSIZE)*size;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => 0;
|
lfs_file_read(&lfs, &file[0], buffer, size) => 0;
|
||||||
|
|
||||||
memcpy(buffer, "porcupineee", size);
|
memcpy(buffer, "porcupineee", size);
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
lfs_file_write(&lfs, &file[0], buffer, size) => size;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, ($LARGESIZE+$SMALLSIZE)*size,
|
lfs_file_seek(&lfs, &file[0], ($LARGESIZE+$SMALLSIZE)*size,
|
||||||
LFS_SEEK_SET) => ($LARGESIZE+$SMALLSIZE)*size;
|
LFS_SEEK_SET) => ($LARGESIZE+$SMALLSIZE)*size;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "porcupineee", size) => 0;
|
memcmp(buffer, "porcupineee", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, $LARGESIZE*size,
|
lfs_file_seek(&lfs, &file[0], $LARGESIZE*size,
|
||||||
LFS_SEEK_SET) => $LARGESIZE*size;
|
LFS_SEEK_SET) => $LARGESIZE*size;
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
lfs_file_read(&lfs, &file[0], buffer, size) => size;
|
||||||
memcmp(buffer, "\0\0\0\0\0\0\0\0\0\0\0", size) => 0;
|
memcmp(buffer, "\0\0\0\0\0\0\0\0\0\0\0", size) => 0;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, -(($LARGESIZE+$SMALLSIZE)*size),
|
lfs_file_seek(&lfs, &file[0], -(($LARGESIZE+$SMALLSIZE)*size),
|
||||||
LFS_SEEK_CUR) => LFS_ERR_INVAL;
|
LFS_SEEK_CUR) => LFS_ERR_INVAL;
|
||||||
lfs_file_tell(&lfs, &file) => ($LARGESIZE+1)*size;
|
lfs_file_tell(&lfs, &file[0]) => ($LARGESIZE+1)*size;
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, -(($LARGESIZE+2*$SMALLSIZE)*size),
|
lfs_file_seek(&lfs, &file[0], -(($LARGESIZE+2*$SMALLSIZE)*size),
|
||||||
LFS_SEEK_END) => LFS_ERR_INVAL;
|
LFS_SEEK_END) => LFS_ERR_INVAL;
|
||||||
lfs_file_tell(&lfs, &file) => ($LARGESIZE+1)*size;
|
lfs_file_tell(&lfs, &file[0]) => ($LARGESIZE+1)*size;
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
lfs_file_close(&lfs, &file[0]) => 0;
|
||||||
lfs_unmount(&lfs) => 0;
|
lfs_unmount(&lfs) => 0;
|
||||||
TEST
|
TEST
|
||||||
|
|
||||||
echo "--- Inline write and seek ---"
|
echo "--- Results ---"
|
||||||
for SIZE in $SMALLSIZE $MEDIUMSIZE $LARGESIZE
|
tests/stats.py
|
||||||
do
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "hello/tinykitty$SIZE",
|
|
||||||
LFS_O_RDWR | LFS_O_CREAT) => 0;
|
|
||||||
int j = 0;
|
|
||||||
int k = 0;
|
|
||||||
|
|
||||||
memcpy(buffer, "abcdefghijklmnopqrstuvwxyz", 26);
|
|
||||||
for (unsigned i = 0; i < $SIZE; i++) {
|
|
||||||
lfs_file_write(&lfs, &file, &buffer[j++ % 26], 1) => 1;
|
|
||||||
lfs_file_tell(&lfs, &file) => i+1;
|
|
||||||
lfs_file_size(&lfs, &file) => i+1;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_SET) => 0;
|
|
||||||
lfs_file_tell(&lfs, &file) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $SIZE;
|
|
||||||
for (unsigned i = 0; i < $SIZE; i++) {
|
|
||||||
uint8_t c;
|
|
||||||
lfs_file_read(&lfs, &file, &c, 1) => 1;
|
|
||||||
c => buffer[k++ % 26];
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
lfs_file_tell(&lfs, &file) => $SIZE;
|
|
||||||
lfs_file_size(&lfs, &file) => $SIZE;
|
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_SET) => 0;
|
|
||||||
for (unsigned i = 0; i < $SIZE; i++) {
|
|
||||||
lfs_file_write(&lfs, &file, &buffer[j++ % 26], 1) => 1;
|
|
||||||
lfs_file_tell(&lfs, &file) => i+1;
|
|
||||||
lfs_file_size(&lfs, &file) => $SIZE;
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
lfs_file_tell(&lfs, &file) => i+1;
|
|
||||||
lfs_file_size(&lfs, &file) => $SIZE;
|
|
||||||
if (i < $SIZE-2) {
|
|
||||||
uint8_t c[3];
|
|
||||||
lfs_file_seek(&lfs, &file, -1, LFS_SEEK_CUR) => i;
|
|
||||||
lfs_file_read(&lfs, &file, &c, 3) => 3;
|
|
||||||
lfs_file_tell(&lfs, &file) => i+3;
|
|
||||||
lfs_file_size(&lfs, &file) => $SIZE;
|
|
||||||
lfs_file_seek(&lfs, &file, i+1, LFS_SEEK_SET) => i+1;
|
|
||||||
lfs_file_tell(&lfs, &file) => i+1;
|
|
||||||
lfs_file_size(&lfs, &file) => $SIZE;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_seek(&lfs, &file, 0, LFS_SEEK_SET) => 0;
|
|
||||||
lfs_file_tell(&lfs, &file) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $SIZE;
|
|
||||||
for (unsigned i = 0; i < $SIZE; i++) {
|
|
||||||
uint8_t c;
|
|
||||||
lfs_file_read(&lfs, &file, &c, 1) => 1;
|
|
||||||
c => buffer[k++ % 26];
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_sync(&lfs, &file) => 0;
|
|
||||||
lfs_file_tell(&lfs, &file) => $SIZE;
|
|
||||||
lfs_file_size(&lfs, &file) => $SIZE;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
done
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
|
|||||||
@@ -1,304 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
set -eu
|
|
||||||
export TEST_FILE=$0
|
|
||||||
trap 'export TEST_LINE=$LINENO' DEBUG
|
|
||||||
|
|
||||||
echo "=== Truncate tests ==="
|
|
||||||
|
|
||||||
SMALLSIZE=32
|
|
||||||
MEDIUMSIZE=2048
|
|
||||||
LARGESIZE=8192
|
|
||||||
|
|
||||||
rm -rf blocks
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_format(&lfs, &cfg) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Simple truncate ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldynoop",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
|
|
||||||
strcpy((char*)buffer, "hair");
|
|
||||||
lfs_size_t size = strlen((char*)buffer);
|
|
||||||
for (lfs_off_t j = 0; j < $LARGESIZE; j += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_size(&lfs, &file) => $LARGESIZE;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldynoop", LFS_O_RDWR) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $LARGESIZE;
|
|
||||||
|
|
||||||
lfs_file_truncate(&lfs, &file, $MEDIUMSIZE) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $MEDIUMSIZE;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldynoop", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $MEDIUMSIZE;
|
|
||||||
|
|
||||||
lfs_size_t size = strlen("hair");
|
|
||||||
for (lfs_off_t j = 0; j < $MEDIUMSIZE; j += size) {
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "hair", size) => 0;
|
|
||||||
}
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => 0;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Truncate and read ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldyread",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
|
|
||||||
strcpy((char*)buffer, "hair");
|
|
||||||
lfs_size_t size = strlen((char*)buffer);
|
|
||||||
for (lfs_off_t j = 0; j < $LARGESIZE; j += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_size(&lfs, &file) => $LARGESIZE;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldyread", LFS_O_RDWR) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $LARGESIZE;
|
|
||||||
|
|
||||||
lfs_file_truncate(&lfs, &file, $MEDIUMSIZE) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $MEDIUMSIZE;
|
|
||||||
|
|
||||||
lfs_size_t size = strlen("hair");
|
|
||||||
for (lfs_off_t j = 0; j < $MEDIUMSIZE; j += size) {
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "hair", size) => 0;
|
|
||||||
}
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => 0;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldyread", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $MEDIUMSIZE;
|
|
||||||
|
|
||||||
lfs_size_t size = strlen("hair");
|
|
||||||
for (lfs_off_t j = 0; j < $MEDIUMSIZE; j += size) {
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "hair", size) => 0;
|
|
||||||
}
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => 0;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
echo "--- Truncate and write ---"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldywrite",
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT) => 0;
|
|
||||||
|
|
||||||
strcpy((char*)buffer, "hair");
|
|
||||||
lfs_size_t size = strlen((char*)buffer);
|
|
||||||
for (lfs_off_t j = 0; j < $LARGESIZE; j += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_size(&lfs, &file) => $LARGESIZE;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldywrite", LFS_O_RDWR) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $LARGESIZE;
|
|
||||||
|
|
||||||
lfs_file_truncate(&lfs, &file, $MEDIUMSIZE) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $MEDIUMSIZE;
|
|
||||||
|
|
||||||
strcpy((char*)buffer, "bald");
|
|
||||||
lfs_size_t size = strlen((char*)buffer);
|
|
||||||
for (lfs_off_t j = 0; j < $MEDIUMSIZE; j += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_size(&lfs, &file) => $MEDIUMSIZE;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
lfs_file_open(&lfs, &file, "baldywrite", LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => $MEDIUMSIZE;
|
|
||||||
|
|
||||||
lfs_size_t size = strlen("bald");
|
|
||||||
for (lfs_off_t j = 0; j < $MEDIUMSIZE; j += size) {
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "bald", size) => 0;
|
|
||||||
}
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => 0;
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
|
|
||||||
# More aggressive general truncation tests
|
|
||||||
truncate_test() {
|
|
||||||
STARTSIZES="$1"
|
|
||||||
STARTSEEKS="$2"
|
|
||||||
HOTSIZES="$3"
|
|
||||||
COLDSIZES="$4"
|
|
||||||
scripts/test.py << TEST
|
|
||||||
static const lfs_off_t startsizes[] = {$STARTSIZES};
|
|
||||||
static const lfs_off_t startseeks[] = {$STARTSEEKS};
|
|
||||||
static const lfs_off_t hotsizes[] = {$HOTSIZES};
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
for (unsigned i = 0; i < sizeof(startsizes)/sizeof(startsizes[0]); i++) {
|
|
||||||
sprintf(path, "hairyhead%d", i);
|
|
||||||
lfs_file_open(&lfs, &file, path,
|
|
||||||
LFS_O_WRONLY | LFS_O_CREAT | LFS_O_TRUNC) => 0;
|
|
||||||
|
|
||||||
strcpy((char*)buffer, "hair");
|
|
||||||
lfs_size_t size = strlen((char*)buffer);
|
|
||||||
for (lfs_off_t j = 0; j < startsizes[i]; j += size) {
|
|
||||||
lfs_file_write(&lfs, &file, buffer, size) => size;
|
|
||||||
}
|
|
||||||
lfs_file_size(&lfs, &file) => startsizes[i];
|
|
||||||
|
|
||||||
if (startseeks[i] != startsizes[i]) {
|
|
||||||
lfs_file_seek(&lfs, &file,
|
|
||||||
startseeks[i], LFS_SEEK_SET) => startseeks[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_truncate(&lfs, &file, hotsizes[i]) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => hotsizes[i];
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
static const lfs_off_t startsizes[] = {$STARTSIZES};
|
|
||||||
static const lfs_off_t hotsizes[] = {$HOTSIZES};
|
|
||||||
static const lfs_off_t coldsizes[] = {$COLDSIZES};
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
for (unsigned i = 0; i < sizeof(startsizes)/sizeof(startsizes[0]); i++) {
|
|
||||||
sprintf(path, "hairyhead%d", i);
|
|
||||||
lfs_file_open(&lfs, &file, path, LFS_O_RDWR) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => hotsizes[i];
|
|
||||||
|
|
||||||
lfs_size_t size = strlen("hair");
|
|
||||||
lfs_off_t j = 0;
|
|
||||||
for (; j < startsizes[i] && j < hotsizes[i]; j += size) {
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "hair", size) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (; j < hotsizes[i]; j += size) {
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "\0\0\0\0", size) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_truncate(&lfs, &file, coldsizes[i]) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => coldsizes[i];
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
scripts/test.py << TEST
|
|
||||||
static const lfs_off_t startsizes[] = {$STARTSIZES};
|
|
||||||
static const lfs_off_t hotsizes[] = {$HOTSIZES};
|
|
||||||
static const lfs_off_t coldsizes[] = {$COLDSIZES};
|
|
||||||
|
|
||||||
lfs_mount(&lfs, &cfg) => 0;
|
|
||||||
|
|
||||||
for (unsigned i = 0; i < sizeof(startsizes)/sizeof(startsizes[0]); i++) {
|
|
||||||
sprintf(path, "hairyhead%d", i);
|
|
||||||
lfs_file_open(&lfs, &file, path, LFS_O_RDONLY) => 0;
|
|
||||||
lfs_file_size(&lfs, &file) => coldsizes[i];
|
|
||||||
|
|
||||||
lfs_size_t size = strlen("hair");
|
|
||||||
lfs_off_t j = 0;
|
|
||||||
for (; j < startsizes[i] && j < hotsizes[i] && j < coldsizes[i];
|
|
||||||
j += size) {
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "hair", size) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (; j < coldsizes[i]; j += size) {
|
|
||||||
lfs_file_read(&lfs, &file, buffer, size) => size;
|
|
||||||
memcmp(buffer, "\0\0\0\0", size) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_file_close(&lfs, &file) => 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
lfs_unmount(&lfs) => 0;
|
|
||||||
TEST
|
|
||||||
}
|
|
||||||
|
|
||||||
echo "--- Cold shrinking truncate ---"
|
|
||||||
truncate_test \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE"
|
|
||||||
|
|
||||||
echo "--- Cold expanding truncate ---"
|
|
||||||
truncate_test \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE"
|
|
||||||
|
|
||||||
echo "--- Warm shrinking truncate ---"
|
|
||||||
truncate_test \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" 0, 0, 0, 0, 0"
|
|
||||||
|
|
||||||
echo "--- Warm expanding truncate ---"
|
|
||||||
truncate_test \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE"
|
|
||||||
|
|
||||||
echo "--- Mid-file shrinking truncate ---"
|
|
||||||
truncate_test \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" $LARGESIZE, $LARGESIZE, $LARGESIZE, $LARGESIZE, $LARGESIZE" \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" 0, 0, 0, 0, 0"
|
|
||||||
|
|
||||||
echo "--- Mid-file expanding truncate ---"
|
|
||||||
truncate_test \
|
|
||||||
" 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
" 0, 0, $SMALLSIZE, $MEDIUMSIZE, $LARGESIZE" \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE" \
|
|
||||||
"2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE, 2*$LARGESIZE"
|
|
||||||
|
|
||||||
scripts/results.py
|
|
||||||
Reference in New Issue
Block a user