* fs/romfs/fs_romfs.h
*
* 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.
*
****************************************************************************/
#ifndef __FS_ROMFS_FS_ROMFS_H
#define __FS_ROMFS_FS_ROMFS_H
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdint.h>
#include <stdbool.h>
#include "inode/inode.h"
* Pre-processor Definitions
****************************************************************************/
#define ROMFS_VHDR_ROM1FS 0
#define ROMFS_VHDR_SIZE 8
#define ROMFS_VHDR_CHKSUM 12
#define ROMFS_VHDR_VOLNAME 16
* 16 byte boundary. */
#define ROMFS_VHDR_MAGIC "-rom1fs-"
#define ROMFS_FHDR_NEXT 0
* (zero if no more files) */
#define ROMFS_FHDR_INFO 4
* devices */
#define ROMFS_FHDR_SIZE 8
#define ROMFS_FHDR_CHKSUM 12
* including the file name, and
* padding. */
#define ROMFS_FHDR_NAME 16
* to 16 byte boundary. */
* values specified in
*/
#define RFNEXT_MODEMASK 7
#define RFNEXT_ALLMODEMASK 15
#define RFNEXT_OFFSETMASK (~15)
#define RFNEXT_HARDLINK 0
#define RFNEXT_DIRECTORY 1
#define RFNEXT_FILE 2
#define RFNEXT_SOFTLINK 3
#define RFNEXT_BLOCKDEV 4
#define RFNEXT_CHARDEV 5
#define RFNEXT_SOCKET 6
#define RFNEXT_FIFO 7
#define RFNEXT_EXEC 8
#define IS_MODE(rfn,mode) ((((uint32_t)(rfn))&RFNEXT_MODEMASK)==(mode))
#define IS_HARDLINK(rfn) IS_MODE(rfn,RFNEXT_HARDLINK)
#define IS_DIRECTORY(rfn) IS_MODE(rfn,RFNEXT_DIRECTORY)
#define IS_FILE(rfn) IS_MODE(rfn,RFNEXT_FILE)
#define IS_SOFTLINK(rfn) IS_MODE(rfn,RFNEXT_SOFTLINK)
#define IS_BLOCKDEV(rfn) IS_MODE(rfn,RFNEXT_BLOCKDEV)
#define IS_CHARDEV(rfn) IS_MODE(rfn,RFNEXT_CHARDEV)
#define IS_SOCKET(rfn) IS_MODE(rfn,RFNEXT_SOCKET)
#define IS_FIFO(rfn) IS_MODE(rfn,RFNEXT_FIFO)
#define IS_EXECUTABLE(rfn) (((rfn) & RFNEXT_EXEC) != 0)
* RFNEXT_FIFO are not presently supported in NuttX.
*/
#define ROMFS_ALIGNMENT 16
#define ROMFS_MAXPADDING (ROMFS_ALIGNMENT-1)
#define ROMFS_ALIGNMASK (~ROMFS_MAXPADDING)
#define ROMFS_ALIGNUP(addr) ((((uint32_t)(addr))+ROMFS_MAXPADDING)&ROMFS_ALIGNMASK)
#define ROMFS_ALIGNDOWN(addr) (((uint32_t)(addr))&ROMFS_ALIGNMASK)
#define SEC_NDXMASK(r) ((r)->rm_hwsectorsize - 1)
#define SEC_NSECTORS(r,o) ((o) / (r)->rm_hwsectorsize)
#define SEC_ALIGN(r,o) ((o) & ~SEC_NDXMASK(r))
* is a problem.
*/
#define ROMF_MAX_LINKS 64
* Public Types
****************************************************************************/
* this structure is retained as inode private data on each mountpoint that
* is mounted with a romfs filesystem.
*/
struct romfs_file_s;
struct romfs_mountpt_s
{
FAR struct inode *rm_blkdriver;
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
FAR struct romfs_nodeinfo_s *rm_root;
#else
uint32_t rm_rootoffset;
#endif
bool rm_mounted;
uint16_t rm_hwsectorsize;
rmutex_t rm_lock;
uint32_t rm_refs;
uint32_t rm_hwnsectors;
uint32_t rm_volsize;
uint32_t rm_cachesector;
FAR uint8_t *rm_xipbase;
FAR uint8_t *rm_buffer;
};
* of this structure is retained as struct file specific information on each
* opened file.
*/
struct romfs_file_s
{
uint32_t rf_startoffset;
uint32_t rf_endsector;
uint32_t rf_size;
uint32_t rf_cachesector;
uint32_t rf_ncachesector;
FAR uint8_t *rf_buffer;
uint8_t rf_type;
char rf_path[1];
};
struct romfs_nodeinfo_s
{
uint32_t rn_offset;
uint32_t rn_next;
uint32_t rn_size;
#ifdef CONFIG_FS_ROMFS_CACHE_NODE
FAR struct romfs_nodeinfo_s **rn_child;
uint16_t rn_count;
uint8_t rn_namesize;
char rn_name[1];
#endif
};
* Public Data
****************************************************************************/
#undef EXTERN
#if defined(__cplusplus)
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
* Public Function Prototypes
****************************************************************************/
int romfs_hwread(FAR struct romfs_mountpt_s *rm, FAR uint8_t *buffer,
uint32_t sector, unsigned int nsectors);
int romfs_filecacheread(FAR struct romfs_mountpt_s *rm,
FAR struct romfs_file_s *rf, uint32_t sector);
int romfs_hwconfigure(FAR struct romfs_mountpt_s *rm);
int romfs_fsconfigure(FAR struct romfs_mountpt_s *rm);
int romfs_fileconfigure(FAR struct romfs_mountpt_s *rm,
FAR struct romfs_file_s *rf);
int romfs_checkmount(FAR struct romfs_mountpt_s *rm);
int romfs_finddirentry(FAR struct romfs_mountpt_s *rm,
FAR struct romfs_nodeinfo_s *nodeinfo,
FAR const char *path);
int romfs_parsedirentry(FAR struct romfs_mountpt_s *rm, uint32_t offset,
FAR uint32_t *poffset, FAR uint32_t *pnext,
FAR uint32_t *pinfo, FAR uint32_t *psize);
int romfs_parsefilename(FAR struct romfs_mountpt_s *rm, uint32_t offset,
FAR char *pname);
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
void romfs_freenode(FAR struct romfs_nodeinfo_s *node);
#endif
#undef EXTERN
#if defined(__cplusplus)
}
#endif
#endif