mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 07:12:54 +08:00
Squashed commit of the following:
fs/fat: Remove mkfatfs from the OS. This is a user-space application and belongs in apps, not in the OS.
This commit is contained in:
+1
-6
@@ -1,7 +1,7 @@
|
||||
############################################################################
|
||||
# Make.defs
|
||||
#
|
||||
# Copyright (C) 2008, 2011, 2013 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2008, 2011, 2013, 2017 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
@@ -39,11 +39,6 @@ ifeq ($(CONFIG_FS_FAT),y)
|
||||
ASRCS +=
|
||||
CSRCS += fs_fat32.c fs_fat32dirent.c fs_fat32attrib.c fs_fat32util.c
|
||||
|
||||
# Files required for mkfatfs utility function
|
||||
|
||||
ASRCS +=
|
||||
CSRCS += fs_mkfatfs.c fs_configfat.c fs_writefat.c
|
||||
|
||||
# Include FAT build support
|
||||
|
||||
DEPPATH += --dep-path fat
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,343 +0,0 @@
|
||||
/****************************************************************************
|
||||
* fs/fat/fs_writefat.c
|
||||
*
|
||||
* Copyright (C) 2008-2009, 2013 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name NuttX nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <debug.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <nuttx/kmalloc.h>
|
||||
#include <nuttx/fs/fs.h>
|
||||
#include <nuttx/fs/fat.h>
|
||||
#include <nuttx/fs/mkfatfs.h>
|
||||
|
||||
#include "inode/inode.h"
|
||||
#include "fs_fat32.h"
|
||||
#include "fs_mkfatfs.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Private Functions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Name: mkfatfs_getgeometry
|
||||
*
|
||||
* Description:
|
||||
* Get the sector size and number of sectors of the underlying block
|
||||
* device.
|
||||
*
|
||||
* Input:
|
||||
* fmt - Caller specified format parameters
|
||||
* var - Other format parameters that are not caller specifiable. (Most
|
||||
* set by mkfatfs_configfatfs()).
|
||||
*
|
||||
* Return:
|
||||
* Zero on success; negated errno on failure
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
static inline int mkfatfs_getgeometry(FAR struct fat_format_s *fmt,
|
||||
FAR struct fat_var_s *var)
|
||||
{
|
||||
struct geometry geometry;
|
||||
int ret;
|
||||
|
||||
/* Get the device geometry */
|
||||
|
||||
ret = DEV_GEOMETRY(geometry);
|
||||
if (ret < 0)
|
||||
{
|
||||
ferr("ERROR: geometry() returned %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (!geometry.geo_available || !geometry.geo_writeenabled)
|
||||
{
|
||||
ferr("ERROR: Media is not available\n", ret);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
/* Check if the user provided maxblocks was provided and, if so, that is it less than
|
||||
* the actual number of blocks on the device.
|
||||
*/
|
||||
|
||||
if (fmt->ff_nsectors != 0)
|
||||
{
|
||||
if (fmt->ff_nsectors > geometry.geo_nsectors)
|
||||
{
|
||||
ferr("ERROR: User maxblocks (%d) exceeds blocks on device (%d)\n",
|
||||
fmt->ff_nsectors, geometry.geo_nsectors);
|
||||
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Use the actual number of blocks on the device */
|
||||
|
||||
fmt->ff_nsectors = geometry.geo_nsectors;
|
||||
}
|
||||
|
||||
/* Verify that we can handle this sector size */
|
||||
|
||||
var->fv_sectorsize = geometry.geo_sectorsize;
|
||||
switch (var->fv_sectorsize)
|
||||
{
|
||||
case 512:
|
||||
var->fv_sectshift = 9;
|
||||
break;
|
||||
|
||||
case 1024:
|
||||
var->fv_sectshift = 10;
|
||||
break;
|
||||
|
||||
case 2048:
|
||||
var->fv_sectshift = 11;
|
||||
break;
|
||||
|
||||
case 4096:
|
||||
var->fv_sectshift = 12;
|
||||
break;
|
||||
|
||||
default:
|
||||
ferr("ERROR: Unsupported sector size: %d\n", var->fv_sectorsize);
|
||||
return -EPERM;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Name: mkfatfs
|
||||
*
|
||||
* Description:
|
||||
* Make a FAT file system image on the specified block device. This
|
||||
* function can automatically format a FAT12 or FAT16 file system. By
|
||||
* tradition, FAT32 will only be selected is explicitly requested.
|
||||
*
|
||||
* Inputs:
|
||||
* pathname - the full path to a registered block driver
|
||||
* fmt - Describes characteristics of the desired filesystem
|
||||
*
|
||||
* Return:
|
||||
* Zero (OK) on success; -1 (ERROR) on failure with errno set appropriately:
|
||||
*
|
||||
* EINVAL - NULL block driver string, bad number of FATS in 'fmt', bad FAT
|
||||
* size in 'fmt', bad cluster size in 'fmt'
|
||||
* ENOENT - 'pathname' does not refer to anything in the filesystem.
|
||||
* ENOTBLK - 'pathname' does not refer to a block driver
|
||||
* EACCES - block driver does not support wrie or geometry methods
|
||||
*
|
||||
* Assumptions:
|
||||
* - The caller must assure that the block driver is not mounted and not in
|
||||
* use when this function is called. The result of formatting a mounted
|
||||
* device is indeterminate (but likely not good).
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int mkfatfs(FAR const char *pathname, FAR struct fat_format_s *fmt)
|
||||
{
|
||||
struct fat_var_s var;
|
||||
int ret;
|
||||
|
||||
/* Initialize */
|
||||
|
||||
memset(&var, 0, sizeof(struct fat_var_s));
|
||||
|
||||
/* Get the filesystem creation time */
|
||||
|
||||
var.fv_createtime = fat_systime2fattime();
|
||||
|
||||
/* Verify format options (only when DEBUG enabled) */
|
||||
|
||||
#ifdef CONFIG_DEBUG_FEATURES
|
||||
if (!pathname)
|
||||
{
|
||||
ferr("ERROR: No block driver path\n");
|
||||
ret = -EINVAL;
|
||||
goto errout;
|
||||
}
|
||||
|
||||
if (fmt->ff_nfats < 1 || fmt->ff_nfats > 4)
|
||||
{
|
||||
ferr("ERROR: Invalid number of fats: %d\n", fmt->ff_nfats);
|
||||
ret = -EINVAL;
|
||||
goto errout;
|
||||
}
|
||||
|
||||
if (fmt->ff_fattype != 0 && fmt->ff_fattype != 12 &&
|
||||
fmt->ff_fattype != 16 && fmt->ff_fattype != 32)
|
||||
{
|
||||
ferr("ERROR: Invalid FAT size: %d\n", fmt->ff_fattype);
|
||||
ret = -EINVAL;
|
||||
goto errout;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* 0 will auto-selected by FAT12 and FAT16 (only). Otherwise,
|
||||
* fv_fattype will specify the exact format to use.
|
||||
*/
|
||||
|
||||
var.fv_fattype = fmt->ff_fattype;
|
||||
|
||||
/* The valid range off ff_clustshift is {0,1,..7} corresponding to
|
||||
* cluster sizes of {1,2,..128} sectors. The special value of 0xff
|
||||
* means that we should autoselect the cluster sizel.
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_DEBUG_FEATURES
|
||||
if (fmt->ff_clustshift > 7 && fmt->ff_clustshift != 0xff)
|
||||
{
|
||||
ferr("ERROR: Invalid cluster shift value: %d\n", fmt->ff_clustshift);
|
||||
|
||||
ret = -EINVAL;
|
||||
goto errout;
|
||||
}
|
||||
|
||||
if (fmt->ff_rootdirentries != 0 &&
|
||||
(fmt->ff_rootdirentries < 16 || fmt->ff_rootdirentries > 32767))
|
||||
{
|
||||
ferr("ERROR: Invalid number of root dir entries: %d\n",
|
||||
fmt->ff_rootdirentries);
|
||||
|
||||
ret = -EINVAL;
|
||||
goto errout;
|
||||
}
|
||||
|
||||
if (fmt->ff_rsvdseccount != 0 && (fmt->ff_rsvdseccount < 1 ||
|
||||
fmt->ff_rsvdseccount > 32767))
|
||||
{
|
||||
ferr("ERROR: Invalid number of reserved sectors: %d\n",
|
||||
fmt->ff_rsvdseccount);
|
||||
|
||||
ret = -EINVAL;
|
||||
goto errout;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Find the inode of the block driver indentified by 'source' */
|
||||
|
||||
ret = open_blockdriver(pathname, 0, &var.fv_inode);
|
||||
if (ret < 0)
|
||||
{
|
||||
ferr("ERROR: Failed to open %s\n", pathname);
|
||||
goto errout;
|
||||
}
|
||||
|
||||
/* Make sure that the inode supports the write and geometry methods at a minimum */
|
||||
|
||||
if (!var.fv_inode->u.i_bops->write || !var.fv_inode->u.i_bops->geometry)
|
||||
{
|
||||
ferr("ERROR: %s does not support write or geometry methods\n",
|
||||
pathname);
|
||||
|
||||
ret = -EACCES;
|
||||
goto errout_with_driver;
|
||||
}
|
||||
|
||||
/* Determine the volume configuration based upon the input values and upon the
|
||||
* reported device geometry.
|
||||
*/
|
||||
|
||||
ret = mkfatfs_getgeometry(fmt, &var);
|
||||
if (ret < 0)
|
||||
{
|
||||
goto errout_with_driver;
|
||||
}
|
||||
|
||||
/* Configure the file system */
|
||||
|
||||
ret = mkfatfs_configfatfs(fmt, &var);
|
||||
if (ret < 0)
|
||||
{
|
||||
goto errout_with_driver;
|
||||
}
|
||||
|
||||
/* Allocate a buffer that will be working sector memory */
|
||||
|
||||
#ifdef CONFIG_FAT_DMAMEMORY
|
||||
var.fv_sect = (FAR uint8_t *)fat_dma_alloc(var.fv_sectorsize);
|
||||
#else
|
||||
var.fv_sect = (FAR uint8_t *)kmm_malloc(var.fv_sectorsize);
|
||||
#endif
|
||||
|
||||
if (!var.fv_sect)
|
||||
{
|
||||
ferr("ERROR: Failed to allocate working buffers\n");
|
||||
goto errout_with_driver;
|
||||
}
|
||||
|
||||
/* Write the filesystem to media */
|
||||
|
||||
ret = mkfatfs_writefatfs(fmt, &var);
|
||||
|
||||
errout_with_driver:
|
||||
/* Close the driver */
|
||||
|
||||
(void)close_blockdriver(var.fv_inode);
|
||||
|
||||
errout:
|
||||
/* Release all allocated memory */
|
||||
|
||||
if (var.fv_sect)
|
||||
{
|
||||
#ifdef CONFIG_FAT_DMAMEMORY
|
||||
fat_dma_free(var.fv_sect, var.fv_sectorsize);
|
||||
#else
|
||||
kmm_free(var.fv_sect);
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Return any reported errors */
|
||||
|
||||
if (ret < 0)
|
||||
{
|
||||
set_errno(-ret);
|
||||
return ERROR;
|
||||
}
|
||||
|
||||
return OK;
|
||||
}
|
||||
@@ -1,169 +0,0 @@
|
||||
/****************************************************************************
|
||||
* fs/fat/fs_mkfat.h
|
||||
*
|
||||
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name NuttX nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __FS_FAT_FS_MKATFS_H
|
||||
#define __FS_FAT_FS_MKATFS_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* Only the "hard drive" media type is used */
|
||||
|
||||
#define FAT_DEFAULT_MEDIA_TYPE 0xf8
|
||||
|
||||
/* Default hard driver geometry */
|
||||
|
||||
#define FAT_DEFAULT_SECPERTRK 63
|
||||
#define FAT_DEFAULT_NUMHEADS 255
|
||||
|
||||
/* FSINFO is always at this sector */
|
||||
|
||||
#define FAT_DEFAULT_FSINFO_SECTOR 1
|
||||
|
||||
/* FAT32 foot cluster number */
|
||||
|
||||
#define FAT32_DEFAULT_ROOT_CLUSTER 2
|
||||
|
||||
/* Macros to simplify direct block driver access */
|
||||
|
||||
#define DEV_OPEN() \
|
||||
var->fb_inode->u.i_bops->open ? \
|
||||
var->fv_inode->u.i_bops->open(var->fv_inode) : \
|
||||
0
|
||||
#define DEV_CLOSE() \
|
||||
var->fb_inode->u.i_bops->close ? \
|
||||
var->fv_inode->u.i_bops->close(var->fv_inode) : \
|
||||
0
|
||||
#define DEV_READ(buf, sect, nsect) \
|
||||
var->fv_inode->u.i_bops->read(var->fv_inode, buf, sect, nsect)
|
||||
#define DEV_WRITE(buf, sect, nsect) \
|
||||
var->fv_inode->u.i_bops->write(var->fv_inode, buf, sect, nsect)
|
||||
#define DEV_GEOMETRY(geo) \
|
||||
var->fv_inode->u.i_bops->geometry(var->fv_inode, &geo)
|
||||
#define DEV_IOCTL(cmd, arg) \
|
||||
var->fv_inode->u.i_bops->ioctl(var->fv_inode, cmd, arg)
|
||||
|
||||
/****************************************************************************
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
|
||||
/* This structure (plus the user-provided struct fat_format_s) describes
|
||||
* the format FAT file system. All "global" variables used in the format
|
||||
* logic are contained in this structure so that is possible to format two
|
||||
* block devices concurrently.
|
||||
*/
|
||||
|
||||
struct fat_var_s
|
||||
{
|
||||
struct inode *fv_inode; /* The block driver "handle" */
|
||||
uint8_t fv_jump[3]; /* 3-byte boot jump instruction */
|
||||
uint8_t fv_sectshift; /* Log2 of fv_sectorsize */
|
||||
uint8_t fv_nrootdirsects; /* Number of root directory sectors */
|
||||
uint8_t fv_fattype; /* FAT size: 0 (not determined), 12, 16, or 32 */
|
||||
uint16_t fv_bootcodesize; /* Size of array at fv_bootcode */
|
||||
uint32_t fv_createtime; /* Creation time */
|
||||
uint32_t fv_sectorsize; /* Size of one hardware sector */
|
||||
uint32_t fv_nfatsects; /* Number of sectors in each FAT */
|
||||
uint32_t fv_nclusters; /* Number of clusters */
|
||||
uint8_t *fv_sect; /* Allocated working sector buffer */
|
||||
const uint8_t *fv_bootcode; /* Points to boot code to put into MBR */
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#undef EXTERN
|
||||
#if defined(__cplusplus)
|
||||
#define EXTERN extern "C"
|
||||
extern "C"
|
||||
{
|
||||
#else
|
||||
#define EXTERN extern
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Name: mkfatfs_configfatfs
|
||||
*
|
||||
* Description:
|
||||
* Based on the geometry of the block device and upon the caller-selected
|
||||
* values, configure the FAT filesystem for the device.
|
||||
*
|
||||
* Input:
|
||||
* fmt - Caller specified format parameters
|
||||
* var - Holds disk geomtry data. Also, the location to return FAT
|
||||
* configuration data
|
||||
*
|
||||
* Return:
|
||||
* Zero on success; negated errno on failure
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int mkfatfs_configfatfs(FAR struct fat_format_s *fmt,
|
||||
FAR struct fat_var_s *var);
|
||||
|
||||
/****************************************************************************
|
||||
* Name: mkfatfs_writefat
|
||||
*
|
||||
* Description:
|
||||
* Write the configured fat filesystem to the block device
|
||||
*
|
||||
* Input:
|
||||
* fmt - Caller specified format parameters
|
||||
* var - Other format parameters that are not caller specifiable. (Most
|
||||
* set by mkfatfs_configfatfs()).
|
||||
*
|
||||
* Return:
|
||||
* Zero on success; negated errno on failure
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int mkfatfs_writefatfs(FAR struct fat_format_s *fmt,
|
||||
FAR struct fat_var_s *var);
|
||||
|
||||
#undef EXTERN
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __FS_FAT_FS_MKATFS_H */
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user