* fs/romfs/fs_romfsutil.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you 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.
*
****************************************************************************/
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <sys/types.h>
#include <inttypes.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <debug.h>
#include <nuttx/crc16.h>
#include <nuttx/kmalloc.h>
#include <nuttx/fs/ioctl.h>
#include "fs_romfs.h"
#include "fs_heap.h"
* Pre-processor Definitions
****************************************************************************/
#define LINK_NOT_FOLLOWED 0
#define LINK_FOLLOWED 1
#define NODEINFO_NINCR 4
* Private Types
****************************************************************************/
struct romfs_entryname_s
{
FAR const char *re_name;
size_t re_len;
};
* Private Functions
****************************************************************************/
* Name: romfs_devread32
*
* Description:
* Read the big-endian 32-bit value from the mount device buffer
*
* Assumption:
* All values are aligned to 32-bit boundaries
*
****************************************************************************/
static uint32_t romfs_devread32(FAR struct romfs_mountpt_s *rm, int ndx)
{
* entries are aligned at 16-byte boundaries.
*/
return ((((uint32_t)rm->rm_buffer[ndx] & 0xff) << 24) |
(((uint32_t)rm->rm_buffer[ndx + 1] & 0xff) << 16) |
(((uint32_t)rm->rm_buffer[ndx + 2] & 0xff) << 8) |
((uint32_t)rm->rm_buffer[ndx + 3] & 0xff));
}
* Name: romfs_checkentry
*
* Description:
* Check if the entry at offset is a directory or file path segment
*
****************************************************************************/
#ifndef CONFIG_FS_ROMFS_CACHE_NODE
static inline int romfs_checkentry(FAR struct romfs_mountpt_s *rm,
uint32_t offset,
FAR const char *entryname, int entrylen,
FAR struct romfs_nodeinfo_s *nodeinfo)
{
char name[NAME_MAX + 1];
uint32_t linkoffset;
uint32_t next;
uint32_t info;
uint32_t size;
int ret;
* to some other entry if HARLINKED).
*/
ret = romfs_parsedirentry(rm, offset, &linkoffset, &next, &info, &size);
if (ret < 0)
{
return ret;
}
ret = romfs_parsefilename(rm, offset, name);
if (ret < 0)
{
return ret;
}
* string comparison is awkward because there is no terminator
* on entryname (there is a terminator on name, however)
*/
if (strlen(name) == entrylen &&
memcmp(entryname, name, entrylen) == 0)
{
if (IS_DIRECTORY(next))
{
nodeinfo->rn_offset = info;
nodeinfo->rn_size = 0;
}
else
{
nodeinfo->rn_offset = linkoffset;
nodeinfo->rn_size = size;
}
nodeinfo->rn_next = next;
return 0;
}
return -ENOENT;
}
#endif
* Name: romfs_devcacheread
*
* Description:
* Read the specified sector for specified offset into the sector cache.
* Return the index into the sector corresponding to the offset
*
****************************************************************************/
static int16_t romfs_devcacheread(FAR struct romfs_mountpt_s *rm,
uint32_t offset)
{
uint32_t sector;
int ret;
* referenced by rm->rm_buffer. If the requested sector is the same as this
* this then we do nothing.
*/
sector = SEC_NSECTORS(rm, offset);
if (rm->rm_cachesector != sector)
{
if (rm->rm_xipbase)
{
* address space.
*/
rm->rm_buffer = rm->rm_xipbase + SEC_ALIGN(rm, offset);
}
else
{
ret = romfs_hwread(rm, rm->rm_buffer, sector, 1);
if (ret < 0)
{
return (int16_t)ret;
}
}
rm->rm_cachesector = sector;
}
return offset & SEC_NDXMASK(rm);
}
* Name: romfs_followhardlinks
*
* Description:
* Given the offset to a file header, check if the file is a hardlink.
* If so, traverse the hard links until the terminal, non-linked header
* so found and return that offset.
*
* Return value:
* < 0 : An error occurred
* 0 : No link followed
* 1 : Link followed, poffset is the new volume offset
*
****************************************************************************/
static int romfs_followhardlinks(FAR struct romfs_mountpt_s *rm,
uint32_t offset, FAR uint32_t *poffset)
{
uint32_t next;
int16_t ndx;
int i;
int ret = LINK_NOT_FOLLOWED;
for (i = 0; i < ROMF_MAX_LINKS; i++)
{
ndx = romfs_devcacheread(rm, offset);
if (ndx < 0)
{
return ndx;
}
next = romfs_devread32(rm, ndx + ROMFS_FHDR_NEXT);
if (!IS_HARDLINK(next))
{
*poffset = offset;
return ret;
}
* link and that poffset was set to the link offset is valid.
*/
offset = romfs_devread32(rm, ndx + ROMFS_FHDR_INFO);
ret = LINK_FOLLOWED;
}
return -ELOOP;
}
* Name: romfs_nodeinfo_search/romfs_nodeinfo_compare
*
* Description:
* Compare two names
*
****************************************************************************/
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
static int romfs_nodeinfo_search(FAR const void *a, FAR const void *b)
{
FAR struct romfs_nodeinfo_s *nodeinfo = *(FAR struct romfs_nodeinfo_s **)b;
FAR const struct romfs_entryname_s *entry = a;
FAR const char *name = nodeinfo->rn_name;
size_t len = nodeinfo->rn_namesize;
int ret;
if (len > entry->re_len)
{
len = entry->re_len;
}
ret = memcmp(entry->re_name, name, len);
if (ret == 0)
{
if (entry->re_name[len] == '/' || entry->re_name[len] == '\0')
{
return name[len] == '\0' ? 0 : -1;
}
else
{
return 1;
}
}
return ret;
}
static int romfs_nodeinfo_compare(FAR const void *a, FAR const void *b)
{
FAR struct romfs_nodeinfo_s *nodeinfo = *(FAR struct romfs_nodeinfo_s **)a;
struct romfs_entryname_s entry;
entry.re_name = nodeinfo->rn_name;
entry.re_len = nodeinfo->rn_namesize;
return romfs_nodeinfo_search(&entry, b);
}
#endif
* Name: romfs_searchdir
*
* Description:
* This is part of the romfs_finddirentry. Search the directory
* beginning at nodeinfo->rn_offset for entryname.
*
****************************************************************************/
static inline int romfs_searchdir(FAR struct romfs_mountpt_s *rm,
FAR const char *entryname, int entrylen,
FAR struct romfs_nodeinfo_s *nodeinfo)
{
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
FAR struct romfs_nodeinfo_s **cnodeinfo;
struct romfs_entryname_s entry;
entry.re_name = entryname;
entry.re_len = entrylen;
cnodeinfo = bsearch(&entry, nodeinfo->rn_child, nodeinfo->rn_count,
sizeof(*nodeinfo->rn_child), romfs_nodeinfo_search);
if (cnodeinfo)
{
memcpy(nodeinfo, *cnodeinfo, sizeof(*nodeinfo));
return 0;
}
#else
uint32_t offset;
uint32_t next;
int16_t ndx;
int ret;
* with the matching name is found. Or until all of the entries
* the directory have been examined.
*/
offset = nodeinfo->rn_offset;
do
{
* romfs_checkentry() so we won't have to read the sector
* twice in the event that the offset refers to a hardlink).
*/
ndx = romfs_devcacheread(rm, offset);
if (ndx < 0)
{
return ndx;
}
* we know that most the basic node info fits into the sector.
*/
next = romfs_devread32(rm, ndx + ROMFS_FHDR_NEXT) & RFNEXT_OFFSETMASK;
* name
*/
ret = romfs_checkentry(rm, offset, entryname, entrylen, nodeinfo);
if (ret >= 0)
{
return ret;
}
offset = next;
}
while (next != 0);
#endif
return -ENOENT;
}
* Name: romfs_cachenode
*
* Description:
* Alloc all entry node at once when filesystem is mounted
*
****************************************************************************/
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
static int romfs_cachenode(FAR struct romfs_mountpt_s *rm,
uint32_t offset, uint32_t next,
uint32_t size, FAR const char *name,
FAR struct romfs_nodeinfo_s **pnodeinfo)
{
FAR struct romfs_nodeinfo_s **child;
FAR struct romfs_nodeinfo_s *nodeinfo;
char childname[NAME_MAX + 1];
uint32_t linkoffset;
uint32_t info;
uint16_t count = 0;
size_t nsize;
int ret;
nsize = strlen(name);
nodeinfo = fs_heap_zalloc(sizeof(struct romfs_nodeinfo_s) + nsize);
if (nodeinfo == NULL)
{
return -ENOMEM;
}
*pnodeinfo = nodeinfo;
nodeinfo->rn_offset = offset;
nodeinfo->rn_next = next;
nodeinfo->rn_namesize = nsize;
memcpy(nodeinfo->rn_name, name, nsize + 1);
if (!IS_DIRECTORY(next))
{
nodeinfo->rn_size = size;
return 0;
}
child = nodeinfo->rn_child;
do
{
* to some other entry if HARLINKED).
*/
ret = romfs_parsedirentry(rm, offset, &linkoffset, &next, &info,
&size);
if (ret < 0)
{
return ret;
}
ret = romfs_parsefilename(rm, offset, childname);
if (ret < 0)
{
return ret;
}
if (strcmp(childname, ".") != 0 && strcmp(childname, "..") != 0)
{
if (child == NULL || nodeinfo->rn_count == count - 1)
{
FAR void *tmp;
tmp = fs_heap_realloc(nodeinfo->rn_child,
(count + NODEINFO_NINCR) * sizeof(*nodeinfo->rn_child));
if (tmp == NULL)
{
return -ENOMEM;
}
nodeinfo->rn_child = tmp;
memset(nodeinfo->rn_child + count, 0, NODEINFO_NINCR *
sizeof(*nodeinfo->rn_child));
count += NODEINFO_NINCR;
}
child = &nodeinfo->rn_child[nodeinfo->rn_count++];
if (IS_DIRECTORY(next))
{
linkoffset = info;
}
ret = romfs_cachenode(rm, linkoffset, next, size,
childname, child);
if (ret < 0)
{
nodeinfo->rn_count--;
return ret;
}
}
next &= RFNEXT_OFFSETMASK;
offset = next;
}
while (next != 0);
if (nodeinfo->rn_count > 1)
{
qsort(nodeinfo->rn_child, nodeinfo->rn_count,
sizeof(*nodeinfo->rn_child), romfs_nodeinfo_compare);
}
return 0;
}
#endif
* Name: romfs_check
****************************************************************************/
#ifdef CONFIG_FS_ROMFS_DEBUG
static void romfs_check(FAR struct inode *inode, uint32_t sector,
unsigned int nsectors, FAR uint8_t *buffer,
uint16_t sectorsize)
{
uint16_t crc16_check;
uint16_t crc16_ori;
ssize_t size;
crc16_ori = crc16(buffer, sectorsize * nsectors);
size = inode->u.i_bops->read(inode, buffer, sector, nsectors);
if (size != (ssize_t)nsectors)
{
ferr("Read failed: %zd\n", size);
lib_dumpbuffer("buffer:", buffer, sectorsize * nsectors);
DEBUGASSERT(0);
}
else
{
crc16_check = crc16(buffer, sectorsize * nsectors);
if (crc16_ori != crc16_check)
{
ferr("CRC16 check failed\n");
lib_dumpbuffer("check:", buffer, sectorsize * nsectors);
DEBUGASSERT(0);
}
}
}
#endif
* Public Functions
****************************************************************************/
* Name: romfs_hwread
*
* Description: Read the specified sector into the sector buffer
*
****************************************************************************/
int romfs_hwread(FAR struct romfs_mountpt_s *rm, FAR uint8_t *buffer,
uint32_t sector, unsigned int nsectors)
{
int ret = 0;
if (rm->rm_xipbase)
{
memcpy(buffer,
rm->rm_xipbase + sector * rm->rm_hwsectorsize,
nsectors * rm->rm_hwsectorsize);
}
else
{
FAR struct inode *inode = rm->rm_blkdriver;
ssize_t nsectorsread =
inode->u.i_bops->read(inode, buffer, sector, nsectors);
if (nsectorsread < 0)
{
ret = nsectorsread;
}
else if (nsectorsread != (ssize_t)nsectors)
{
ret = -EINVAL;
}
#ifdef CONFIG_FS_ROMFS_DEBUG
else
{
romfs_check(inode, sector, nsectors, buffer, rm->rm_hwsectorsize);
}
#endif
}
return ret;
}
* Name: romfs_filecacheread
*
* Description:
* Read the specified sector into the sector cache
*
****************************************************************************/
int romfs_filecacheread(FAR struct romfs_mountpt_s *rm,
FAR struct romfs_file_s *rf, uint32_t sector)
{
int ret;
finfo("sector: %" PRId32 " cached: %" PRId32 " ncached: %" PRId32 ""
" sectorsize: %d XIP base: %p buffer: %p\n",
sector, rf->rf_cachesector, rf->rf_ncachesector,
rm->rm_hwsectorsize, rm->rm_xipbase, rf->rf_buffer);
* referenced by rf->rf_buffer. If the requested sector is the same as this
* sector then we do nothing.
*/
if (rf->rf_cachesector > sector ||
rf->rf_cachesector + rf->rf_ncachesector <= sector)
{
if (rm->rm_xipbase)
{
* address space.
*/
rf->rf_buffer = rm->rm_xipbase + sector * rm->rm_hwsectorsize;
finfo("XIP buffer: %p\n", rf->rf_buffer);
}
else
{
if (sector + rf->rf_ncachesector - 1 > rf->rf_endsector)
{
sector = rf->rf_endsector + 1 - rf->rf_ncachesector;
}
finfo("Calling romfs_hwread\n");
ret = romfs_hwread(rm, rf->rf_buffer, sector, rf->rf_ncachesector);
if (ret < 0)
{
ferr("ERROR: romfs_hwread failed: %d\n", ret);
return ret;
}
}
rf->rf_cachesector = sector;
}
return 0;
}
* Name: romfs_hwconfigure
*
* Description:
* This function is called as part of the ROMFS mount operation.
* It configures the ROMFS filestem for use on this block driver. This
* include the accounting for the geometry of the device, setting up any
* XIP modes of operation, and/or allocating any cache buffers.
*
****************************************************************************/
int romfs_hwconfigure(FAR struct romfs_mountpt_s *rm)
{
FAR struct inode *inode = rm->rm_blkdriver;
struct geometry geo;
int ret;
#ifdef CONFIG_DEBUG_FEATURES
if (inode == NULL)
{
return -ENODEV;
}
#endif
ret = inode->u.i_bops->geometry(inode, &geo);
if (ret < 0)
{
return ret;
}
if (!geo.geo_available)
{
return -EBUSY;
}
rm->rm_hwsectorsize = geo.geo_sectorsize;
rm->rm_hwnsectors = geo.geo_nsectors;
rm->rm_cachesector = (uint32_t)-1;
if (inode->u.i_bops->ioctl)
{
ret = inode->u.i_bops->ioctl(inode, BIOC_XIPBASE,
(unsigned long)&rm->rm_xipbase);
if (ret >= 0 && rm->rm_xipbase)
{
* copying into an allocated sector buffer.
*/
rm->rm_buffer = rm->rm_xipbase;
rm->rm_cachesector = 0;
return 0;
}
}
rm->rm_buffer = fs_heap_malloc(rm->rm_hwsectorsize);
if (!rm->rm_buffer)
{
return -ENOMEM;
}
return 0;
}
* Name: romfs_fsconfigure
*
* Description:
* This function is called as part of the ROMFS mount operation It
* sets up the mount structure to include configuration information
* contained in the ROMFS header. This is the place where we actually
* determine if the media contains a ROMFS filesystem.
*
****************************************************************************/
int romfs_fsconfigure(FAR struct romfs_mountpt_s *rm)
{
FAR const char *name;
int16_t ndx;
* by this block driver. Read sector zero which contains the volume header.
*/
ndx = romfs_devcacheread(rm, 0);
if (ndx < 0)
{
return ndx;
}
if (memcmp(rm->rm_buffer, ROMFS_VHDR_MAGIC, ROMFS_VHDR_SIZE) != 0)
{
return -EINVAL;
}
rm->rm_volsize = romfs_devread32(rm, ROMFS_VHDR_SIZE);
name = (FAR const char *)&rm->rm_buffer[ROMFS_VHDR_VOLNAME];
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
ndx = romfs_cachenode(rm, ROMFS_ALIGNUP(ROMFS_VHDR_VOLNAME +
strlen(name) + 1),
RFNEXT_DIRECTORY, 0, "", &rm->rm_root);
if (ndx < 0)
{
romfs_freenode(rm->rm_root);
return ndx;
}
#else
rm->rm_rootoffset = ROMFS_ALIGNUP(ROMFS_VHDR_VOLNAME + strlen(name) + 1);
#endif
rm->rm_mounted = true;
return 0;
}
* Name: romfs_fileconfigure
*
* Description:
* This function is called as part of the ROMFS file open operation It
* sets up the file structure to handle buffer appropriately, depending
* upon XIP mode or not.
*
****************************************************************************/
int romfs_fileconfigure(FAR struct romfs_mountpt_s *rm,
FAR struct romfs_file_s *rf)
{
* to allocate anything.
*/
if (rm->rm_xipbase)
{
rf->rf_cachesector = 0;
rf->rf_buffer = rm->rm_xipbase;
rf->rf_ncachesector = 1;
}
else
{
uint32_t startsector;
uint32_t endoffset;
uint32_t nsectors;
endoffset = rf->rf_startoffset + rf->rf_size;
if (rf->rf_size)
{
endoffset--;
}
rf->rf_endsector = SEC_NSECTORS(rm, endoffset);
startsector = SEC_NSECTORS(rm, rf->rf_startoffset);
nsectors = rf->rf_endsector - startsector + 1;
if (nsectors > CONFIG_FS_ROMFS_CACHE_FILE_NSECTORS)
{
nsectors = CONFIG_FS_ROMFS_CACHE_FILE_NSECTORS;
}
rf->rf_cachesector = (uint32_t)-1;
rf->rf_ncachesector = nsectors;
rf->rf_buffer = fs_heap_malloc(rm->rm_hwsectorsize *
rf->rf_ncachesector);
if (!rf->rf_buffer)
{
return -ENOMEM;
}
}
return 0;
}
* Name: romfs_checkmount
*
* Description: Check if the mountpoint is still valid.
*
* The caller should hold the mountpoint semaphore
*
****************************************************************************/
int romfs_checkmount(FAR struct romfs_mountpt_s *rm)
{
FAR struct inode *inode;
struct geometry geo;
int ret;
* of the mount.
*/
DEBUGASSERT(rm && rm->rm_blkdriver);
if (rm->rm_mounted)
{
* still the case
*/
inode = rm->rm_blkdriver;
if (inode->u.i_bops->geometry)
{
ret = inode->u.i_bops->geometry(inode, &geo);
if (ret >= 0 && geo.geo_available && !geo.geo_mediachanged)
{
return 0;
}
}
rm->rm_mounted = false;
}
return -ENODEV;
}
* Name: romfs_freenode
*
* Description:
* free all entry node at once when filesystem is unmounted
*
****************************************************************************/
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
void romfs_freenode(FAR struct romfs_nodeinfo_s *nodeinfo)
{
int i;
if (IS_DIRECTORY(nodeinfo->rn_next))
{
for (i = 0; i < nodeinfo->rn_count; i++)
{
romfs_freenode(nodeinfo->rn_child[i]);
}
fs_heap_free(nodeinfo->rn_child);
}
fs_heap_free(nodeinfo);
}
#endif
* Name: romfs_finddirentry
*
* Description:
* Given a path to something that may or may not be in the file system,
* return the directory entry of the item.
*
****************************************************************************/
int romfs_finddirentry(FAR struct romfs_mountpt_s *rm,
FAR struct romfs_nodeinfo_s *nodeinfo,
FAR const char *path)
{
FAR const char *entryname;
FAR const char *terminator;
int entrylen;
int ret;
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
memcpy(nodeinfo, rm->rm_root, sizeof(*nodeinfo));
#else
nodeinfo->rn_offset = rm->rm_rootoffset;
nodeinfo->rn_next = RFNEXT_DIRECTORY;
nodeinfo->rn_size = 0;
#endif
if (!path || path[0] == '\0')
{
return 0;
}
entryname = path;
terminator = NULL;
for (; ; )
{
while (*entryname == '/') entryname++;
terminator = strchr(entryname, '/');
if (!terminator)
{
entrylen = strlen(entryname);
}
else
{
entrylen = terminator - entryname;
}
if (entrylen == 0)
{
return 0;
}
if (entrylen > NAME_MAX)
{
entrylen = NAME_MAX;
}
* matching name.
*/
ret = romfs_searchdir(rm, entryname, entrylen, nodeinfo);
if (ret < 0)
{
return ret;
}
if (!terminator)
{
return 0;
}
* better have been a directory
*/
if (!IS_DIRECTORY(nodeinfo->rn_next))
{
return -ENOTDIR;
}
* of the path
*/
entryname = terminator;
}
return -EINVAL;
}
* Name: romfs_parsedirentry
*
* Description:
* Return the directory entry at this offset. If rf is NULL, then the
* mount device resources are used. Otherwise, file resources are used.
*
****************************************************************************/
int romfs_parsedirentry(FAR struct romfs_mountpt_s *rm, uint32_t offset,
FAR uint32_t *poffset, uint32_t *pnext,
FAR uint32_t *pinfo, FAR uint32_t *psize)
{
uint32_t save;
uint32_t next;
int16_t ndx;
int ret;
ndx = romfs_devcacheread(rm, offset);
if (ndx < 0)
{
return ndx;
}
* traverse the parent directory. But we may need to change the type
* after we follow the hard links.
*/
save = romfs_devread32(rm, ndx + ROMFS_FHDR_NEXT);
ret = romfs_followhardlinks(rm, offset, poffset);
if (ret < 0)
{
return ret;
}
else if (ret > 0)
{
ndx = romfs_devcacheread(rm, *poffset);
if (ndx < 0)
{
return ndx;
}
}
* we know that most the basic node info fits into the sector. The
* associated name may not, however.
*
* NOTE: Since ROMFS directory entries are aligned to 16-byte boundaries,
* we are assured that ndx + ROMFS_FHDR_INFO/SIZE will lie wholly within
* the sector buffer.
*/
next = romfs_devread32(rm, ndx + ROMFS_FHDR_NEXT);
*pnext = (save & RFNEXT_OFFSETMASK) | (next & RFNEXT_ALLMODEMASK);
*pinfo = romfs_devread32(rm, ndx + ROMFS_FHDR_INFO);
*psize = romfs_devread32(rm, ndx + ROMFS_FHDR_SIZE);
return 0;
}
* Name: romfs_parsefilename
*
* Description:
* Return the filename from directory entry at this offset
*
****************************************************************************/
int romfs_parsefilename(FAR struct romfs_mountpt_s *rm, uint32_t offset,
FAR char *pname)
{
int16_t ndx;
uint16_t namelen = 0;
uint16_t chunklen;
bool done = false;
* of the name have been parsed.
*/
offset += ROMFS_FHDR_NAME;
while (namelen < NAME_MAX && !done)
{
ndx = romfs_devcacheread(rm, offset + namelen);
if (ndx < 0)
{
return ndx;
}
if (rm->rm_buffer[ndx + 15] == '\0')
{
chunklen = strlen((FAR char *)&rm->rm_buffer[ndx]);
done = true;
}
else
{
chunklen = 16;
}
if (namelen + chunklen > NAME_MAX)
{
chunklen = NAME_MAX - namelen;
done = true;
}
memcpy(&pname[namelen], &rm->rm_buffer[ndx], chunklen);
namelen += chunklen;
}
pname[namelen] = '\0';
return 0;
}
* Name: romfs_datastart
*
* Description:
* Given the offset to a file header, return the offset to the start of
* the file data
*
****************************************************************************/
int romfs_datastart(FAR struct romfs_mountpt_s *rm,
FAR struct romfs_nodeinfo_s *nodeinfo,
FAR uint32_t *start)
{
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
*start = ROMFS_ALIGNUP(nodeinfo->rn_offset +
ROMFS_FHDR_NAME + nodeinfo->rn_namesize + 1);
return 0;
#else
uint32_t offset = nodeinfo->rn_offset;
int16_t ndx;
offset += ROMFS_FHDR_NAME;
for (; ; )
{
ndx = romfs_devcacheread(rm, offset);
if (ndx < 0)
{
return ndx;
}
offset += 16;
if (offset > rm->rm_volsize)
{
return -EIO;
}
if (rm->rm_buffer[ndx + 15] == '\0')
{
*start = offset;
return 0;
}
}
return -EINVAL;
#endif
}