2017-02-27 00:05:27 +00:00
|
|
|
/*
|
|
|
|
* The little filesystem
|
|
|
|
*
|
2017-10-13 01:27:33 +00:00
|
|
|
* Copyright (c) 2017 ARM Limited
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2017-02-27 00:05:27 +00:00
|
|
|
*/
|
|
|
|
#include "lfs.h"
|
2017-03-25 21:20:31 +00:00
|
|
|
#include "lfs_util.h"
|
2017-02-27 00:05:27 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
2017-04-22 18:30:40 +00:00
|
|
|
#include <stdlib.h>
|
2017-04-30 16:19:37 +00:00
|
|
|
#include <assert.h>
|
2017-02-27 00:05:27 +00:00
|
|
|
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
/// Caching block device operations ///
|
|
|
|
static int lfs_cache_read(lfs_t *lfs, lfs_cache_t *rcache,
|
|
|
|
const lfs_cache_t *pcache, lfs_block_t block,
|
2017-04-24 04:49:21 +00:00
|
|
|
lfs_off_t off, void *buffer, lfs_size_t size) {
|
2017-04-22 18:30:40 +00:00
|
|
|
uint8_t *data = buffer;
|
2017-04-30 16:54:27 +00:00
|
|
|
assert(block < lfs->cfg->block_count);
|
2017-04-22 18:30:40 +00:00
|
|
|
|
|
|
|
while (size > 0) {
|
2017-04-30 16:19:37 +00:00
|
|
|
if (pcache && block == pcache->block && off >= pcache->off &&
|
|
|
|
off < pcache->off + lfs->cfg->prog_size) {
|
|
|
|
// is already in pcache?
|
2017-04-22 18:30:40 +00:00
|
|
|
lfs_size_t diff = lfs_min(size,
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs->cfg->prog_size - (off-pcache->off));
|
|
|
|
memcpy(data, &pcache->buffer[off-pcache->off], diff);
|
2017-04-22 18:30:40 +00:00
|
|
|
|
|
|
|
data += diff;
|
|
|
|
off += diff;
|
|
|
|
size -= diff;
|
|
|
|
continue;
|
2017-04-30 16:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (block == rcache->block && off >= rcache->off &&
|
|
|
|
off < rcache->off + lfs->cfg->read_size) {
|
|
|
|
// is already in rcache?
|
2017-04-22 18:30:40 +00:00
|
|
|
lfs_size_t diff = lfs_min(size,
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs->cfg->read_size - (off-rcache->off));
|
|
|
|
memcpy(data, &rcache->buffer[off-rcache->off], diff);
|
2017-04-22 18:30:40 +00:00
|
|
|
|
|
|
|
data += diff;
|
|
|
|
off += diff;
|
|
|
|
size -= diff;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
if (off % lfs->cfg->read_size == 0 && size >= lfs->cfg->read_size) {
|
2017-04-22 18:30:40 +00:00
|
|
|
// bypass cache?
|
|
|
|
lfs_size_t diff = size - (size % lfs->cfg->read_size);
|
2017-04-24 04:49:21 +00:00
|
|
|
int err = lfs->cfg->read(lfs->cfg, block, off, data, diff);
|
2017-04-22 18:30:40 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
data += diff;
|
|
|
|
off += diff;
|
|
|
|
size -= diff;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// load to cache, first condition can no longer fail
|
2017-04-30 16:19:37 +00:00
|
|
|
rcache->block = block;
|
|
|
|
rcache->off = off - (off % lfs->cfg->read_size);
|
|
|
|
int err = lfs->cfg->read(lfs->cfg, rcache->block,
|
|
|
|
rcache->off, rcache->buffer, lfs->cfg->read_size);
|
2017-04-22 18:30:40 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
2017-02-27 00:05:27 +00:00
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
static int lfs_cache_cmp(lfs_t *lfs, lfs_cache_t *rcache,
|
|
|
|
const lfs_cache_t *pcache, lfs_block_t block,
|
|
|
|
lfs_off_t off, const void *buffer, lfs_size_t size) {
|
|
|
|
const uint8_t *data = buffer;
|
|
|
|
|
|
|
|
for (lfs_off_t i = 0; i < size; i++) {
|
|
|
|
uint8_t c;
|
|
|
|
int err = lfs_cache_read(lfs, rcache, pcache,
|
|
|
|
block, off+i, &c, 1);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c != data[i]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int lfs_cache_crc(lfs_t *lfs, lfs_cache_t *rcache,
|
|
|
|
const lfs_cache_t *pcache, lfs_block_t block,
|
|
|
|
lfs_off_t off, lfs_size_t size, uint32_t *crc) {
|
|
|
|
for (lfs_off_t i = 0; i < size; i++) {
|
|
|
|
uint8_t c;
|
|
|
|
int err = lfs_cache_read(lfs, rcache, pcache,
|
|
|
|
block, off+i, &c, 1);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_crc(crc, &c, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int lfs_cache_flush(lfs_t *lfs,
|
|
|
|
lfs_cache_t *pcache, lfs_cache_t *rcache) {
|
|
|
|
if (pcache->block != 0xffffffff) {
|
|
|
|
int err = lfs->cfg->prog(lfs->cfg, pcache->block,
|
|
|
|
pcache->off, pcache->buffer, lfs->cfg->prog_size);
|
2017-04-30 16:19:37 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-22 18:30:40 +00:00
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
if (rcache) {
|
|
|
|
int res = lfs_cache_cmp(lfs, rcache, NULL, pcache->block,
|
|
|
|
pcache->off, pcache->buffer, lfs->cfg->prog_size);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!res) {
|
|
|
|
return LFS_ERR_CORRUPT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pcache->block = 0xffffffff;
|
2017-04-22 18:30:40 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
static int lfs_cache_prog(lfs_t *lfs, lfs_cache_t *pcache,
|
|
|
|
lfs_cache_t *rcache, lfs_block_t block,
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_off_t off, const void *buffer, lfs_size_t size) {
|
|
|
|
const uint8_t *data = buffer;
|
2017-04-30 16:54:27 +00:00
|
|
|
assert(block < lfs->cfg->block_count);
|
2017-04-30 16:19:37 +00:00
|
|
|
|
2017-04-22 18:30:40 +00:00
|
|
|
while (size > 0) {
|
2017-06-24 05:43:05 +00:00
|
|
|
if (block == pcache->block && off >= pcache->off &&
|
|
|
|
off < pcache->off + lfs->cfg->prog_size) {
|
|
|
|
// is already in pcache?
|
2017-04-22 18:30:40 +00:00
|
|
|
lfs_size_t diff = lfs_min(size,
|
2017-06-24 05:43:05 +00:00
|
|
|
lfs->cfg->prog_size - (off-pcache->off));
|
|
|
|
memcpy(&pcache->buffer[off-pcache->off], data, diff);
|
2017-04-22 18:30:40 +00:00
|
|
|
|
|
|
|
data += diff;
|
|
|
|
off += diff;
|
|
|
|
size -= diff;
|
2017-04-30 16:19:37 +00:00
|
|
|
|
|
|
|
if (off % lfs->cfg->prog_size == 0) {
|
2017-06-24 05:43:05 +00:00
|
|
|
// eagerly flush out pcache if we fill up
|
|
|
|
int err = lfs_cache_flush(lfs, pcache, rcache);
|
2017-04-30 16:19:37 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 18:30:40 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
// pcache must have been flushed, either by programming and
|
|
|
|
// entire block or manually flushing the pcache
|
|
|
|
assert(pcache->block == 0xffffffff);
|
2017-04-22 18:30:40 +00:00
|
|
|
|
|
|
|
if (off % lfs->cfg->prog_size == 0 &&
|
|
|
|
size >= lfs->cfg->prog_size) {
|
2017-06-24 05:43:05 +00:00
|
|
|
// bypass pcache?
|
2017-04-22 18:30:40 +00:00
|
|
|
lfs_size_t diff = size - (size % lfs->cfg->prog_size);
|
2017-04-24 04:49:21 +00:00
|
|
|
int err = lfs->cfg->prog(lfs->cfg, block, off, data, diff);
|
2017-04-22 18:30:40 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
if (rcache) {
|
|
|
|
int res = lfs_cache_cmp(lfs, rcache, NULL,
|
|
|
|
block, off, data, diff);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!res) {
|
|
|
|
return LFS_ERR_CORRUPT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 18:30:40 +00:00
|
|
|
data += diff;
|
|
|
|
off += diff;
|
|
|
|
size -= diff;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
// prepare pcache, first condition can no longer fail
|
|
|
|
pcache->block = block;
|
|
|
|
pcache->off = off - (off % lfs->cfg->prog_size);
|
2017-04-22 18:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
|
|
|
|
/// General lfs block device operations ///
|
2017-06-24 05:43:05 +00:00
|
|
|
static int lfs_bd_read(lfs_t *lfs, lfs_block_t block,
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_off_t off, void *buffer, lfs_size_t size) {
|
|
|
|
// if we ever do more than writes to alternating pairs,
|
|
|
|
// this may need to consider pcache
|
|
|
|
return lfs_cache_read(lfs, &lfs->rcache, NULL,
|
|
|
|
block, off, buffer, size);
|
|
|
|
}
|
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
static int lfs_bd_prog(lfs_t *lfs, lfs_block_t block,
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_off_t off, const void *buffer, lfs_size_t size) {
|
2017-06-24 05:43:05 +00:00
|
|
|
return lfs_cache_prog(lfs, &lfs->pcache, NULL,
|
2017-04-30 16:19:37 +00:00
|
|
|
block, off, buffer, size);
|
|
|
|
}
|
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
static int lfs_bd_cmp(lfs_t *lfs, lfs_block_t block,
|
|
|
|
lfs_off_t off, const void *buffer, lfs_size_t size) {
|
|
|
|
return lfs_cache_cmp(lfs, &lfs->rcache, NULL, block, off, buffer, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int lfs_bd_crc(lfs_t *lfs, lfs_block_t block,
|
|
|
|
lfs_off_t off, lfs_size_t size, uint32_t *crc) {
|
|
|
|
return lfs_cache_crc(lfs, &lfs->rcache, NULL, block, off, size, crc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int lfs_bd_erase(lfs_t *lfs, lfs_block_t block) {
|
2017-04-22 16:42:05 +00:00
|
|
|
return lfs->cfg->erase(lfs->cfg, block);
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
2017-02-27 00:05:27 +00:00
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
static int lfs_bd_sync(lfs_t *lfs) {
|
2017-06-25 21:21:14 +00:00
|
|
|
lfs->rcache.block = 0xffffffff;
|
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
int err = lfs_cache_flush(lfs, &lfs->pcache, NULL);
|
2017-04-22 18:30:40 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-22 16:42:05 +00:00
|
|
|
return lfs->cfg->sync(lfs->cfg);
|
2017-02-27 00:05:27 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
/// Internal operations predeclared here ///
|
|
|
|
int lfs_traverse(lfs_t *lfs, int (*cb)(void*, lfs_block_t), void *data);
|
|
|
|
static int lfs_pred(lfs_t *lfs, const lfs_block_t dir[2], lfs_dir_t *pdir);
|
|
|
|
static int lfs_parent(lfs_t *lfs, const lfs_block_t dir[2],
|
|
|
|
lfs_dir_t *parent, lfs_entry_t *entry);
|
2017-10-07 14:19:08 +00:00
|
|
|
static int lfs_moved(lfs_t *lfs, const void *e);
|
2017-05-14 17:01:45 +00:00
|
|
|
static int lfs_relocate(lfs_t *lfs,
|
|
|
|
const lfs_block_t oldpair[2], const lfs_block_t newpair[2]);
|
|
|
|
int lfs_deorphan(lfs_t *lfs);
|
|
|
|
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
/// Block allocator ///
|
2017-04-01 15:44:17 +00:00
|
|
|
static int lfs_alloc_lookahead(void *p, lfs_block_t block) {
|
|
|
|
lfs_t *lfs = p;
|
|
|
|
|
2017-09-19 02:20:33 +00:00
|
|
|
lfs_block_t off = (((lfs_soff_t)(block - lfs->free.begin)
|
2017-09-17 19:52:25 +00:00
|
|
|
% (lfs_soff_t)(lfs->cfg->block_count))
|
|
|
|
+ lfs->cfg->block_count) % lfs->cfg->block_count;
|
|
|
|
|
2017-11-10 01:10:08 +00:00
|
|
|
if (off < lfs->cfg->lookahead) {
|
2017-09-19 02:20:33 +00:00
|
|
|
lfs->free.buffer[off / 32] |= 1U << (off % 32);
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
static int lfs_alloc(lfs_t *lfs, lfs_block_t *block) {
|
2017-04-01 15:44:17 +00:00
|
|
|
while (true) {
|
2017-05-14 17:01:45 +00:00
|
|
|
while (true) {
|
|
|
|
// check if we have looked at all blocks since last ack
|
2017-09-19 02:20:33 +00:00
|
|
|
if (lfs->free.begin + lfs->free.off == lfs->free.end) {
|
2017-05-14 17:01:45 +00:00
|
|
|
LFS_WARN("No more free space %d", lfs->free.end);
|
|
|
|
return LFS_ERR_NOSPC;
|
|
|
|
}
|
|
|
|
|
2017-11-10 01:10:08 +00:00
|
|
|
if (lfs->free.off >= lfs_min(
|
|
|
|
lfs->cfg->lookahead, lfs->cfg->block_count)) {
|
2017-05-14 17:01:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-22 19:56:12 +00:00
|
|
|
lfs_block_t off = lfs->free.off;
|
|
|
|
lfs->free.off += 1;
|
|
|
|
|
2017-09-19 02:20:33 +00:00
|
|
|
if (!(lfs->free.buffer[off / 32] & (1U << (off % 32)))) {
|
2017-04-22 19:56:12 +00:00
|
|
|
// found a free block
|
2017-09-19 02:20:33 +00:00
|
|
|
*block = (lfs->free.begin + off) % lfs->cfg->block_count;
|
2017-04-22 19:56:12 +00:00
|
|
|
return 0;
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 01:10:08 +00:00
|
|
|
lfs->free.begin += lfs_min(lfs->cfg->lookahead, lfs->cfg->block_count);
|
2017-04-22 19:56:12 +00:00
|
|
|
lfs->free.off = 0;
|
2017-04-01 15:44:17 +00:00
|
|
|
|
2017-04-22 19:56:12 +00:00
|
|
|
// find mask of free blocks from tree
|
2017-11-10 01:10:08 +00:00
|
|
|
memset(lfs->free.buffer, 0, lfs->cfg->lookahead/8);
|
2017-04-22 19:56:12 +00:00
|
|
|
int err = lfs_traverse(lfs, lfs_alloc_lookahead, lfs);
|
2017-04-01 15:44:17 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-04-01 17:23:15 +00:00
|
|
|
}
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
static void lfs_alloc_ack(lfs_t *lfs) {
|
2017-09-19 02:20:33 +00:00
|
|
|
lfs->free.end = lfs->free.begin + lfs->free.off + lfs->cfg->block_count;
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
2017-03-13 00:41:08 +00:00
|
|
|
|
2017-02-27 00:05:27 +00:00
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
/// Metadata pair and directory operations ///
|
2017-04-01 15:44:17 +00:00
|
|
|
static inline void lfs_pairswap(lfs_block_t pair[2]) {
|
2017-03-25 21:20:31 +00:00
|
|
|
lfs_block_t t = pair[0];
|
|
|
|
pair[0] = pair[1];
|
|
|
|
pair[1] = t;
|
2017-03-12 20:11:52 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
static inline bool lfs_pairisnull(const lfs_block_t pair[2]) {
|
2017-04-30 16:54:27 +00:00
|
|
|
return pair[0] == 0xffffffff || pair[1] == 0xffffffff;
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:44:17 +00:00
|
|
|
static inline int lfs_paircmp(
|
|
|
|
const lfs_block_t paira[2],
|
|
|
|
const lfs_block_t pairb[2]) {
|
2017-04-29 17:41:53 +00:00
|
|
|
return !(paira[0] == pairb[0] || paira[1] == pairb[1] ||
|
|
|
|
paira[0] == pairb[1] || paira[1] == pairb[0]);
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
static inline bool lfs_pairsync(
|
|
|
|
const lfs_block_t paira[2],
|
|
|
|
const lfs_block_t pairb[2]) {
|
|
|
|
return (paira[0] == pairb[0] && paira[1] == pairb[1]) ||
|
|
|
|
(paira[0] == pairb[1] && paira[1] == pairb[0]);
|
|
|
|
}
|
|
|
|
|
2017-09-18 01:36:42 +00:00
|
|
|
static inline lfs_size_t lfs_entry_size(const lfs_entry_t *entry) {
|
|
|
|
return 4 + entry->d.elen + entry->d.alen + entry->d.nlen;
|
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
static int lfs_dir_alloc(lfs_t *lfs, lfs_dir_t *dir) {
|
2017-04-29 17:41:53 +00:00
|
|
|
// allocate pair of dir blocks
|
2017-04-18 03:27:06 +00:00
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
int err = lfs_alloc(lfs, &dir->pair[i]);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-29 17:41:53 +00:00
|
|
|
// rather than clobbering one of the blocks we just pretend
|
2017-04-18 03:27:06 +00:00
|
|
|
// the revision may be valid
|
2017-06-24 05:43:05 +00:00
|
|
|
int err = lfs_bd_read(lfs, dir->pair[0], 0, &dir->d.rev, 4);
|
2017-04-18 03:27:06 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-03-05 20:11:52 +00:00
|
|
|
|
2017-04-29 17:41:53 +00:00
|
|
|
// set defaults
|
2017-04-18 03:27:06 +00:00
|
|
|
dir->d.rev += 1;
|
2017-06-24 01:03:44 +00:00
|
|
|
dir->d.size = sizeof(dir->d)+4;
|
2017-10-17 00:31:56 +00:00
|
|
|
dir->d.tail[0] = 0xffffffff;
|
|
|
|
dir->d.tail[1] = 0xffffffff;
|
2017-04-18 03:27:06 +00:00
|
|
|
dir->off = sizeof(dir->d);
|
|
|
|
|
2017-04-29 17:41:53 +00:00
|
|
|
// don't write out yet, let caller take care of that
|
2017-04-18 03:27:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int lfs_dir_fetch(lfs_t *lfs,
|
|
|
|
lfs_dir_t *dir, const lfs_block_t pair[2]) {
|
|
|
|
// copy out pair, otherwise may be aliasing dir
|
2017-04-22 19:56:12 +00:00
|
|
|
const lfs_block_t tpair[2] = {pair[0], pair[1]};
|
2017-04-18 03:27:06 +00:00
|
|
|
bool valid = false;
|
|
|
|
|
|
|
|
// check both blocks for the most recent revision
|
2017-03-12 20:11:52 +00:00
|
|
|
for (int i = 0; i < 2; i++) {
|
2017-04-18 03:27:06 +00:00
|
|
|
struct lfs_disk_dir test;
|
2017-06-24 05:43:05 +00:00
|
|
|
int err = lfs_bd_read(lfs, tpair[i], 0, &test, sizeof(test));
|
2017-03-12 20:11:52 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-03-05 20:11:52 +00:00
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
if (valid && lfs_scmp(test.rev, dir->d.rev) < 0) {
|
2017-03-12 20:11:52 +00:00
|
|
|
continue;
|
|
|
|
}
|
2017-03-05 20:11:52 +00:00
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
if ((0x7fffffff & test.size) < sizeof(test)+4 ||
|
|
|
|
(0x7fffffff & test.size) > lfs->cfg->block_size) {
|
2017-06-24 01:03:44 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
uint32_t crc = 0xffffffff;
|
2017-06-24 05:43:05 +00:00
|
|
|
lfs_crc(&crc, &test, sizeof(test));
|
|
|
|
err = lfs_bd_crc(lfs, tpair[i], sizeof(test),
|
|
|
|
(0x7fffffff & test.size) - sizeof(test), &crc);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-03-05 20:11:52 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
if (crc != 0) {
|
2017-04-18 03:27:06 +00:00
|
|
|
continue;
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
valid = true;
|
2017-03-12 20:11:52 +00:00
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
// setup dir in case it's valid
|
|
|
|
dir->pair[0] = tpair[(i+0) % 2];
|
|
|
|
dir->pair[1] = tpair[(i+1) % 2];
|
|
|
|
dir->off = sizeof(dir->d);
|
|
|
|
dir->d = test;
|
2017-03-12 20:11:52 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
if (!valid) {
|
|
|
|
LFS_ERROR("Corrupted dir pair at %d %d", tpair[0], tpair[1]);
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_CORRUPT;
|
2017-03-05 20:11:52 +00:00
|
|
|
}
|
|
|
|
|
2017-03-12 20:11:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
struct lfs_region {
|
|
|
|
lfs_off_t oldoff;
|
|
|
|
lfs_size_t oldlen;
|
|
|
|
const void *newdata;
|
|
|
|
lfs_size_t newlen;
|
|
|
|
};
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
static int lfs_dir_commit(lfs_t *lfs, lfs_dir_t *dir,
|
2017-05-14 17:01:45 +00:00
|
|
|
const struct lfs_region *regions, int count) {
|
2017-10-07 21:56:00 +00:00
|
|
|
// increment revision count
|
2017-04-18 03:27:06 +00:00
|
|
|
dir->d.rev += 1;
|
2017-10-07 21:56:00 +00:00
|
|
|
|
|
|
|
// keep pairs in order such that pair[0] is most recent
|
2017-04-18 03:27:06 +00:00
|
|
|
lfs_pairswap(dir->pair);
|
2017-05-14 17:01:45 +00:00
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
dir->d.size += regions[i].newlen - regions[i].oldlen;
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
2017-03-12 20:11:52 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
const lfs_block_t oldpair[2] = {dir->pair[0], dir->pair[1]};
|
|
|
|
bool relocated = false;
|
2017-03-05 20:11:52 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
while (true) {
|
2017-10-17 00:31:56 +00:00
|
|
|
if (true) {
|
|
|
|
int err = lfs_bd_erase(lfs, dir->pair[0]);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
2017-03-12 20:11:52 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
uint32_t crc = 0xffffffff;
|
|
|
|
lfs_crc(&crc, &dir->d, sizeof(dir->d));
|
|
|
|
err = lfs_bd_prog(lfs, dir->pair[0], 0, &dir->d, sizeof(dir->d));
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
int i = 0;
|
|
|
|
lfs_off_t oldoff = sizeof(dir->d);
|
|
|
|
lfs_off_t newoff = sizeof(dir->d);
|
|
|
|
while (newoff < (0x7fffffff & dir->d.size)-4) {
|
|
|
|
if (i < count && regions[i].oldoff == oldoff) {
|
|
|
|
lfs_crc(&crc, regions[i].newdata, regions[i].newlen);
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_bd_prog(lfs, dir->pair[0],
|
2017-10-17 00:31:56 +00:00
|
|
|
newoff, regions[i].newdata, regions[i].newlen);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
oldoff += regions[i].oldlen;
|
|
|
|
newoff += regions[i].newlen;
|
|
|
|
i += 1;
|
|
|
|
} else {
|
|
|
|
uint8_t data;
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_bd_read(lfs, oldpair[1], oldoff, &data, 1);
|
2017-10-17 00:31:56 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
lfs_crc(&crc, &data, 1);
|
|
|
|
err = lfs_bd_prog(lfs, dir->pair[0], newoff, &data, 1);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
oldoff += 1;
|
|
|
|
newoff += 1;
|
|
|
|
}
|
2017-03-12 20:11:52 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
err = lfs_bd_prog(lfs, dir->pair[0], newoff, &crc, 4);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
2017-04-18 03:27:06 +00:00
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
err = lfs_bd_sync(lfs);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
2017-04-01 15:44:17 +00:00
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
// successful commit, check checksum to make sure
|
2017-11-16 20:53:45 +00:00
|
|
|
uint32_t ncrc = 0xffffffff;
|
2017-10-17 00:31:56 +00:00
|
|
|
err = lfs_bd_crc(lfs, dir->pair[0], 0,
|
2017-11-16 20:53:45 +00:00
|
|
|
(0x7fffffff & dir->d.size)-4, &ncrc);
|
2017-10-17 00:31:56 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-06-24 05:43:05 +00:00
|
|
|
|
2017-11-16 20:53:45 +00:00
|
|
|
if (ncrc != crc) {
|
|
|
|
goto relocate;
|
2017-10-17 00:31:56 +00:00
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
2017-04-01 15:44:17 +00:00
|
|
|
|
2017-11-16 20:53:45 +00:00
|
|
|
break;
|
2017-05-14 17:01:45 +00:00
|
|
|
relocate:
|
2017-06-24 05:43:05 +00:00
|
|
|
//commit was corrupted
|
2017-05-14 17:01:45 +00:00
|
|
|
LFS_DEBUG("Bad block at %d", dir->pair[0]);
|
2017-04-01 15:44:17 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// drop caches and prepare to relocate block
|
|
|
|
relocated = true;
|
|
|
|
lfs->pcache.block = 0xffffffff;
|
2017-04-01 15:44:17 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// can't relocate superblock, filesystem is now frozen
|
|
|
|
if (lfs_paircmp(oldpair, (const lfs_block_t[2]){0, 1}) == 0) {
|
|
|
|
LFS_WARN("Superblock %d has become unwritable", oldpair[0]);
|
|
|
|
return LFS_ERR_CORRUPT;
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// relocate half of pair
|
2017-10-17 00:31:56 +00:00
|
|
|
int err = lfs_alloc(lfs, &dir->pair[0]);
|
2017-04-18 03:27:06 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
2017-06-24 05:43:05 +00:00
|
|
|
|
|
|
|
if (relocated) {
|
|
|
|
// update references if we relocated
|
|
|
|
LFS_DEBUG("Relocating %d %d to %d %d",
|
|
|
|
oldpair[0], oldpair[1], dir->pair[0], dir->pair[1]);
|
2017-11-22 02:53:15 +00:00
|
|
|
int err = lfs_relocate(lfs, oldpair, dir->pair);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// shift over any directories that are affected
|
|
|
|
for (lfs_dir_t *d = lfs->dirs; d; d = d->next) {
|
|
|
|
if (lfs_paircmp(d->pair, dir->pair) == 0) {
|
|
|
|
d->pair[0] = dir->pair[0];
|
|
|
|
d->pair[1] = dir->pair[1];
|
|
|
|
}
|
2017-06-24 05:43:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
2017-04-01 15:44:17 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
static int lfs_dir_update(lfs_t *lfs, lfs_dir_t *dir,
|
|
|
|
const lfs_entry_t *entry, const void *data) {
|
|
|
|
return lfs_dir_commit(lfs, dir, (struct lfs_region[]){
|
|
|
|
{entry->off, sizeof(entry->d), &entry->d, sizeof(entry->d)},
|
2017-07-18 07:09:35 +00:00
|
|
|
{entry->off+sizeof(entry->d), entry->d.nlen, data, entry->d.nlen}
|
2017-05-14 17:01:45 +00:00
|
|
|
}, data ? 2 : 1);
|
2017-02-27 03:00:39 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
static int lfs_dir_append(lfs_t *lfs, lfs_dir_t *dir,
|
|
|
|
lfs_entry_t *entry, const void *data) {
|
|
|
|
// check if we fit, if top bit is set we do not and move on
|
|
|
|
while (true) {
|
2017-09-18 01:36:42 +00:00
|
|
|
if (dir->d.size + lfs_entry_size(entry) <= lfs->cfg->block_size) {
|
2017-06-24 01:03:44 +00:00
|
|
|
entry->off = dir->d.size - 4;
|
2017-05-14 17:01:45 +00:00
|
|
|
return lfs_dir_commit(lfs, dir, (struct lfs_region[]){
|
|
|
|
{entry->off, 0, &entry->d, sizeof(entry->d)},
|
2017-07-18 07:09:35 +00:00
|
|
|
{entry->off, 0, data, entry->d.nlen}
|
2017-05-14 17:01:45 +00:00
|
|
|
}, 2);
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
2017-03-25 21:20:31 +00:00
|
|
|
|
2017-04-29 17:41:53 +00:00
|
|
|
// we need to allocate a new dir block
|
2017-04-18 03:27:06 +00:00
|
|
|
if (!(0x80000000 & dir->d.size)) {
|
|
|
|
lfs_dir_t newdir;
|
|
|
|
int err = lfs_dir_alloc(lfs, &newdir);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-03-25 21:20:31 +00:00
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
newdir.d.tail[0] = dir->d.tail[0];
|
|
|
|
newdir.d.tail[1] = dir->d.tail[1];
|
2017-06-24 01:03:44 +00:00
|
|
|
entry->off = newdir.d.size - 4;
|
2017-05-14 17:01:45 +00:00
|
|
|
err = lfs_dir_commit(lfs, &newdir, (struct lfs_region[]){
|
|
|
|
{entry->off, 0, &entry->d, sizeof(entry->d)},
|
2017-07-18 07:09:35 +00:00
|
|
|
{entry->off, 0, data, entry->d.nlen}
|
2017-05-14 17:01:45 +00:00
|
|
|
}, 2);
|
2017-04-18 03:27:06 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
dir->d.size |= 0x80000000;
|
|
|
|
dir->d.tail[0] = newdir.pair[0];
|
|
|
|
dir->d.tail[1] = newdir.pair[1];
|
2017-05-14 17:01:45 +00:00
|
|
|
return lfs_dir_commit(lfs, dir, NULL, 0);
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int err = lfs_dir_fetch(lfs, dir, dir->d.tail);
|
2017-03-12 20:11:52 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
static int lfs_dir_remove(lfs_t *lfs, lfs_dir_t *dir, lfs_entry_t *entry) {
|
2017-11-22 02:53:15 +00:00
|
|
|
// check if we should just drop the directory block
|
2017-09-18 01:36:42 +00:00
|
|
|
if ((dir->d.size & 0x7fffffff) == sizeof(dir->d)+4
|
|
|
|
+ lfs_entry_size(entry)) {
|
2017-04-18 03:27:06 +00:00
|
|
|
lfs_dir_t pdir;
|
2017-05-14 17:01:45 +00:00
|
|
|
int res = lfs_pred(lfs, dir->pair, &pdir);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 02:53:15 +00:00
|
|
|
if (pdir.d.size & 0x80000000) {
|
2017-09-18 01:36:42 +00:00
|
|
|
pdir.d.size &= dir->d.size | 0x7fffffff;
|
2017-04-18 03:27:06 +00:00
|
|
|
pdir.d.tail[0] = dir->d.tail[0];
|
|
|
|
pdir.d.tail[1] = dir->d.tail[1];
|
2017-09-18 01:36:42 +00:00
|
|
|
return lfs_dir_commit(lfs, &pdir, NULL, 0);
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
2017-11-22 02:53:15 +00:00
|
|
|
}
|
2017-10-07 21:56:00 +00:00
|
|
|
|
2017-11-22 02:53:15 +00:00
|
|
|
// shift out the entry
|
|
|
|
int err = lfs_dir_commit(lfs, dir, (struct lfs_region[]){
|
|
|
|
{entry->off, lfs_entry_size(entry), NULL, 0},
|
|
|
|
}, 1);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// shift over any files/directories that are affected
|
|
|
|
for (lfs_file_t *f = lfs->files; f; f = f->next) {
|
|
|
|
if (lfs_paircmp(f->pair, dir->pair) == 0) {
|
|
|
|
if (f->poff == entry->off) {
|
|
|
|
f->pair[0] = 0xffffffff;
|
|
|
|
f->pair[1] = 0xffffffff;
|
|
|
|
} else if (f->poff > entry->off) {
|
|
|
|
f->poff -= lfs_entry_size(entry);
|
2017-10-07 21:56:00 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-22 02:53:15 +00:00
|
|
|
}
|
2017-10-07 21:56:00 +00:00
|
|
|
|
2017-11-22 02:53:15 +00:00
|
|
|
for (lfs_dir_t *d = lfs->dirs; d; d = d->next) {
|
|
|
|
if (lfs_paircmp(d->pair, dir->pair) == 0) {
|
|
|
|
if (d->off > entry->off) {
|
|
|
|
d->off -= lfs_entry_size(entry);
|
|
|
|
d->pos -= lfs_entry_size(entry);
|
|
|
|
}
|
|
|
|
}
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
2017-11-22 02:53:15 +00:00
|
|
|
|
|
|
|
return 0;
|
2017-03-12 20:11:52 +00:00
|
|
|
}
|
2017-03-05 20:11:52 +00:00
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
static int lfs_dir_next(lfs_t *lfs, lfs_dir_t *dir, lfs_entry_t *entry) {
|
2017-06-24 01:03:44 +00:00
|
|
|
while (dir->off + sizeof(entry->d) > (0x7fffffff & dir->d.size)-4) {
|
2017-05-14 17:01:45 +00:00
|
|
|
if (!(0x80000000 & dir->d.size)) {
|
|
|
|
entry->off = dir->off;
|
|
|
|
return LFS_ERR_NOENT;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
int err = lfs_dir_fetch(lfs, dir, dir->d.tail);
|
2017-03-13 00:41:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
dir->off = sizeof(dir->d);
|
2017-06-24 01:03:44 +00:00
|
|
|
dir->pos += sizeof(dir->d) + 4;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
int err = lfs_bd_read(lfs, dir->pair[0], dir->off,
|
2017-05-14 17:01:45 +00:00
|
|
|
&entry->d, sizeof(entry->d));
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-07-18 07:09:35 +00:00
|
|
|
entry->off = dir->off;
|
2017-09-18 01:36:42 +00:00
|
|
|
dir->off += lfs_entry_size(entry);
|
|
|
|
dir->pos += lfs_entry_size(entry);
|
2017-05-14 17:01:45 +00:00
|
|
|
return 0;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
static int lfs_dir_find(lfs_t *lfs, lfs_dir_t *dir,
|
2017-04-18 03:27:06 +00:00
|
|
|
lfs_entry_t *entry, const char **path) {
|
2017-04-14 23:27:06 +00:00
|
|
|
const char *pathname = *path;
|
|
|
|
size_t pathlen;
|
|
|
|
|
2017-03-13 00:41:08 +00:00
|
|
|
while (true) {
|
2017-04-14 23:27:06 +00:00
|
|
|
nextname:
|
|
|
|
// skip slashes
|
|
|
|
pathname += strspn(pathname, "/");
|
|
|
|
pathlen = strcspn(pathname, "/");
|
|
|
|
|
|
|
|
// skip '.' and root '..'
|
|
|
|
if ((pathlen == 1 && memcmp(pathname, ".", 1) == 0) ||
|
|
|
|
(pathlen == 2 && memcmp(pathname, "..", 2) == 0)) {
|
|
|
|
pathname += pathlen;
|
|
|
|
goto nextname;
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip if matched by '..' in name
|
|
|
|
const char *suffix = pathname + pathlen;
|
|
|
|
size_t sufflen;
|
|
|
|
int depth = 1;
|
|
|
|
while (true) {
|
|
|
|
suffix += strspn(suffix, "/");
|
|
|
|
sufflen = strcspn(suffix, "/");
|
|
|
|
if (sufflen == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sufflen == 2 && memcmp(suffix, "..", 2) == 0) {
|
|
|
|
depth -= 1;
|
|
|
|
if (depth == 0) {
|
|
|
|
pathname = suffix + sufflen;
|
|
|
|
goto nextname;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
depth += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
suffix += sufflen;
|
|
|
|
}
|
|
|
|
|
2017-09-17 21:46:09 +00:00
|
|
|
// update what we've found
|
|
|
|
*path = pathname;
|
|
|
|
|
2017-04-14 23:27:06 +00:00
|
|
|
// find path
|
2017-04-01 15:09:17 +00:00
|
|
|
while (true) {
|
|
|
|
int err = lfs_dir_next(lfs, dir, entry);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-10-07 14:19:08 +00:00
|
|
|
if (((0x7f & entry->d.type) != LFS_TYPE_REG &&
|
|
|
|
(0x7f & entry->d.type) != LFS_TYPE_DIR) ||
|
2017-07-18 07:09:35 +00:00
|
|
|
entry->d.nlen != pathlen) {
|
2017-04-01 15:09:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-06-24 05:43:05 +00:00
|
|
|
int res = lfs_bd_cmp(lfs, dir->pair[0],
|
2017-07-18 07:09:35 +00:00
|
|
|
entry->off + 4+entry->d.elen+entry->d.alen,
|
|
|
|
pathname, pathlen);
|
2017-06-24 05:43:05 +00:00
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
2017-04-01 15:09:17 +00:00
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// found match
|
2017-06-24 05:43:05 +00:00
|
|
|
if (res) {
|
2017-04-01 15:09:17 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 14:19:08 +00:00
|
|
|
// check that entry has not been moved
|
|
|
|
if (entry->d.type & 0x80) {
|
|
|
|
int moved = lfs_moved(lfs, &entry->d.u);
|
|
|
|
if (moved < 0 || moved) {
|
|
|
|
return (moved < 0) ? moved : LFS_ERR_NOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry->d.type &= ~0x80;
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:09:17 +00:00
|
|
|
pathname += pathlen;
|
|
|
|
pathname += strspn(pathname, "/");
|
|
|
|
if (pathname[0] == '\0') {
|
|
|
|
return 0;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-04-14 23:27:06 +00:00
|
|
|
// continue on if we hit a directory
|
2017-04-01 15:09:17 +00:00
|
|
|
if (entry->d.type != LFS_TYPE_DIR) {
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_NOTDIR;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 15:09:17 +00:00
|
|
|
int err = lfs_dir_fetch(lfs, dir, entry->d.u.dir);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
/// Top level directory operations ///
|
2017-03-25 21:20:31 +00:00
|
|
|
int lfs_mkdir(lfs_t *lfs, const char *path) {
|
2017-10-07 21:56:00 +00:00
|
|
|
// deorphan if we haven't yet, needed at most once after poweron
|
|
|
|
if (!lfs->deorphaned) {
|
|
|
|
int err = lfs_deorphan(lfs);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
// fetch parent directory
|
2017-03-13 00:41:08 +00:00
|
|
|
lfs_dir_t cwd;
|
2017-04-18 03:27:06 +00:00
|
|
|
int err = lfs_dir_fetch(lfs, &cwd, lfs->root);
|
2017-03-13 00:41:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_entry_t entry;
|
2017-04-18 03:27:06 +00:00
|
|
|
err = lfs_dir_find(lfs, &cwd, &entry, &path);
|
2017-09-17 21:46:09 +00:00
|
|
|
if (err != LFS_ERR_NOENT || strchr(path, '/') != NULL) {
|
2017-11-16 23:50:14 +00:00
|
|
|
return err ? err : LFS_ERR_EXIST;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// build up new directory
|
|
|
|
lfs_alloc_ack(lfs);
|
|
|
|
|
2017-03-13 00:41:08 +00:00
|
|
|
lfs_dir_t dir;
|
2017-04-18 03:27:06 +00:00
|
|
|
err = lfs_dir_alloc(lfs, &dir);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
dir.d.tail[0] = cwd.d.tail[0];
|
|
|
|
dir.d.tail[1] = cwd.d.tail[1];
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
err = lfs_dir_commit(lfs, &dir, NULL, 0);
|
2017-03-13 00:41:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
entry.d.type = LFS_TYPE_DIR;
|
2017-07-18 07:09:35 +00:00
|
|
|
entry.d.elen = sizeof(entry.d) - 4;
|
|
|
|
entry.d.alen = 0;
|
|
|
|
entry.d.nlen = strlen(path);
|
2017-03-13 00:41:08 +00:00
|
|
|
entry.d.u.dir[0] = dir.pair[0];
|
|
|
|
entry.d.u.dir[1] = dir.pair[1];
|
|
|
|
|
2017-04-01 15:44:17 +00:00
|
|
|
cwd.d.tail[0] = dir.pair[0];
|
|
|
|
cwd.d.tail[1] = dir.pair[1];
|
2017-03-13 00:41:08 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
err = lfs_dir_append(lfs, &cwd, &entry, path);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_alloc_ack(lfs);
|
|
|
|
return 0;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
int lfs_dir_open(lfs_t *lfs, lfs_dir_t *dir, const char *path) {
|
2017-04-18 03:27:06 +00:00
|
|
|
dir->pair[0] = lfs->root[0];
|
|
|
|
dir->pair[1] = lfs->root[1];
|
2017-03-25 23:11:45 +00:00
|
|
|
|
|
|
|
int err = lfs_dir_fetch(lfs, dir, dir->pair);
|
2017-03-25 21:20:31 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-04-23 04:11:13 +00:00
|
|
|
}
|
|
|
|
|
2017-09-17 21:46:09 +00:00
|
|
|
// check for root, can only be something like '/././../.'
|
2017-04-23 04:11:13 +00:00
|
|
|
if (strspn(path, "/.") == strlen(path)) {
|
|
|
|
dir->head[0] = dir->pair[0];
|
|
|
|
dir->head[1] = dir->pair[1];
|
|
|
|
dir->pos = sizeof(dir->d) - 2;
|
|
|
|
dir->off = sizeof(dir->d);
|
2017-03-25 23:11:45 +00:00
|
|
|
return 0;
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
2017-04-01 15:44:17 +00:00
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
lfs_entry_t entry;
|
2017-04-18 03:27:06 +00:00
|
|
|
err = lfs_dir_find(lfs, dir, &entry, &path);
|
2017-03-25 21:20:31 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
} else if (entry.d.type != LFS_TYPE_DIR) {
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_NOTDIR;
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 16:26:37 +00:00
|
|
|
err = lfs_dir_fetch(lfs, dir, entry.d.u.dir);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:11:13 +00:00
|
|
|
// setup head dir
|
2017-04-15 16:26:37 +00:00
|
|
|
// special offset for '.' and '..'
|
2017-04-23 04:11:13 +00:00
|
|
|
dir->head[0] = dir->pair[0];
|
|
|
|
dir->head[1] = dir->pair[1];
|
|
|
|
dir->pos = sizeof(dir->d) - 2;
|
|
|
|
dir->off = sizeof(dir->d);
|
2017-11-22 02:53:15 +00:00
|
|
|
|
|
|
|
// add to list of directories
|
|
|
|
dir->next = lfs->dirs;
|
|
|
|
lfs->dirs = dir;
|
|
|
|
|
2017-04-15 16:26:37 +00:00
|
|
|
return 0;
|
2017-03-25 21:20:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int lfs_dir_close(lfs_t *lfs, lfs_dir_t *dir) {
|
2017-11-22 02:53:15 +00:00
|
|
|
// remove from list of directories
|
|
|
|
for (lfs_dir_t **p = &lfs->dirs; *p; p = &(*p)->next) {
|
|
|
|
if (*p == dir) {
|
|
|
|
*p = dir->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-25 23:11:45 +00:00
|
|
|
int lfs_dir_read(lfs_t *lfs, lfs_dir_t *dir, struct lfs_info *info) {
|
|
|
|
memset(info, 0, sizeof(*info));
|
|
|
|
|
2017-04-23 04:11:13 +00:00
|
|
|
// special offset for '.' and '..'
|
|
|
|
if (dir->pos == sizeof(dir->d) - 2) {
|
2017-04-15 16:26:37 +00:00
|
|
|
info->type = LFS_TYPE_DIR;
|
|
|
|
strcpy(info->name, ".");
|
2017-04-23 04:11:13 +00:00
|
|
|
dir->pos += 1;
|
2017-04-15 16:26:37 +00:00
|
|
|
return 1;
|
2017-04-23 04:11:13 +00:00
|
|
|
} else if (dir->pos == sizeof(dir->d) - 1) {
|
2017-04-15 16:26:37 +00:00
|
|
|
info->type = LFS_TYPE_DIR;
|
|
|
|
strcpy(info->name, "..");
|
2017-04-23 04:11:13 +00:00
|
|
|
dir->pos += 1;
|
2017-04-15 16:26:37 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-03-25 23:11:45 +00:00
|
|
|
lfs_entry_t entry;
|
2017-05-14 17:01:45 +00:00
|
|
|
while (true) {
|
|
|
|
int err = lfs_dir_next(lfs, dir, &entry);
|
|
|
|
if (err) {
|
|
|
|
return (err == LFS_ERR_NOENT) ? 0 : err;
|
|
|
|
}
|
|
|
|
|
2017-10-07 14:19:08 +00:00
|
|
|
if ((0x7f & entry.d.type) != LFS_TYPE_REG &&
|
|
|
|
(0x7f & entry.d.type) != LFS_TYPE_DIR) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check that entry has not been moved
|
|
|
|
if (entry.d.type & 0x80) {
|
|
|
|
int moved = lfs_moved(lfs, &entry.d.u);
|
|
|
|
if (moved < 0) {
|
|
|
|
return moved;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (moved) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry.d.type &= ~0x80;
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
2017-10-07 14:19:08 +00:00
|
|
|
|
|
|
|
break;
|
2017-03-25 23:11:45 +00:00
|
|
|
}
|
|
|
|
|
2017-06-27 04:17:14 +00:00
|
|
|
info->type = entry.d.type;
|
2017-03-25 23:11:45 +00:00
|
|
|
if (info->type == LFS_TYPE_REG) {
|
|
|
|
info->size = entry.d.u.file.size;
|
|
|
|
}
|
|
|
|
|
2017-07-18 07:09:35 +00:00
|
|
|
int err = lfs_bd_read(lfs, dir->pair[0],
|
|
|
|
entry.off + 4+entry.d.elen+entry.d.alen,
|
|
|
|
info->name, entry.d.nlen);
|
2017-03-25 23:11:45 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:11:13 +00:00
|
|
|
int lfs_dir_seek(lfs_t *lfs, lfs_dir_t *dir, lfs_off_t off) {
|
|
|
|
// simply walk from head dir
|
|
|
|
int err = lfs_dir_rewind(lfs, dir);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
dir->pos = off;
|
|
|
|
|
|
|
|
while (off > (0x7fffffff & dir->d.size)) {
|
|
|
|
off -= 0x7fffffff & dir->d.size;
|
|
|
|
if (!(0x80000000 & dir->d.size)) {
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_INVAL;
|
2017-04-23 04:11:13 +00:00
|
|
|
}
|
|
|
|
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_fetch(lfs, dir, dir->d.tail);
|
2017-04-23 04:11:13 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dir->off = off;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_soff_t lfs_dir_tell(lfs_t *lfs, lfs_dir_t *dir) {
|
2018-02-04 19:10:07 +00:00
|
|
|
(void)lfs;
|
2017-04-23 04:11:13 +00:00
|
|
|
return dir->pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
int lfs_dir_rewind(lfs_t *lfs, lfs_dir_t *dir) {
|
|
|
|
// reload the head dir
|
|
|
|
int err = lfs_dir_fetch(lfs, dir, dir->head);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
dir->pair[0] = dir->head[0];
|
|
|
|
dir->pair[1] = dir->head[1];
|
|
|
|
dir->pos = sizeof(dir->d) - 2;
|
|
|
|
dir->off = sizeof(dir->d);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
/// File index list operations ///
|
2017-10-18 05:41:43 +00:00
|
|
|
static int lfs_ctz_index(lfs_t *lfs, lfs_off_t *off) {
|
2017-10-17 00:08:47 +00:00
|
|
|
lfs_off_t size = *off;
|
2017-10-18 05:33:59 +00:00
|
|
|
lfs_off_t b = lfs->cfg->block_size - 2*4;
|
|
|
|
lfs_off_t i = size / b;
|
2017-10-17 00:08:47 +00:00
|
|
|
if (i == 0) {
|
|
|
|
return 0;
|
2017-04-23 00:48:31 +00:00
|
|
|
}
|
|
|
|
|
2017-10-18 05:33:59 +00:00
|
|
|
i = (size - 4*(lfs_popc(i-1)+2)) / b;
|
|
|
|
*off = size - b*i - 4*lfs_popc(i);
|
|
|
|
return i;
|
2017-04-23 00:48:31 +00:00
|
|
|
}
|
|
|
|
|
2017-10-18 05:41:43 +00:00
|
|
|
static int lfs_ctz_find(lfs_t *lfs,
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_cache_t *rcache, const lfs_cache_t *pcache,
|
|
|
|
lfs_block_t head, lfs_size_t size,
|
2017-04-23 00:48:31 +00:00
|
|
|
lfs_size_t pos, lfs_block_t *block, lfs_off_t *off) {
|
|
|
|
if (size == 0) {
|
2017-10-17 00:31:56 +00:00
|
|
|
*block = 0xffffffff;
|
2017-04-23 00:48:31 +00:00
|
|
|
*off = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-18 05:41:43 +00:00
|
|
|
lfs_off_t current = lfs_ctz_index(lfs, &(lfs_off_t){size-1});
|
|
|
|
lfs_off_t target = lfs_ctz_index(lfs, &pos);
|
2017-04-23 00:48:31 +00:00
|
|
|
|
2017-04-23 02:42:22 +00:00
|
|
|
while (current > target) {
|
2017-04-23 00:48:31 +00:00
|
|
|
lfs_size_t skip = lfs_min(
|
|
|
|
lfs_npw2(current-target+1) - 1,
|
2017-10-10 23:48:24 +00:00
|
|
|
lfs_ctz(current));
|
2017-04-23 00:48:31 +00:00
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
int err = lfs_cache_read(lfs, rcache, pcache, head, 4*skip, &head, 4);
|
2017-04-23 00:48:31 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-09-17 17:53:18 +00:00
|
|
|
assert(head >= 2 && head <= lfs->cfg->block_count);
|
2017-04-23 00:48:31 +00:00
|
|
|
current -= 1 << skip;
|
|
|
|
}
|
|
|
|
|
|
|
|
*block = head;
|
|
|
|
*off = pos;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-18 05:41:43 +00:00
|
|
|
static int lfs_ctz_extend(lfs_t *lfs,
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_cache_t *rcache, lfs_cache_t *pcache,
|
2017-04-23 00:48:31 +00:00
|
|
|
lfs_block_t head, lfs_size_t size,
|
2017-11-16 21:10:17 +00:00
|
|
|
lfs_block_t *block, lfs_off_t *off) {
|
2017-05-14 17:01:45 +00:00
|
|
|
while (true) {
|
2017-11-16 21:10:17 +00:00
|
|
|
// go ahead and grab a block
|
|
|
|
lfs_block_t nblock;
|
|
|
|
int err = lfs_alloc(lfs, &nblock);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
assert(nblock >= 2 && nblock <= lfs->cfg->block_count);
|
2017-04-23 00:48:31 +00:00
|
|
|
|
2017-11-16 21:10:17 +00:00
|
|
|
if (true) {
|
|
|
|
err = lfs_bd_erase(lfs, nblock);
|
2017-10-17 00:31:56 +00:00
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
2017-04-23 00:48:31 +00:00
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
if (size == 0) {
|
2017-11-16 21:10:17 +00:00
|
|
|
*block = nblock;
|
2017-10-17 00:31:56 +00:00
|
|
|
*off = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
2017-04-23 00:48:31 +00:00
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
size -= 1;
|
|
|
|
lfs_off_t index = lfs_ctz_index(lfs, &size);
|
|
|
|
size += 1;
|
|
|
|
|
|
|
|
// just copy out the last block if it is incomplete
|
|
|
|
if (size != lfs->cfg->block_size) {
|
|
|
|
for (lfs_off_t i = 0; i < size; i++) {
|
|
|
|
uint8_t data;
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_cache_read(lfs, rcache, NULL,
|
2017-10-17 00:31:56 +00:00
|
|
|
head, i, &data, 1);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-23 02:42:22 +00:00
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
err = lfs_cache_prog(lfs, pcache, rcache,
|
2017-11-16 21:10:17 +00:00
|
|
|
nblock, i, &data, 1);
|
2017-10-17 00:31:56 +00:00
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
|
|
|
|
2017-11-16 21:10:17 +00:00
|
|
|
*block = nblock;
|
2017-10-17 00:31:56 +00:00
|
|
|
*off = size;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// append block
|
|
|
|
index += 1;
|
|
|
|
lfs_size_t skips = lfs_ctz(index) + 1;
|
|
|
|
|
|
|
|
for (lfs_off_t i = 0; i < skips; i++) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_cache_prog(lfs, pcache, rcache,
|
2017-11-16 21:10:17 +00:00
|
|
|
nblock, 4*i, &head, 4);
|
2017-05-14 17:01:45 +00:00
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
if (i != skips-1) {
|
|
|
|
err = lfs_cache_read(lfs, rcache, NULL,
|
|
|
|
head, 4*i, &head, 4);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 00:31:56 +00:00
|
|
|
assert(head >= 2 && head <= lfs->cfg->block_count);
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
2017-09-17 17:53:18 +00:00
|
|
|
|
2017-11-16 21:10:17 +00:00
|
|
|
*block = nblock;
|
2017-10-17 00:31:56 +00:00
|
|
|
*off = 4*skips;
|
|
|
|
return 0;
|
2017-04-23 02:42:22 +00:00
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
relocate:
|
2017-11-16 21:10:17 +00:00
|
|
|
LFS_DEBUG("Bad block at %d", nblock);
|
2017-04-23 00:48:31 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// just clear cache and try a new block
|
|
|
|
pcache->block = 0xffffffff;
|
2017-04-23 00:48:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-18 05:41:43 +00:00
|
|
|
static int lfs_ctz_traverse(lfs_t *lfs,
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_cache_t *rcache, const lfs_cache_t *pcache,
|
2017-04-23 00:48:31 +00:00
|
|
|
lfs_block_t head, lfs_size_t size,
|
|
|
|
int (*cb)(void*, lfs_block_t), void *data) {
|
|
|
|
if (size == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-18 05:41:43 +00:00
|
|
|
lfs_off_t index = lfs_ctz_index(lfs, &(lfs_off_t){size-1});
|
2017-04-23 00:48:31 +00:00
|
|
|
|
|
|
|
while (true) {
|
|
|
|
int err = cb(data, head);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-27 18:30:01 +00:00
|
|
|
lfs_block_t heads[2];
|
|
|
|
int count = 2 - (index & 1);
|
|
|
|
err = lfs_cache_read(lfs, rcache, pcache, head, 0, &heads, count*4);
|
2017-04-23 00:48:31 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-12-27 18:30:01 +00:00
|
|
|
for (int i = 0; i < count-1; i++) {
|
|
|
|
err = cb(data, heads[i]);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
head = heads[count-1];
|
|
|
|
index -= count;
|
2017-04-23 00:48:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
/// Top level file operations ///
|
2017-03-25 21:20:31 +00:00
|
|
|
int lfs_file_open(lfs_t *lfs, lfs_file_t *file,
|
2017-03-20 03:00:56 +00:00
|
|
|
const char *path, int flags) {
|
2017-10-07 21:56:00 +00:00
|
|
|
// deorphan if we haven't yet, needed at most once after poweron
|
|
|
|
if ((flags & 3) != LFS_O_RDONLY && !lfs->deorphaned) {
|
|
|
|
int err = lfs_deorphan(lfs);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// allocate entry for file if it doesn't exist
|
2017-03-20 03:00:56 +00:00
|
|
|
lfs_dir_t cwd;
|
2017-04-18 03:27:06 +00:00
|
|
|
int err = lfs_dir_fetch(lfs, &cwd, lfs->root);
|
2017-03-20 03:00:56 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
lfs_entry_t entry;
|
|
|
|
err = lfs_dir_find(lfs, &cwd, &entry, &path);
|
2017-09-17 21:46:09 +00:00
|
|
|
if (err && (err != LFS_ERR_NOENT || strchr(path, '/') != NULL)) {
|
2017-04-18 03:27:06 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-24 03:10:16 +00:00
|
|
|
if (err == LFS_ERR_NOENT) {
|
2017-04-23 00:48:31 +00:00
|
|
|
if (!(flags & LFS_O_CREAT)) {
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_NOENT;
|
2017-04-23 00:48:31 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
// create entry to remember name
|
2017-04-24 04:39:50 +00:00
|
|
|
entry.d.type = LFS_TYPE_REG;
|
2017-07-18 07:09:35 +00:00
|
|
|
entry.d.elen = sizeof(entry.d) - 4;
|
|
|
|
entry.d.alen = 0;
|
|
|
|
entry.d.nlen = strlen(path);
|
2017-10-17 00:31:56 +00:00
|
|
|
entry.d.u.file.head = 0xffffffff;
|
2017-04-24 04:39:50 +00:00
|
|
|
entry.d.u.file.size = 0;
|
|
|
|
err = lfs_dir_append(lfs, &cwd, &entry, path);
|
2017-03-20 03:00:56 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-24 04:39:50 +00:00
|
|
|
} else if (entry.d.type == LFS_TYPE_DIR) {
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_ISDIR;
|
2017-04-23 00:48:31 +00:00
|
|
|
} else if (flags & LFS_O_EXCL) {
|
2017-11-16 23:50:14 +00:00
|
|
|
return LFS_ERR_EXIST;
|
2017-03-20 03:00:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
// setup file struct
|
|
|
|
file->pair[0] = cwd.pair[0];
|
|
|
|
file->pair[1] = cwd.pair[1];
|
2017-04-30 16:19:37 +00:00
|
|
|
file->poff = entry.off;
|
2017-04-24 04:39:50 +00:00
|
|
|
file->head = entry.d.u.file.head;
|
|
|
|
file->size = entry.d.u.file.size;
|
|
|
|
file->flags = flags;
|
|
|
|
file->pos = 0;
|
2017-04-18 03:27:06 +00:00
|
|
|
|
2017-04-23 02:42:22 +00:00
|
|
|
if (flags & LFS_O_TRUNC) {
|
2018-01-11 16:26:33 +00:00
|
|
|
if (file->size != 0) {
|
|
|
|
file->flags |= LFS_F_DIRTY;
|
|
|
|
}
|
2017-10-17 00:31:56 +00:00
|
|
|
file->head = 0xffffffff;
|
2017-04-24 04:39:50 +00:00
|
|
|
file->size = 0;
|
2017-04-23 02:42:22 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
// allocate buffer if needed
|
2017-04-30 16:54:27 +00:00
|
|
|
file->cache.block = 0xffffffff;
|
2017-04-30 16:19:37 +00:00
|
|
|
if (lfs->cfg->file_buffer) {
|
|
|
|
file->cache.buffer = lfs->cfg->file_buffer;
|
|
|
|
} else if ((file->flags & 3) == LFS_O_RDONLY) {
|
|
|
|
file->cache.buffer = malloc(lfs->cfg->read_size);
|
|
|
|
if (!file->cache.buffer) {
|
|
|
|
return LFS_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
file->cache.buffer = malloc(lfs->cfg->prog_size);
|
|
|
|
if (!file->cache.buffer) {
|
|
|
|
return LFS_ERR_NOMEM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:22:01 +00:00
|
|
|
// add to list of files
|
|
|
|
file->next = lfs->files;
|
|
|
|
lfs->files = file;
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
return 0;
|
2017-03-20 03:00:56 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 21:20:31 +00:00
|
|
|
int lfs_file_close(lfs_t *lfs, lfs_file_t *file) {
|
2017-04-29 15:22:01 +00:00
|
|
|
int err = lfs_file_sync(lfs, file);
|
|
|
|
|
|
|
|
// remove from list of files
|
|
|
|
for (lfs_file_t **p = &lfs->files; *p; p = &(*p)->next) {
|
|
|
|
if (*p == file) {
|
|
|
|
*p = file->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
// clean up memory
|
|
|
|
if (!lfs->cfg->file_buffer) {
|
|
|
|
free(file->cache.buffer);
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:22:01 +00:00
|
|
|
return err;
|
2017-04-23 02:42:22 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 19:01:33 +00:00
|
|
|
static int lfs_file_relocate(lfs_t *lfs, lfs_file_t *file) {
|
|
|
|
relocate:
|
|
|
|
LFS_DEBUG("Bad block at %d", file->block);
|
|
|
|
|
|
|
|
// just relocate what exists into new block
|
|
|
|
lfs_block_t nblock;
|
|
|
|
int err = lfs_alloc(lfs, &nblock);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-06-25 21:56:12 +00:00
|
|
|
err = lfs_bd_erase(lfs, nblock);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-06-25 19:01:33 +00:00
|
|
|
// either read from dirty cache or disk
|
|
|
|
for (lfs_off_t i = 0; i < file->off; i++) {
|
|
|
|
uint8_t data;
|
2017-06-25 22:23:40 +00:00
|
|
|
err = lfs_cache_read(lfs, &lfs->rcache, &file->cache,
|
|
|
|
file->block, i, &data, 1);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-06-25 19:01:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = lfs_cache_prog(lfs, &lfs->pcache, &lfs->rcache,
|
|
|
|
nblock, i, &data, 1);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy over new state of file
|
|
|
|
memcpy(file->cache.buffer, lfs->pcache.buffer, lfs->cfg->prog_size);
|
|
|
|
file->cache.block = lfs->pcache.block;
|
|
|
|
file->cache.off = lfs->pcache.off;
|
|
|
|
lfs->pcache.block = 0xffffffff;
|
|
|
|
|
|
|
|
file->block = nblock;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:11:13 +00:00
|
|
|
static int lfs_file_flush(lfs_t *lfs, lfs_file_t *file) {
|
2017-04-30 16:19:37 +00:00
|
|
|
if (file->flags & LFS_F_READING) {
|
|
|
|
// just drop read cache
|
2017-04-30 16:54:27 +00:00
|
|
|
file->cache.block = 0xffffffff;
|
2017-04-30 16:19:37 +00:00
|
|
|
file->flags &= ~LFS_F_READING;
|
2017-04-23 02:42:22 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
if (file->flags & LFS_F_WRITING) {
|
2017-04-24 04:39:50 +00:00
|
|
|
lfs_off_t pos = file->pos;
|
2017-04-23 02:42:22 +00:00
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
// copy over anything after current branch
|
|
|
|
lfs_file_t orig = {
|
|
|
|
.head = file->head,
|
|
|
|
.size = file->size,
|
|
|
|
.flags = LFS_O_RDONLY,
|
|
|
|
.pos = file->pos,
|
2017-04-30 16:19:37 +00:00
|
|
|
.cache = lfs->rcache,
|
2017-04-24 04:39:50 +00:00
|
|
|
};
|
2017-04-30 16:54:27 +00:00
|
|
|
lfs->rcache.block = 0xffffffff;
|
2017-04-24 04:39:50 +00:00
|
|
|
|
|
|
|
while (file->pos < file->size) {
|
2017-04-30 16:19:37 +00:00
|
|
|
// copy over a byte at a time, leave it up to caching
|
|
|
|
// to make this efficient
|
2017-04-24 04:39:50 +00:00
|
|
|
uint8_t data;
|
|
|
|
lfs_ssize_t res = lfs_file_read(lfs, &orig, &data, 1);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
2017-04-23 02:42:22 +00:00
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
res = lfs_file_write(lfs, file, &data, 1);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
2017-04-30 16:19:37 +00:00
|
|
|
|
|
|
|
// keep our reference to the rcache in sync
|
2017-04-30 16:54:27 +00:00
|
|
|
if (lfs->rcache.block != 0xffffffff) {
|
|
|
|
orig.cache.block = 0xffffffff;
|
|
|
|
lfs->rcache.block = 0xffffffff;
|
2017-04-30 16:19:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// write out what we have
|
2017-06-25 19:01:33 +00:00
|
|
|
while (true) {
|
|
|
|
int err = lfs_cache_flush(lfs, &file->cache, &lfs->rcache);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
relocate:
|
|
|
|
err = lfs_file_relocate(lfs, file);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-23 02:42:22 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
// actual file updates
|
2017-04-30 16:19:37 +00:00
|
|
|
file->head = file->block;
|
2017-04-24 04:39:50 +00:00
|
|
|
file->size = file->pos;
|
2017-04-30 16:19:37 +00:00
|
|
|
file->flags &= ~LFS_F_WRITING;
|
|
|
|
file->flags |= LFS_F_DIRTY;
|
2017-04-24 04:39:50 +00:00
|
|
|
|
|
|
|
file->pos = pos;
|
|
|
|
}
|
2017-04-23 02:42:22 +00:00
|
|
|
|
2017-04-23 04:11:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int lfs_file_sync(lfs_t *lfs, lfs_file_t *file) {
|
|
|
|
int err = lfs_file_flush(lfs, file);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-23 02:42:22 +00:00
|
|
|
|
2017-11-16 23:25:41 +00:00
|
|
|
if ((file->flags & LFS_F_DIRTY) &&
|
|
|
|
!(file->flags & LFS_F_ERRED) &&
|
|
|
|
!lfs_pairisnull(file->pair)) {
|
2017-04-24 04:39:50 +00:00
|
|
|
// update dir entry
|
|
|
|
lfs_dir_t cwd;
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_fetch(lfs, &cwd, file->pair);
|
2017-04-24 04:39:50 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_entry_t entry = {.off = file->poff};
|
2017-06-24 05:43:05 +00:00
|
|
|
err = lfs_bd_read(lfs, cwd.pair[0], entry.off,
|
2017-04-24 04:49:21 +00:00
|
|
|
&entry.d, sizeof(entry.d));
|
2017-04-24 04:39:50 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2018-02-04 20:36:36 +00:00
|
|
|
assert(entry.d.type == LFS_TYPE_REG);
|
2017-04-24 04:39:50 +00:00
|
|
|
entry.d.u.file.head = file->head;
|
|
|
|
entry.d.u.file.size = file->size;
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
err = lfs_dir_update(lfs, &cwd, &entry, NULL);
|
2017-04-24 04:39:50 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
file->flags &= ~LFS_F_DIRTY;
|
2017-03-20 03:00:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
return 0;
|
2017-03-20 03:00:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
lfs_ssize_t lfs_file_read(lfs_t *lfs, lfs_file_t *file,
|
|
|
|
void *buffer, lfs_size_t size) {
|
|
|
|
uint8_t *data = buffer;
|
|
|
|
lfs_size_t nsize = size;
|
|
|
|
|
|
|
|
if ((file->flags & 3) == LFS_O_WRONLY) {
|
2018-02-04 20:36:36 +00:00
|
|
|
return LFS_ERR_BADF;
|
2017-04-24 02:40:03 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
if (file->flags & LFS_F_WRITING) {
|
2017-04-24 04:39:50 +00:00
|
|
|
// flush out any writes
|
|
|
|
int err = lfs_file_flush(lfs, file);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-17 22:57:12 +00:00
|
|
|
if (file->pos >= file->size) {
|
|
|
|
// eof if past end
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
size = lfs_min(size, file->size - file->pos);
|
|
|
|
nsize = size;
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
while (nsize > 0) {
|
|
|
|
// check if we need a new block
|
2017-04-30 16:19:37 +00:00
|
|
|
if (!(file->flags & LFS_F_READING) ||
|
|
|
|
file->off == lfs->cfg->block_size) {
|
2017-10-18 05:41:43 +00:00
|
|
|
int err = lfs_ctz_find(lfs, &file->cache, NULL,
|
2017-04-30 16:19:37 +00:00
|
|
|
file->head, file->size,
|
|
|
|
file->pos, &file->block, &file->off);
|
2017-04-24 02:40:03 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-30 16:19:37 +00:00
|
|
|
|
|
|
|
file->flags |= LFS_F_READING;
|
2017-04-24 02:40:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// read as much as we can in current block
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_size_t diff = lfs_min(nsize, lfs->cfg->block_size - file->off);
|
|
|
|
int err = lfs_cache_read(lfs, &file->cache, NULL,
|
|
|
|
file->block, file->off, data, diff);
|
2017-04-24 02:40:03 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
file->pos += diff;
|
2017-04-30 16:19:37 +00:00
|
|
|
file->off += diff;
|
2017-04-24 02:40:03 +00:00
|
|
|
data += diff;
|
|
|
|
nsize -= diff;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2017-03-20 03:00:56 +00:00
|
|
|
lfs_ssize_t lfs_file_write(lfs_t *lfs, lfs_file_t *file,
|
|
|
|
const void *buffer, lfs_size_t size) {
|
|
|
|
const uint8_t *data = buffer;
|
|
|
|
lfs_size_t nsize = size;
|
|
|
|
|
2017-04-23 04:11:13 +00:00
|
|
|
if ((file->flags & 3) == LFS_O_RDONLY) {
|
2018-02-04 20:36:36 +00:00
|
|
|
return LFS_ERR_BADF;
|
2017-04-23 04:11:13 +00:00
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
if (file->flags & LFS_F_READING) {
|
2017-04-24 04:39:50 +00:00
|
|
|
// drop any reads
|
|
|
|
int err = lfs_file_flush(lfs, file);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((file->flags & LFS_O_APPEND) && file->pos < file->size) {
|
|
|
|
file->pos = file->size;
|
|
|
|
}
|
|
|
|
|
2017-09-17 22:57:12 +00:00
|
|
|
if (!(file->flags & LFS_F_WRITING) && file->pos > file->size) {
|
|
|
|
// fill with zeros
|
|
|
|
lfs_off_t pos = file->pos;
|
|
|
|
file->pos = file->size;
|
|
|
|
|
|
|
|
while (file->pos < pos) {
|
|
|
|
lfs_ssize_t res = lfs_file_write(lfs, file, &(uint8_t){0}, 1);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-20 03:00:56 +00:00
|
|
|
while (nsize > 0) {
|
2017-04-23 02:42:22 +00:00
|
|
|
// check if we need a new block
|
2017-04-30 16:19:37 +00:00
|
|
|
if (!(file->flags & LFS_F_WRITING) ||
|
|
|
|
file->off == lfs->cfg->block_size) {
|
2017-09-17 17:53:18 +00:00
|
|
|
if (!(file->flags & LFS_F_WRITING) && file->pos > 0) {
|
2017-04-23 04:11:13 +00:00
|
|
|
// find out which block we're extending from
|
2017-10-18 05:41:43 +00:00
|
|
|
int err = lfs_ctz_find(lfs, &file->cache, NULL,
|
2017-04-30 16:19:37 +00:00
|
|
|
file->head, file->size,
|
2017-09-17 17:53:18 +00:00
|
|
|
file->pos-1, &file->block, &file->off);
|
2017-04-23 04:11:13 +00:00
|
|
|
if (err) {
|
2017-11-16 23:25:41 +00:00
|
|
|
file->flags |= LFS_F_ERRED;
|
2017-04-23 04:11:13 +00:00
|
|
|
return err;
|
|
|
|
}
|
2017-04-30 16:19:37 +00:00
|
|
|
|
|
|
|
// mark cache as dirty since we may have read data into it
|
2017-04-30 16:54:27 +00:00
|
|
|
file->cache.block = 0xffffffff;
|
2017-04-23 04:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// extend file with new blocks
|
2017-05-14 17:01:45 +00:00
|
|
|
lfs_alloc_ack(lfs);
|
2017-10-18 05:41:43 +00:00
|
|
|
int err = lfs_ctz_extend(lfs, &lfs->rcache, &file->cache,
|
2017-04-30 16:19:37 +00:00
|
|
|
file->block, file->pos,
|
|
|
|
&file->block, &file->off);
|
2017-03-20 03:00:56 +00:00
|
|
|
if (err) {
|
2017-11-16 23:25:41 +00:00
|
|
|
file->flags |= LFS_F_ERRED;
|
2017-03-20 03:00:56 +00:00
|
|
|
return err;
|
|
|
|
}
|
2017-09-17 17:53:18 +00:00
|
|
|
|
|
|
|
file->flags |= LFS_F_WRITING;
|
2017-03-20 03:00:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-23 02:42:22 +00:00
|
|
|
// program as much as we can in current block
|
2017-04-30 16:19:37 +00:00
|
|
|
lfs_size_t diff = lfs_min(nsize, lfs->cfg->block_size - file->off);
|
2017-05-14 17:01:45 +00:00
|
|
|
while (true) {
|
2017-06-24 05:43:05 +00:00
|
|
|
int err = lfs_cache_prog(lfs, &file->cache, &lfs->rcache,
|
2017-05-14 17:01:45 +00:00
|
|
|
file->block, file->off, data, diff);
|
|
|
|
if (err) {
|
|
|
|
if (err == LFS_ERR_CORRUPT) {
|
|
|
|
goto relocate;
|
|
|
|
}
|
2017-11-16 23:25:41 +00:00
|
|
|
file->flags |= LFS_F_ERRED;
|
2017-05-14 17:01:45 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
relocate:
|
2017-06-25 19:01:33 +00:00
|
|
|
err = lfs_file_relocate(lfs, file);
|
2017-05-14 17:01:45 +00:00
|
|
|
if (err) {
|
2017-11-16 23:25:41 +00:00
|
|
|
file->flags |= LFS_F_ERRED;
|
2017-05-14 17:01:45 +00:00
|
|
|
return err;
|
|
|
|
}
|
2017-03-20 03:00:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
file->pos += diff;
|
2017-04-30 16:19:37 +00:00
|
|
|
file->off += diff;
|
2017-03-20 03:00:56 +00:00
|
|
|
data += diff;
|
|
|
|
nsize -= diff;
|
2017-05-14 17:01:45 +00:00
|
|
|
|
|
|
|
lfs_alloc_ack(lfs);
|
2017-04-23 02:42:22 +00:00
|
|
|
}
|
|
|
|
|
2017-11-16 23:25:41 +00:00
|
|
|
file->flags &= ~LFS_F_ERRED;
|
2017-03-20 03:00:56 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:11:13 +00:00
|
|
|
lfs_soff_t lfs_file_seek(lfs_t *lfs, lfs_file_t *file,
|
|
|
|
lfs_soff_t off, int whence) {
|
|
|
|
// write out everything beforehand, may be noop if rdonly
|
|
|
|
int err = lfs_file_flush(lfs, file);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
// update pos
|
|
|
|
if (whence == LFS_SEEK_SET) {
|
|
|
|
file->pos = off;
|
|
|
|
} else if (whence == LFS_SEEK_CUR) {
|
2018-01-03 21:00:04 +00:00
|
|
|
if (off < 0 && (lfs_off_t)-off > file->pos) {
|
2017-09-17 22:57:12 +00:00
|
|
|
return LFS_ERR_INVAL;
|
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
file->pos = file->pos + off;
|
|
|
|
} else if (whence == LFS_SEEK_END) {
|
2018-01-03 21:00:04 +00:00
|
|
|
if (off < 0 && (lfs_off_t)-off > file->size) {
|
2017-09-17 22:57:12 +00:00
|
|
|
return LFS_ERR_INVAL;
|
|
|
|
}
|
|
|
|
|
2017-04-24 04:39:50 +00:00
|
|
|
file->pos = file->size + off;
|
2017-04-23 04:11:13 +00:00
|
|
|
}
|
|
|
|
|
2017-09-27 00:50:39 +00:00
|
|
|
return file->pos;
|
2017-04-23 04:11:13 +00:00
|
|
|
}
|
|
|
|
|
2018-01-20 23:30:40 +00:00
|
|
|
int lfs_file_truncate(lfs_t *lfs, lfs_file_t *file, lfs_off_t size) {
|
|
|
|
if ((file->flags & 3) == LFS_O_RDONLY) {
|
2018-02-04 20:36:36 +00:00
|
|
|
return LFS_ERR_BADF;
|
2018-01-20 23:30:40 +00:00
|
|
|
}
|
|
|
|
|
2018-02-04 19:10:07 +00:00
|
|
|
lfs_off_t oldsize = lfs_file_size(lfs, file);
|
|
|
|
if (size < oldsize) {
|
2018-01-20 23:30:40 +00:00
|
|
|
// need to flush since directly changing metadata
|
|
|
|
int err = lfs_file_flush(lfs, file);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// lookup new head in ctz skip list
|
|
|
|
err = lfs_ctz_find(lfs, &file->cache, NULL,
|
|
|
|
file->head, file->size,
|
|
|
|
size, &file->head, &(lfs_off_t){0});
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
file->size = size;
|
|
|
|
file->flags |= LFS_F_DIRTY;
|
2018-02-04 19:10:07 +00:00
|
|
|
} else if (size > oldsize) {
|
2018-01-20 23:30:40 +00:00
|
|
|
lfs_off_t pos = file->pos;
|
|
|
|
|
|
|
|
// flush+seek if not already at end
|
2018-02-04 19:10:07 +00:00
|
|
|
if (file->pos != oldsize) {
|
2018-01-20 23:30:40 +00:00
|
|
|
int err = lfs_file_seek(lfs, file, 0, SEEK_END);
|
2018-02-04 19:48:44 +00:00
|
|
|
if (err < 0) {
|
2018-01-20 23:30:40 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill with zeros
|
|
|
|
while (file->pos < size) {
|
|
|
|
lfs_ssize_t res = lfs_file_write(lfs, file, &(uint8_t){0}, 1);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// restore pos
|
|
|
|
int err = lfs_file_seek(lfs, file, pos, LFS_SEEK_SET);
|
|
|
|
if (err < 0) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-23 04:11:13 +00:00
|
|
|
lfs_soff_t lfs_file_tell(lfs_t *lfs, lfs_file_t *file) {
|
2018-02-04 19:10:07 +00:00
|
|
|
(void)lfs;
|
2017-04-24 04:39:50 +00:00
|
|
|
return file->pos;
|
2017-04-23 04:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int lfs_file_rewind(lfs_t *lfs, lfs_file_t *file) {
|
|
|
|
lfs_soff_t res = lfs_file_seek(lfs, file, 0, LFS_SEEK_SET);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
lfs_soff_t lfs_file_size(lfs_t *lfs, lfs_file_t *file) {
|
2018-02-04 19:10:07 +00:00
|
|
|
(void)lfs;
|
2018-01-20 23:30:40 +00:00
|
|
|
if (file->flags & LFS_F_WRITING) {
|
|
|
|
return lfs_max(file->pos, file->size);
|
|
|
|
} else {
|
|
|
|
return file->size;
|
|
|
|
}
|
2017-04-24 02:40:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-30 19:07:37 +00:00
|
|
|
/// General fs operations ///
|
2017-04-24 02:40:03 +00:00
|
|
|
int lfs_stat(lfs_t *lfs, const char *path, struct lfs_info *info) {
|
2017-09-17 21:46:09 +00:00
|
|
|
// check for root, can only be something like '/././../.'
|
|
|
|
if (strspn(path, "/.") == strlen(path)) {
|
|
|
|
memset(info, 0, sizeof(*info));
|
|
|
|
info->type = LFS_TYPE_DIR;
|
|
|
|
strcpy(info->name, "/");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
lfs_dir_t cwd;
|
|
|
|
int err = lfs_dir_fetch(lfs, &cwd, lfs->root);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_entry_t entry;
|
|
|
|
err = lfs_dir_find(lfs, &cwd, &entry, &path);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(info, 0, sizeof(*info));
|
2017-06-27 04:17:14 +00:00
|
|
|
info->type = entry.d.type;
|
2017-04-24 02:40:03 +00:00
|
|
|
if (info->type == LFS_TYPE_REG) {
|
|
|
|
info->size = entry.d.u.file.size;
|
|
|
|
}
|
|
|
|
|
2017-07-18 07:09:35 +00:00
|
|
|
err = lfs_bd_read(lfs, cwd.pair[0],
|
|
|
|
entry.off + 4+entry.d.elen+entry.d.alen,
|
|
|
|
info->name, entry.d.nlen);
|
2017-04-24 02:40:03 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int lfs_remove(lfs_t *lfs, const char *path) {
|
2017-10-07 21:56:00 +00:00
|
|
|
// deorphan if we haven't yet, needed at most once after poweron
|
|
|
|
if (!lfs->deorphaned) {
|
|
|
|
int err = lfs_deorphan(lfs);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
lfs_dir_t cwd;
|
|
|
|
int err = lfs_dir_fetch(lfs, &cwd, lfs->root);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_entry_t entry;
|
|
|
|
err = lfs_dir_find(lfs, &cwd, &entry, &path);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_dir_t dir;
|
|
|
|
if (entry.d.type == LFS_TYPE_DIR) {
|
|
|
|
// must be empty before removal, checking size
|
|
|
|
// without masking top bit checks for any case where
|
|
|
|
// dir is not empty
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_fetch(lfs, &dir, entry.d.u.dir);
|
2017-04-24 02:40:03 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-06-24 01:03:44 +00:00
|
|
|
} else if (dir.d.size != sizeof(dir.d)+4) {
|
2017-12-27 17:47:48 +00:00
|
|
|
return LFS_ERR_NOTEMPTY;
|
2017-04-24 02:40:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove the entry
|
|
|
|
err = lfs_dir_remove(lfs, &cwd, &entry);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
// if we were a directory, find pred, replace tail
|
|
|
|
if (entry.d.type == LFS_TYPE_DIR) {
|
|
|
|
int res = lfs_pred(lfs, dir.pair, &cwd);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
2017-04-30 17:35:50 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
assert(res); // must have pred
|
|
|
|
cwd.d.tail[0] = dir.d.tail[0];
|
|
|
|
cwd.d.tail[1] = dir.d.tail[1];
|
|
|
|
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_commit(lfs, &cwd, NULL, 0);
|
2017-04-24 02:40:03 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int lfs_rename(lfs_t *lfs, const char *oldpath, const char *newpath) {
|
2017-10-07 21:56:00 +00:00
|
|
|
// deorphan if we haven't yet, needed at most once after poweron
|
|
|
|
if (!lfs->deorphaned) {
|
|
|
|
int err = lfs_deorphan(lfs);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
// find old entry
|
|
|
|
lfs_dir_t oldcwd;
|
|
|
|
int err = lfs_dir_fetch(lfs, &oldcwd, lfs->root);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_entry_t oldentry;
|
|
|
|
err = lfs_dir_find(lfs, &oldcwd, &oldentry, &oldpath);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// allocate new entry
|
|
|
|
lfs_dir_t newcwd;
|
|
|
|
err = lfs_dir_fetch(lfs, &newcwd, lfs->root);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
lfs_entry_t preventry;
|
|
|
|
err = lfs_dir_find(lfs, &newcwd, &preventry, &newpath);
|
2017-09-17 21:46:09 +00:00
|
|
|
if (err && (err != LFS_ERR_NOENT || strchr(newpath, '/') != NULL)) {
|
2017-04-24 02:40:03 +00:00
|
|
|
return err;
|
|
|
|
}
|
2017-10-07 21:56:00 +00:00
|
|
|
|
2017-04-24 03:10:16 +00:00
|
|
|
bool prevexists = (err != LFS_ERR_NOENT);
|
2017-10-07 21:56:00 +00:00
|
|
|
bool samepair = (lfs_paircmp(oldcwd.pair, newcwd.pair) == 0);
|
2017-04-24 02:40:03 +00:00
|
|
|
|
|
|
|
// must have same type
|
|
|
|
if (prevexists && preventry.d.type != oldentry.d.type) {
|
2018-02-04 20:36:36 +00:00
|
|
|
return LFS_ERR_ISDIR;
|
2017-04-24 02:40:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lfs_dir_t dir;
|
|
|
|
if (prevexists && preventry.d.type == LFS_TYPE_DIR) {
|
|
|
|
// must be empty before removal, checking size
|
|
|
|
// without masking top bit checks for any case where
|
|
|
|
// dir is not empty
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_fetch(lfs, &dir, preventry.d.u.dir);
|
2017-04-24 02:40:03 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-06-24 01:03:44 +00:00
|
|
|
} else if (dir.d.size != sizeof(dir.d)+4) {
|
2018-02-04 20:36:36 +00:00
|
|
|
return LFS_ERR_NOTEMPTY;
|
2017-04-24 02:40:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
// mark as moving
|
|
|
|
oldentry.d.type |= 0x80;
|
|
|
|
err = lfs_dir_update(lfs, &oldcwd, &oldentry, NULL);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update pair if newcwd == oldcwd
|
|
|
|
if (samepair) {
|
|
|
|
newcwd = oldcwd;
|
|
|
|
}
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
// move to new location
|
|
|
|
lfs_entry_t newentry = preventry;
|
|
|
|
newentry.d = oldentry.d;
|
2017-10-07 21:56:00 +00:00
|
|
|
newentry.d.type &= ~0x80;
|
2017-07-18 07:09:35 +00:00
|
|
|
newentry.d.nlen = strlen(newpath);
|
2017-04-24 02:40:03 +00:00
|
|
|
|
|
|
|
if (prevexists) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_update(lfs, &newcwd, &newentry, newpath);
|
2017-04-24 02:40:03 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
} else {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_append(lfs, &newcwd, &newentry, newpath);
|
2017-04-24 02:40:03 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
// update pair if newcwd == oldcwd
|
|
|
|
if (samepair) {
|
|
|
|
oldcwd = newcwd;
|
2017-04-24 02:40:03 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
// remove old entry
|
|
|
|
err = lfs_dir_remove(lfs, &oldcwd, &oldentry);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
// if we were a directory, find pred, replace tail
|
|
|
|
if (prevexists && preventry.d.type == LFS_TYPE_DIR) {
|
|
|
|
int res = lfs_pred(lfs, dir.pair, &newcwd);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(res); // must have pred
|
|
|
|
newcwd.d.tail[0] = dir.d.tail[0];
|
|
|
|
newcwd.d.tail[1] = dir.d.tail[1];
|
|
|
|
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_commit(lfs, &newcwd, NULL, 0);
|
2017-10-07 21:56:00 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-13 00:41:08 +00:00
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
/// Filesystem operations ///
|
2017-04-22 18:30:40 +00:00
|
|
|
static int lfs_init(lfs_t *lfs, const struct lfs_config *cfg) {
|
|
|
|
lfs->cfg = cfg;
|
|
|
|
|
2017-04-22 19:56:12 +00:00
|
|
|
// setup read cache
|
2017-04-30 16:54:27 +00:00
|
|
|
lfs->rcache.block = 0xffffffff;
|
2017-04-22 18:30:40 +00:00
|
|
|
if (lfs->cfg->read_buffer) {
|
|
|
|
lfs->rcache.buffer = lfs->cfg->read_buffer;
|
|
|
|
} else {
|
|
|
|
lfs->rcache.buffer = malloc(lfs->cfg->read_size);
|
|
|
|
if (!lfs->rcache.buffer) {
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_NOMEM;
|
2017-04-22 18:30:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 19:56:12 +00:00
|
|
|
// setup program cache
|
2017-04-30 16:54:27 +00:00
|
|
|
lfs->pcache.block = 0xffffffff;
|
2017-04-22 18:30:40 +00:00
|
|
|
if (lfs->cfg->prog_buffer) {
|
|
|
|
lfs->pcache.buffer = lfs->cfg->prog_buffer;
|
|
|
|
} else {
|
|
|
|
lfs->pcache.buffer = malloc(lfs->cfg->prog_size);
|
|
|
|
if (!lfs->pcache.buffer) {
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_NOMEM;
|
2017-04-22 18:30:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-19 02:20:33 +00:00
|
|
|
// setup lookahead, round down to nearest 32-bits
|
2017-11-10 01:10:08 +00:00
|
|
|
assert(lfs->cfg->lookahead % 32 == 0);
|
|
|
|
assert(lfs->cfg->lookahead > 0);
|
2017-04-22 19:56:12 +00:00
|
|
|
if (lfs->cfg->lookahead_buffer) {
|
2017-09-19 02:20:33 +00:00
|
|
|
lfs->free.buffer = lfs->cfg->lookahead_buffer;
|
2017-04-22 19:56:12 +00:00
|
|
|
} else {
|
2017-11-10 01:10:08 +00:00
|
|
|
lfs->free.buffer = malloc(lfs->cfg->lookahead/8);
|
2017-09-19 02:20:33 +00:00
|
|
|
if (!lfs->free.buffer) {
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_NOMEM;
|
2017-04-22 19:56:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-11 17:56:09 +00:00
|
|
|
// check that program and read sizes are multiples of the block size
|
|
|
|
assert(lfs->cfg->prog_size % lfs->cfg->read_size == 0);
|
|
|
|
assert(lfs->cfg->block_size % lfs->cfg->prog_size == 0);
|
|
|
|
|
2017-10-10 23:48:24 +00:00
|
|
|
// check that the block size is large enough to fit ctz pointers
|
|
|
|
assert(4*lfs_npw2(0xffffffff / (lfs->cfg->block_size-2*4))
|
|
|
|
<= lfs->cfg->block_size);
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// setup default state
|
|
|
|
lfs->root[0] = 0xffffffff;
|
|
|
|
lfs->root[1] = 0xffffffff;
|
2017-04-29 15:22:01 +00:00
|
|
|
lfs->files = NULL;
|
2017-11-22 02:53:15 +00:00
|
|
|
lfs->dirs = NULL;
|
2017-05-14 17:01:45 +00:00
|
|
|
lfs->deorphaned = false;
|
2017-04-29 15:22:01 +00:00
|
|
|
|
2017-04-22 18:30:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int lfs_deinit(lfs_t *lfs) {
|
2017-05-14 17:01:45 +00:00
|
|
|
// free allocated memory
|
2017-04-22 18:30:40 +00:00
|
|
|
if (!lfs->cfg->read_buffer) {
|
|
|
|
free(lfs->rcache.buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!lfs->cfg->prog_buffer) {
|
|
|
|
free(lfs->pcache.buffer);
|
|
|
|
}
|
|
|
|
|
2017-04-29 17:50:23 +00:00
|
|
|
if (!lfs->cfg->lookahead_buffer) {
|
2017-09-19 02:20:33 +00:00
|
|
|
free(lfs->free.buffer);
|
2017-04-29 17:50:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-22 18:30:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int lfs_format(lfs_t *lfs, const struct lfs_config *cfg) {
|
|
|
|
int err = lfs_init(lfs, cfg);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-02-27 00:05:27 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// create free lookahead
|
2017-11-10 01:10:08 +00:00
|
|
|
memset(lfs->free.buffer, 0, lfs->cfg->lookahead/8);
|
2017-09-19 02:20:33 +00:00
|
|
|
lfs->free.begin = 0;
|
2017-04-22 19:56:12 +00:00
|
|
|
lfs->free.off = 0;
|
2017-11-10 01:28:55 +00:00
|
|
|
lfs->free.end = lfs->free.begin + lfs->free.off + lfs->cfg->block_count;
|
2017-03-20 03:00:56 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// create superblock dir
|
|
|
|
lfs_alloc_ack(lfs);
|
2017-04-18 03:27:06 +00:00
|
|
|
lfs_dir_t superdir;
|
2017-04-22 18:30:40 +00:00
|
|
|
err = lfs_dir_alloc(lfs, &superdir);
|
2017-04-18 03:27:06 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// write root directory
|
2017-03-25 21:20:31 +00:00
|
|
|
lfs_dir_t root;
|
2017-04-18 03:27:06 +00:00
|
|
|
err = lfs_dir_alloc(lfs, &root);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
err = lfs_dir_commit(lfs, &root, NULL, 0);
|
2017-03-25 21:20:31 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-02-27 00:05:27 +00:00
|
|
|
}
|
2017-04-18 03:27:06 +00:00
|
|
|
|
2017-03-25 23:11:45 +00:00
|
|
|
lfs->root[0] = root.pair[0];
|
|
|
|
lfs->root[1] = root.pair[1];
|
2017-03-25 21:20:31 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// write superblocks
|
2017-03-25 21:20:31 +00:00
|
|
|
lfs_superblock_t superblock = {
|
2017-04-18 03:27:06 +00:00
|
|
|
.off = sizeof(superdir.d),
|
|
|
|
.d.type = LFS_TYPE_SUPERBLOCK,
|
2017-07-18 07:09:35 +00:00
|
|
|
.d.elen = sizeof(superblock.d) - sizeof(superblock.d.magic) - 4,
|
|
|
|
.d.nlen = sizeof(superblock.d.magic),
|
2018-01-26 20:26:25 +00:00
|
|
|
.d.version = LFS_DISK_VERSION,
|
2017-03-25 21:20:31 +00:00
|
|
|
.d.magic = {"littlefs"},
|
2017-04-22 16:42:05 +00:00
|
|
|
.d.block_size = lfs->cfg->block_size,
|
|
|
|
.d.block_count = lfs->cfg->block_count,
|
2017-04-18 03:27:06 +00:00
|
|
|
.d.root = {lfs->root[0], lfs->root[1]},
|
2017-03-25 21:20:31 +00:00
|
|
|
};
|
2017-04-18 03:27:06 +00:00
|
|
|
superdir.d.tail[0] = root.pair[0];
|
|
|
|
superdir.d.tail[1] = root.pair[1];
|
2017-06-24 01:03:44 +00:00
|
|
|
superdir.d.size = sizeof(superdir.d) + sizeof(superblock.d) + 4;
|
2017-02-27 00:05:27 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
// write both pairs to be safe
|
|
|
|
bool valid = false;
|
2017-03-25 21:20:31 +00:00
|
|
|
for (int i = 0; i < 2; i++) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_commit(lfs, &superdir, (struct lfs_region[]){
|
2017-05-14 17:01:45 +00:00
|
|
|
{sizeof(superdir.d), sizeof(superblock.d),
|
|
|
|
&superblock.d, sizeof(superblock.d)}
|
|
|
|
}, 1);
|
|
|
|
if (err && err != LFS_ERR_CORRUPT) {
|
2017-03-05 20:11:52 +00:00
|
|
|
return err;
|
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
|
|
|
|
valid = valid || !err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!valid) {
|
|
|
|
return LFS_ERR_CORRUPT;
|
2017-02-27 00:05:27 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
// sanity check that fetch works
|
2017-04-22 18:30:40 +00:00
|
|
|
err = lfs_dir_fetch(lfs, &superdir, (const lfs_block_t[2]){0, 1});
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
lfs_alloc_ack(lfs);
|
2017-04-22 18:30:40 +00:00
|
|
|
return lfs_deinit(lfs);
|
2017-02-27 00:05:27 +00:00
|
|
|
}
|
|
|
|
|
2017-04-22 18:30:40 +00:00
|
|
|
int lfs_mount(lfs_t *lfs, const struct lfs_config *cfg) {
|
|
|
|
int err = lfs_init(lfs, cfg);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-03-13 00:41:08 +00:00
|
|
|
|
2017-04-22 19:56:12 +00:00
|
|
|
// setup free lookahead
|
2017-12-27 16:44:40 +00:00
|
|
|
lfs->free.begin = -lfs_min(lfs->cfg->lookahead, lfs->cfg->block_count);
|
|
|
|
lfs->free.off = -lfs->free.begin;
|
2017-11-10 01:28:55 +00:00
|
|
|
lfs->free.end = lfs->free.begin + lfs->free.off + lfs->cfg->block_count;
|
2017-04-22 19:56:12 +00:00
|
|
|
|
|
|
|
// load superblock
|
2017-04-18 03:27:06 +00:00
|
|
|
lfs_dir_t dir;
|
|
|
|
lfs_superblock_t superblock;
|
2017-04-22 18:30:40 +00:00
|
|
|
err = lfs_dir_fetch(lfs, &dir, (const lfs_block_t[2]){0, 1});
|
2017-10-07 21:56:00 +00:00
|
|
|
if (err && err != LFS_ERR_CORRUPT) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-18 03:27:06 +00:00
|
|
|
if (!err) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_bd_read(lfs, dir.pair[0], sizeof(dir.d),
|
2017-07-18 07:09:35 +00:00
|
|
|
&superblock.d, sizeof(superblock.d));
|
2017-10-07 21:56:00 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-24 02:40:03 +00:00
|
|
|
|
|
|
|
lfs->root[0] = superblock.d.root[0];
|
|
|
|
lfs->root[1] = superblock.d.root[1];
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
if (err || memcmp(superblock.d.magic, "littlefs", 8) != 0) {
|
2017-04-18 03:27:06 +00:00
|
|
|
LFS_ERROR("Invalid superblock at %d %d", dir.pair[0], dir.pair[1]);
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_CORRUPT;
|
2017-03-13 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2018-01-26 20:26:25 +00:00
|
|
|
uint16_t major_version = (0xffff & (superblock.d.version >> 16));
|
|
|
|
uint16_t minor_version = (0xffff & (superblock.d.version >> 0));
|
|
|
|
if ((major_version != LFS_DISK_VERSION_MAJOR ||
|
|
|
|
minor_version > LFS_DISK_VERSION_MINOR)) {
|
|
|
|
LFS_ERROR("Invalid version %d.%d", major_version, minor_version);
|
2017-04-24 03:10:16 +00:00
|
|
|
return LFS_ERR_INVAL;
|
2017-04-18 03:27:06 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
return 0;
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int lfs_unmount(lfs_t *lfs) {
|
2017-04-22 18:30:40 +00:00
|
|
|
return lfs_deinit(lfs);
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 02:40:03 +00:00
|
|
|
|
|
|
|
/// Littlefs specific operations ///
|
2017-04-14 22:33:36 +00:00
|
|
|
int lfs_traverse(lfs_t *lfs, int (*cb)(void*, lfs_block_t), void *data) {
|
2017-05-14 17:01:45 +00:00
|
|
|
if (lfs_pairisnull(lfs->root)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-01 15:44:17 +00:00
|
|
|
// iterate over metadata pairs
|
2017-03-25 23:11:45 +00:00
|
|
|
lfs_dir_t dir;
|
2017-04-24 04:39:50 +00:00
|
|
|
lfs_entry_t entry;
|
2017-04-01 15:44:17 +00:00
|
|
|
lfs_block_t cwd[2] = {0, 1};
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
int err = cb(data, cwd[i]);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int err = lfs_dir_fetch(lfs, &dir, cwd);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-01 17:23:15 +00:00
|
|
|
// iterate over contents
|
2017-06-24 01:03:44 +00:00
|
|
|
while (dir.off + sizeof(entry.d) <= (0x7fffffff & dir.d.size)-4) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_bd_read(lfs, dir.pair[0], dir.off,
|
2017-04-24 04:49:21 +00:00
|
|
|
&entry.d, sizeof(entry.d));
|
2017-04-01 15:44:17 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-09-18 01:36:42 +00:00
|
|
|
dir.off += lfs_entry_size(&entry);
|
2017-10-07 14:19:08 +00:00
|
|
|
if ((0x70 & entry.d.type) == (0x70 & LFS_TYPE_REG)) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_ctz_traverse(lfs, &lfs->rcache, NULL,
|
2017-04-29 15:22:01 +00:00
|
|
|
entry.d.u.file.head, entry.d.u.file.size, cb, data);
|
2017-04-24 04:39:50 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cwd[0] = dir.d.tail[0];
|
|
|
|
cwd[1] = dir.d.tail[1];
|
|
|
|
|
2017-04-29 15:22:01 +00:00
|
|
|
if (lfs_pairisnull(cwd)) {
|
|
|
|
break;
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-29 15:22:01 +00:00
|
|
|
|
|
|
|
// iterate over any open files
|
|
|
|
for (lfs_file_t *f = lfs->files; f; f = f->next) {
|
2017-04-30 16:19:37 +00:00
|
|
|
if (f->flags & LFS_F_DIRTY) {
|
2017-10-18 05:41:43 +00:00
|
|
|
int err = lfs_ctz_traverse(lfs, &lfs->rcache, &f->cache,
|
2017-04-30 16:19:37 +00:00
|
|
|
f->head, f->size, cb, data);
|
2017-04-29 15:22:01 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-30 16:19:37 +00:00
|
|
|
if (f->flags & LFS_F_WRITING) {
|
2017-10-18 05:41:43 +00:00
|
|
|
int err = lfs_ctz_traverse(lfs, &lfs->rcache, &f->cache,
|
2017-04-30 16:19:37 +00:00
|
|
|
f->block, f->pos, cb, data);
|
2017-04-29 15:22:01 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2017-04-01 15:44:17 +00:00
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
static int lfs_pred(lfs_t *lfs, const lfs_block_t dir[2], lfs_dir_t *pdir) {
|
|
|
|
if (lfs_pairisnull(lfs->root)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-14 22:33:36 +00:00
|
|
|
// iterate over all directory directory entries
|
2017-05-14 17:01:45 +00:00
|
|
|
int err = lfs_dir_fetch(lfs, pdir, (const lfs_block_t[2]){0, 1});
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-01 17:23:15 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
while (!lfs_pairisnull(pdir->d.tail)) {
|
|
|
|
if (lfs_paircmp(pdir->d.tail, dir) == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_fetch(lfs, pdir, pdir->d.tail);
|
2017-05-14 17:01:45 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int lfs_parent(lfs_t *lfs, const lfs_block_t dir[2],
|
|
|
|
lfs_dir_t *parent, lfs_entry_t *entry) {
|
|
|
|
if (lfs_pairisnull(lfs->root)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent->d.tail[0] = 0;
|
|
|
|
parent->d.tail[1] = 1;
|
|
|
|
|
|
|
|
// iterate over all directory directory entries
|
|
|
|
while (!lfs_pairisnull(parent->d.tail)) {
|
|
|
|
int err = lfs_dir_fetch(lfs, parent, parent->d.tail);
|
2017-04-01 17:23:15 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-04-14 22:33:36 +00:00
|
|
|
while (true) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_next(lfs, parent, entry);
|
2017-04-24 03:10:16 +00:00
|
|
|
if (err && err != LFS_ERR_NOENT) {
|
2017-04-14 22:33:36 +00:00
|
|
|
return err;
|
|
|
|
}
|
2017-04-01 17:23:15 +00:00
|
|
|
|
2017-04-24 03:10:16 +00:00
|
|
|
if (err == LFS_ERR_NOENT) {
|
2017-04-14 22:33:36 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-04-01 17:23:15 +00:00
|
|
|
|
2017-10-07 14:19:08 +00:00
|
|
|
if (((0x70 & entry->d.type) == (0x70 & LFS_TYPE_DIR)) &&
|
2017-05-14 17:01:45 +00:00
|
|
|
lfs_paircmp(entry->d.u.dir, dir) == 0) {
|
2017-04-14 22:33:36 +00:00
|
|
|
return true;
|
2017-04-01 17:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
}
|
2017-04-01 17:23:15 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-07 14:19:08 +00:00
|
|
|
static int lfs_moved(lfs_t *lfs, const void *e) {
|
|
|
|
if (lfs_pairisnull(lfs->root)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip superblock
|
|
|
|
lfs_dir_t cwd;
|
|
|
|
int err = lfs_dir_fetch(lfs, &cwd, (const lfs_block_t[2]){0, 1});
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
// iterate over all directory directory entries
|
|
|
|
lfs_entry_t entry;
|
|
|
|
while (!lfs_pairisnull(cwd.d.tail)) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_fetch(lfs, &cwd, cwd.d.tail);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_next(lfs, &cwd, &entry);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err && err != LFS_ERR_NOENT) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err == LFS_ERR_NOENT) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(0x80 & entry.d.type) &&
|
|
|
|
memcmp(&entry.d.u, e, sizeof(entry.d.u)) == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
static int lfs_relocate(lfs_t *lfs,
|
|
|
|
const lfs_block_t oldpair[2], const lfs_block_t newpair[2]) {
|
|
|
|
// find parent
|
|
|
|
lfs_dir_t parent;
|
|
|
|
lfs_entry_t entry;
|
|
|
|
int res = lfs_parent(lfs, oldpair, &parent, &entry);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
// update disk, this creates a desync
|
|
|
|
entry.d.u.dir[0] = newpair[0];
|
|
|
|
entry.d.u.dir[1] = newpair[1];
|
|
|
|
|
|
|
|
int err = lfs_dir_update(lfs, &parent, &entry, NULL);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
2017-04-29 17:41:53 +00:00
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
|
|
|
|
// update internal root
|
|
|
|
if (lfs_paircmp(oldpair, lfs->root) == 0) {
|
|
|
|
LFS_DEBUG("Relocating root %d %d", newpair[0], newpair[1]);
|
|
|
|
lfs->root[0] = newpair[0];
|
|
|
|
lfs->root[1] = newpair[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
// clean up bad block, which should now be a desync
|
|
|
|
return lfs_deorphan(lfs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// find pred
|
|
|
|
res = lfs_pred(lfs, oldpair, &parent);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
// just replace bad pair, no desync can occur
|
|
|
|
parent.d.tail[0] = newpair[0];
|
2017-10-07 21:56:00 +00:00
|
|
|
parent.d.tail[1] = newpair[1];
|
2017-05-14 17:01:45 +00:00
|
|
|
|
|
|
|
return lfs_dir_commit(lfs, &parent, NULL, 0);
|
2017-04-29 17:41:53 +00:00
|
|
|
}
|
2017-05-14 17:01:45 +00:00
|
|
|
|
|
|
|
// couldn't find dir, must be new
|
|
|
|
return 0;
|
2017-04-14 22:33:36 +00:00
|
|
|
}
|
2017-04-01 17:23:15 +00:00
|
|
|
|
2017-04-14 22:33:36 +00:00
|
|
|
int lfs_deorphan(lfs_t *lfs) {
|
2017-05-14 17:01:45 +00:00
|
|
|
lfs->deorphaned = true;
|
2017-10-07 21:56:00 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
if (lfs_pairisnull(lfs->root)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
lfs_dir_t pdir = {.d.size = 0x80000000};
|
|
|
|
lfs_dir_t cwd = {.d.tail[0] = 0, .d.tail[1] = 1};
|
2017-04-14 22:33:36 +00:00
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
// iterate over all directory directory entries
|
|
|
|
while (!lfs_pairisnull(cwd.d.tail)) {
|
|
|
|
int err = lfs_dir_fetch(lfs, &cwd, cwd.d.tail);
|
2017-04-14 22:33:36 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
// check head blocks for orphans
|
2017-04-29 17:41:53 +00:00
|
|
|
if (!(0x80000000 & pdir.d.size)) {
|
|
|
|
// check if we have a parent
|
2017-05-14 17:01:45 +00:00
|
|
|
lfs_dir_t parent;
|
|
|
|
lfs_entry_t entry;
|
|
|
|
int res = lfs_parent(lfs, pdir.d.tail, &parent, &entry);
|
|
|
|
if (res < 0) {
|
|
|
|
return res;
|
2017-04-29 17:41:53 +00:00
|
|
|
}
|
2017-04-14 22:33:36 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
if (!res) {
|
2017-04-29 17:41:53 +00:00
|
|
|
// we are an orphan
|
2017-10-07 21:56:00 +00:00
|
|
|
LFS_DEBUG("Found orphan %d %d",
|
|
|
|
pdir.d.tail[0], pdir.d.tail[1]);
|
2017-04-14 22:33:36 +00:00
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
pdir.d.tail[0] = cwd.d.tail[0];
|
|
|
|
pdir.d.tail[1] = cwd.d.tail[1];
|
2017-04-14 22:33:36 +00:00
|
|
|
|
2017-05-14 17:01:45 +00:00
|
|
|
err = lfs_dir_commit(lfs, &pdir, NULL, 0);
|
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!lfs_pairsync(entry.d.u.dir, pdir.d.tail)) {
|
|
|
|
// we have desynced
|
2017-10-07 21:56:00 +00:00
|
|
|
LFS_DEBUG("Found desync %d %d",
|
|
|
|
entry.d.u.dir[0], entry.d.u.dir[1]);
|
2017-05-14 17:01:45 +00:00
|
|
|
|
|
|
|
pdir.d.tail[0] = entry.d.u.dir[0];
|
|
|
|
pdir.d.tail[1] = entry.d.u.dir[1];
|
|
|
|
|
|
|
|
err = lfs_dir_commit(lfs, &pdir, NULL, 0);
|
2017-04-29 17:41:53 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
2017-04-14 22:33:36 +00:00
|
|
|
|
2017-04-29 17:41:53 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-04-14 22:33:36 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 21:56:00 +00:00
|
|
|
// check entries for moves
|
|
|
|
lfs_entry_t entry;
|
2017-10-07 14:19:08 +00:00
|
|
|
while (true) {
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_next(lfs, &cwd, &entry);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err && err != LFS_ERR_NOENT) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err == LFS_ERR_NOENT) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// found moved entry
|
|
|
|
if (entry.d.type & 0x80) {
|
|
|
|
int moved = lfs_moved(lfs, &entry.d.u);
|
|
|
|
if (moved < 0) {
|
|
|
|
return moved;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (moved) {
|
|
|
|
LFS_DEBUG("Found move %d %d",
|
|
|
|
entry.d.u.dir[0], entry.d.u.dir[1]);
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_remove(lfs, &cwd, &entry);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LFS_DEBUG("Found partial move %d %d",
|
|
|
|
entry.d.u.dir[0], entry.d.u.dir[1]);
|
|
|
|
entry.d.type &= ~0x80;
|
2018-01-29 19:53:28 +00:00
|
|
|
err = lfs_dir_update(lfs, &cwd, &entry, NULL);
|
2017-10-07 14:19:08 +00:00
|
|
|
if (err) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-07 21:56:00 +00:00
|
|
|
|
|
|
|
memcpy(&pdir, &cwd, sizeof(pdir));
|
2017-10-07 14:19:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|